diff --git a/Arkham SCE.json b/Arkham SCE.json index ec0ddb8..29280f4 100644 --- a/Arkham SCE.json +++ b/Arkham SCE.json @@ -1,17 +1,17 @@ { - "SaveName": "SCE 1.4067", + "SaveName": "SCE 1.4068", "GameMode": "Arkham Horror LCG - Super Complete Edition", + "Date": "5/29/2020 12:42:03 AM", "Gravity": 0.5, "PlayArea": 1.0, - "Date": "5/12/2020 4:29:56 PM", + "GameType": "", + "GameComplexity": "", + "Tags": [], "Table": "Table_None", "Sky": "Sky_Museum", "SkyURL": "https://i.imgur.com/GkQqaOF.jpg", "Note": "", "Rules": "", - "XmlUI": "", - "LuaScript": "--[[ Lua code. See documentation: http://berserk-games.com/knowledgebase/scripting/ --]]\n-- Card size used for autodealing --\n\n-- global position constants\nENCOUNTER_DECK_POS = {-3.8, 1, 5.7}\nENCOUNTER_DECK_SPAWN_POS = {-3.8, 3, 5.7}\nENCOUNTER_DECK_DISCARD_POSITION = {-3.8, 0.5, 10.5}\ng_cardWith=2.30;\ng_cardHeigth=3.40;\n\ncontainerId = 'fea079'\ntokenDataId = '708279'\n\n\nCACHE = {\n object = {},\n data = {}\n}\n\n--[[ The OnLoad function. This is called after everything in the game save finishes loading.\nMost of your script code goes here. --]]\nfunction onload()\n Player.White.changeColor('Yellow')\n tokenplayerone = {\n damageone = \"https://i.imgur.com/XIJHw3J.png\",\n damagethree = \"https://i.imgur.com/eqRC712.png\",\n horrorone = \"https://i.imgur.com/Bh0BO47.png\",\n horrorthree = \"https://i.imgur.com/pZvTKA7.png\",\n resource = \"https://i.imgur.com/j5v5E3j.png\",\n resourcethree = \"https://i.imgur.com/1GZsDTt.png\",\n doom = \"https://i.imgur.com/EoL7yaZ.png\",\n clue = \"https://i.imgur.com/wfCaVU0.png\"\n }\n\n TOKEN_DATA = {\n clue = {image = tokenplayerone.clue, scale = {0.15, 0.15, 0.15}},\n resource = {image = tokenplayerone.resource, scale = {0.17, 0.17, 0.17}},\n doom = {image = tokenplayerone.doom, scale = {0.17, 0.17, 0.17}}\n }\n\ngetObjectFromGUID(\"6161b4\").interactable=false\ngetObjectFromGUID(\"721ba2\").interactable=false\ngetObjectFromGUID(\"9f334f\").interactable=false\ngetObjectFromGUID(\"23a43c\").interactable=false\ngetObjectFromGUID(\"5450cc\").interactable=false\ngetObjectFromGUID(\"463022\").interactable=false\ngetObjectFromGUID(\"9487a4\").interactable=false\ngetObjectFromGUID(\"91dd9b\").interactable=false\ngetObjectFromGUID(\"f182ee\").interactable=false\nend\n\n-- Remove comments to enable autorotate cards on hands.\n-- function onObjectEnterScriptingZone(zone, object)\n-- Autorotate cards with right side up when entering hand.\n-- if zone.getGUID() == \"c506bf\" or -- yellow\n-- zone.getGUID() == \"cbc751\" then -- orange\n-- object.setRotationSmooth({0,270,0})\n-- elseif zone.getGUID() == \"67ce9a\" then -- green\n-- object.setRotationSmooth({0,0,0})\n-- elseif zone.getGUID() == \"57c22c\" then -- red\n-- object.setRotationSmooth({0,180,0})\n--end\n--end\n\nfunction findInRadiusBy(pos, radius, filter, debug)\n local radius = (radius or 1)\n local objList = Physics.cast({\n origin = pos,\n direction = {0,1,0},\n type = 2,\n size = {radius, radius, radius},\n max_distance = 0,\n debug = (debug or false)\n })\n\n local filteredList = {}\n for _, obj in ipairs(objList) do\n if filter == nil then\n table.insert(filteredList, obj.hit_object)\n elseif filter and filter(obj.hit_object) then\n table.insert(filteredList, obj.hit_object)\n end\n end\n return filteredList\nend\n\nfunction dealCardsInRows(paramlist)\n \tlocal currPosition={};\n local numRow=1;\n\tlocal numCard=0;\n\tlocal invMultiplier=1;\n\tlocal allCardsDealed=0;\n\t\tif paramlist.inverse then\n\t\tinvMultiplier=-1;\n\tend\n\t\tif paramlist.maxCardsDealed==nil then\n\n\t\tallCardsDealed=0;\n\t\tparamlist.maxCardsDealed=paramlist.cardDeck.getQuantity()\n\n\telseif paramlist.maxCardsDealed>=paramlist.cardDeck.getQuantity() or paramlist.maxCardsDealed<=0 then\n\n\t\tallCardsDealed=0;\n\t\tparamlist.maxCardsDealed=paramlist.cardDeck.getQuantity()\n\n\telse\n\n\t\tallCardsDealed=1;\n\n\tend\n\n\tif paramlist.mode==\"x\" then\n\t\tcurrPosition={paramlist.iniPosition[1]+(2*g_cardWith*invMultiplier*allCardsDealed),paramlist.iniPosition[2],paramlist.iniPosition[3]};\n\n\telse\n\t\tcurrPosition={paramlist.iniPosition[1],paramlist.iniPosition[2],paramlist.iniPosition[3]+(2*g_cardWith*invMultiplier*allCardsDealed)};\n\n\tend\n\n\tfor i = 1,paramlist.maxCardsDealed,1 do\n\n paramlist.cardDeck.takeObject\n ({\n position= currPosition,\n smooth= true\n });\n\n\t\tnumCard=numCard+1;\n\t\tif numCard>=paramlist.maxCardRow then\n\n\t\t\tif paramlist.mode==\"x\" then\n\t\t\t\tcurrPosition={paramlist.iniPosition[1]+(2*g_cardWith*invMultiplier*allCardsDealed),paramlist.iniPosition[2],paramlist.iniPosition[3]};\n\t\t\t\tcurrPosition[3]=currPosition[3]-(numRow*g_cardHeigth*invMultiplier);\n\t\t\telse\n\t\t\t\tcurrPosition={paramlist.iniPosition[1],paramlist.iniPosition[2],paramlist.iniPosition[3]+(2*g_cardWith*invMultiplier*allCardsDealed)};\n\t\t\t\tcurrPosition[1]=currPosition[1]+(numRow*g_cardHeigth*invMultiplier);\n\t\t\tend\n\t\t\tnumCard=0;\n\t\t\tnumRow=numRow+1;\n\n\t\telse\n\t\t\tif paramlist.mode==\"x\" then\n\t\t\t\tcurrPosition[1]=currPosition[1]+(g_cardWith*invMultiplier);\n\t\t\telse\n\t\t\t\tcurrPosition[3]=currPosition[3]+(g_cardWith*invMultiplier);\n\t\t\tend\n\t\tend\n end\nend\n\nfunction isDeck(x)\n return x.tag == 'Deck'\nend\n\nfunction isCardOrDeck(x)\n return x.tag == 'Card' or isDeck(x)\nend\n\nfunction drawEncountercard(params) --[[ Parameter Table Position, Table Rotation]]\n local position = params[1]\n local rotation = params[2]\n local isFaceUp = params[3]\n local faceUpRotation\n if (isFaceUp) then\n faceUpRotation = 0\n else\n faceUpRotation = 180\n end\n local items = findInRadiusBy(ENCOUNTER_DECK_POS, 4, isCardOrDeck)\n if #items > 0 then\n for i, v in ipairs(items) do\n if v.tag == 'Deck' then\n v.takeObject({index = 0, position = position, rotation = {0,rotation.y,faceUpRotation}})\n return\n end\n end\n-- we didn't find the deck so just pull the first thing we did find\n items[1].setPositionSmooth(position, false, false)\n items[1].setRotationSmooth({0,rotation.y,faceUpRotation}, false, false)\n return\n end\n-- nothing here, time to reshuffle\n reshuffleEncounterDeck(position, {0,rotation.y,faceUpRotation})\nend\n\nIS_RESHUFFLING = false\nfunction reshuffleEncounterDeck(position, rotation)\n -- finishes moving the deck back and draws a card\n local function move(deck)\n deck.setPositionSmooth(ENCOUNTER_DECK_SPAWN_POS, true, false)\n deck.takeObject({index = 0, position = position, rotation = rotation, flip = false})\n Wait.time(function() IS_RESHUFFLING = false end, 1)\n end\n -- bail out if we're mid reshuffle\n if IS_RESHUFFLING then\n return\n end\n local discarded = findInRadiusBy(ENCOUNTER_DECK_DISCARD_POSITION, 4, isDeck)\n if #discarded > 0 then\n IS_RESHUFFLING = true\n local deck = discarded[1]\n if not deck.is_face_down then\n deck.flip()\n end\n deck.shuffle()\n Wait.time(|| move(deck), 0.3)\n else\n printToAll(\"couldn't find encounter discard pile to reshuffle\", {1, 0, 0})\n end\nend\n\nCHAOS_TOKENS = {}\nCHAOS_TOKENS_LAST_MAT = nil\nfunction putBackChaosTokens()\n local chaosbagposition = chaosbag.getPosition()\n for k, token in pairs(CHAOS_TOKENS) do\n if token != nil then\n chaosbag.putObject(token)\n token.setPosition({chaosbagposition[1],chaosbagposition[2]+0.5,chaosbagposition[3]})\n end\n end\n CHAOS_TOKENS = {}\n end\n\nfunction drawChaostoken(params)\n local mat = params[1]\n local tokenOffset = params[2]\n local isRightClick = params[3]\n local isSameMat = (CHAOS_TOKENS_LAST_MAT == nil or CHAOS_TOKENS_LAST_MAT == mat)\n if not isSameMat then\n putBackChaosTokens()\n end\n CHAOS_TOKENS_LAST_MAT = mat\n -- if we have left clicked and have no tokens OR if we have right clicked\n if isRightClick or #CHAOS_TOKENS == 0 then\n local items = getObjectFromGUID(\"83ef06\").getObjects()\n for i,v in ipairs(items) do\n if items[i].getDescription() == \"Chaos Bag\" then\n chaosbag = getObjectFromGUID(items[i].getGUID())\n break\n end\n end\n -- bail out if we have no tokens\n if #chaosbag.getObjects() == 0 then\n return\n end\n chaosbag.shuffle()\n -- add the token to the list, compute new position based on list length\n tokenOffset[1] = tokenOffset[1] + (0.17 * #CHAOS_TOKENS)\n local toPosition = mat.positionToWorld(tokenOffset)\n local token = chaosbag.takeObject({\n index = 0,\n position = toPosition,\n rotation = mat.getRotation()\n })\n CHAOS_TOKENS[#CHAOS_TOKENS + 1] = token\n return\n else\n putBackChaosTokens()\n end\nend\n\nfunction spawnToken(params)\n -- Position to spawn,\n -- rotation vector to apply\n -- translation vector to apply\n -- token type\n local position = params[1]\n local tokenType = params[2]\n local tokenData = TOKEN_DATA[tokenType]\n if tokenData == nil then\n error(\"no token data found for '\" .. tokenType .. \"'\")\n end\n\n local token = spawnObject({\n type = 'Custom_Token',\n position = position,\n })\n token.setCustomObject({\n image = tokenData['image'],\n thickness = 0.1,\n merge_distance = 5.0,\n stackable = false,\n })\n token.use_snap_points=false\n token.scale(tokenData['scale'])\n return token\nend\n\nfunction round(params) -- Parameter (int number, int numberDecimalPlaces)\n return tonumber(string.format(\"%.\" .. (params[2] or 0) .. \"f\", params[1]))\nend\n\nfunction roundposition(params) -- Parameter (Table position)\n return {round({params[1], 2}),round({params[2], 2}),round({params[3], 2})}\nend\n\nfunction isEqual(params) --Parameter (Table table1, Table table2) returns true if the tables are equal\n if params[1][1] == params[2][1] and params[1][2] == params[2][2] and params[1][3] == params[2][3] then\n return true\n else\n return false\n end\nend\n\nfunction isFaceup(params) --Object object\n if params.getRotation()[3] > -5 and params.getRotation()[3] < 5 then\n return true\n else\n return false\n end\nend\n\n--Difficulty selector script\n\nfunction createSetupButtons(args)\n local data = getDataValue('modeData', args.key)\n if data ~= nil then\n local z = -0.15\n if data.easy ~= nil then\n args.object.createButton({\n label = 'Easy',\n click_function = 'easyClick',\n function_owner = args.object,\n position = {0, 0.1, z},\n rotation = {0, 0, 0},\n scale = {0.47, 1, 0.47},\n height = 200,\n width = 1150,\n font_size = 100,\n color = {0.87, 0.8, 0.70},\n font_color = {0, 0, 0}\n })\n z = z + 0.20\n end\n if data.normal ~= nil then\n args.object.createButton({\n label = 'Standard',\n click_function = 'normalClick',\n function_owner = args.object,\n position = {0, 0.1, z},\n rotation = {0, 0, 0},\n scale = {0.47, 1, 0.47},\n height = 200,\n width = 1150,\n font_size = 100,\n color = {0.87, 0.8, 0.70},\n font_color = {0, 0, 0}\n })\n z = z + 0.20\n end\n if data.hard ~= nil then\n args.object.createButton({\n label = 'Hard',\n click_function = 'hardClick',\n function_owner = args.object,\n position = {0, 0.1, z},\n rotation = {0, 0, 0},\n scale = {0.47, 1, 0.47},\n height = 200,\n width = 1150,\n font_size = 100,\n color = {0.87, 0.8, 0.70},\n font_color = {0, 0, 0}\n })\n z = z + 0.20\n end\n if data.expert ~= nil then\n args.object.createButton({\n label = 'Expert',\n click_function = 'expertClick',\n function_owner = args.object,\n position = {0, 0.1, z},\n rotation = {0, 0, 0},\n scale = {0.47, 1, 0.47},\n height = 200,\n width = 1150,\n font_size = 100,\n color = {0.87, 0.8, 0.70},\n font_color = {0, 0, 0}\n })\n z = z + 0.20\n end\n z = z + 0.10\n if data.standalone ~= nil then\n args.object.createButton({\n label = 'Standalone',\n click_function = 'standaloneClick',\n function_owner = args.object,\n position = {0, 0.1, z},\n rotation = {0, 0, 0},\n scale = {0.47, 1, 0.47},\n height = 200,\n width = 1150,\n font_size = 100,\n color = {0.87, 0.8, 0.70},\n font_color = {0, 0, 0}\n })\n end\n end\nend\n\nfunction fillContainer(args)\n local container = getObjectCache(containerId)\n\n if container ~= nil then\n local data = getDataValue('modeData', args.key)\n if data == nil then return end\n\n local value = data[args.mode]\n if value == nil or value.token == nil then return end\n\n local pos = container.getPosition()\n if args.object ~= nil then\n pos = args.object.getPosition()\n end\n\n cleanContainer(container)\n\n for _, token in ipairs(value.token) do\n local obj = spawnToken_2(token, pos)\n if obj ~= nil then\n container.putObject(obj)\n end\n end\n\n if value.append ~= nil then\n for _, token in ipairs(value.append) do\n local obj = spawnToken_2(token, pos)\n if obj ~= nil then\n container.putObject(obj)\n end\n end\n end\n\n if value.random then\n local n = #value.random\n if n > 0 then\n for _, token in ipairs(value.random[getRandomCount(n)]) do\n local obj = spawnToken_2(token, pos)\n if obj ~= nil then\n container.putObject(obj)\n end\n end\n end\n end\n\n if value.message then\n broadcastToAll(value.message)\n end\n if value.warning then\n broadcastToAll(value.warning, { 1, 0.5, 0.5 })\n end\n end\nend\n\nfunction spawnToken_2(id, pos)\n local url = getImageUrl(id)\n if url ~= '' then\n local obj = spawnObject({\n type = 'Custom_Tile',\n position = {pos.x, pos.y + 3, pos.z},\n rotation = {x = 0, y = 260, z = 0}\n })\n obj.setCustomObject({\n type = 2,\n image = url,\n thickness = 0.10,\n })\n obj.scale {0.81, 1, 0.81}\n return obj\n end\nend\n\nfunction getImageUrl(id)\n if id == 'p1' then return 'https://i.imgur.com/uIx8jbY.png' end\n if id == '0' then return 'https://i.imgur.com/btEtVfd.png' end\n if id == 'm1' then return 'https://i.imgur.com/w3XbrCC.png' end\n if id == 'm2' then return 'https://i.imgur.com/bfTg2hb.png' end\n if id == 'm3' then return 'https://i.imgur.com/yfs8gHq.png' end\n if id == 'm4' then return 'https://i.imgur.com/qrgGQRD.png' end\n if id == 'm5' then return 'https://i.imgur.com/3Ym1IeG.png' end\n if id == 'm6' then return 'https://i.imgur.com/c9qdSzS.png' end\n if id == 'm7' then return 'https://i.imgur.com/4WRD42n.png' end\n if id == 'm8' then return 'https://i.imgur.com/9t3rPTQ.png' end\n if id == 'skull' then return 'https://i.imgur.com/stbBxtx.png' end\n if id == 'cultist' then return 'https://i.imgur.com/VzhJJaH.png' end\n if id == 'tablet' then return 'https://i.imgur.com/1plY463.png' end\n if id == 'elder' then return 'https://i.imgur.com/ttnspKt.png' end\n if id == 'red' then return 'https://i.imgur.com/lns4fhz.png' end\n if id == 'blue' then return 'https://i.imgur.com/nEmqjmj.png' end\n return ''\nend\n\nfunction cleanContainer(container)\n for _, item in ipairs(container.getObjects()) do\n destroyObject(container.takeObject({}))\n end\nend\n\nfunction getObjectsInZone(zoneId)\n local zoneObject = getObjectCache(zoneId)\n\n if zoneObject == nil then\n return\n end\n\n local objectsInZone = zoneObject.getObjects()\n local objectsFound = {}\n\n for i = 1, #objectsInZone do\n local object = objectsInZone[i]\n if object.tag == 'Bag' then\n table.insert(objectsFound, object.guid)\n end\n end\n\n if #objectsFound > 0 then\n return objectsFound\n end\nend\n\nfunction getObjectCache(id)\n if CACHE.object[id] == nil then\n CACHE.object[id] = getObjectFromGUID(id)\n end\n return CACHE.object[id]\nend\n\nfunction getDataTable(storage)\n if CACHE.data[storage] == nil then\n local obj = getObjectCache(tokenDataId)\n if obj ~= nil then\n CACHE.data[storage] = obj.getTable(storage)\n end\n end\n return CACHE.data[storage]\nend\n\nfunction getDataValue(storage, key)\n local data = getDataTable(storage)\n if data ~= nil then\n local value = data[key]\n if value ~= nil then\n local res = {}\n for m, v in pairs(value) do\n res[m] = v\n if res[m].parent ~= nil then\n local parentData = getDataValue(storage, res[m].parent)\n if parentData ~= nil and parentData[m] ~= nil and parentData[m].token ~= nil then\n res[m].token = parentData[m].token\n end\n res[m].parent = nil\n end\n end\n return res\n end\n end\nend\n\nfunction getRandomCount(to)\n updateRandomSeed()\n return math.random(1, to)\nend\n\nfunction updateRandomSeed()\n local chance = math.random(1,10)\n if chance == 1 then\n math.randomseed(os.time())\n end\nend", - "LuaScriptState": "", "MusicPlayer": { "RepeatSong": false, "PlaylistEntry": 0, @@ -195,9 +195,9 @@ "rotX": 0.0, "rotY": 90.0, "rotZ": 0.0, - "scaleX": 22.6190624, + "scaleX": 22.62044, "scaleY": 7.002465, - "scaleZ": 6.95138359 + "scaleZ": 6.95199728 } }, { @@ -209,9 +209,9 @@ "rotX": 0.0, "rotY": 90.0, "rotZ": 0.0, - "scaleX": 22.61893, + "scaleX": 22.6203079, "scaleY": 7.0, - "scaleZ": 6.95133257 + "scaleZ": 6.951946 } }, { @@ -254,6 +254,94 @@ "PassTurns": true, "TurnColor": "" }, + "TabStates": { + "0": { + "title": "Rules", + "body": "Welcome to Arkham Horror LCG - Super Complete Edition!\r\n\r\nBelow you will find all the features and instructions this mod is loaded with, that will make your AH LCG experience easier.\r\n\r\nDECKBUILDING\r\n1. All current existing investigators are on the right-hand side, and within each chest you will find their investigator-specific assets and weaknesses. Also included is a basic starter deck which only requires you to add a basic random weakness to get going.\r\n\r\n2. On the left-hand side you will find both the weakness decks as well as lvl 0 cards sorted by class. To reveal the cards, click on each corresponding token to deal the cards onto the table. Cards are sorted by order of Skill, event and Asset cards top-down and increasing resource cost, left to right. \r\n\r\n3. On the upper side you have the upgrade cards. Similarly, click each token to deal the cards out onto the table. Cards are arranged both in increasing xp cost and resource cost, left to right. Typically, these are the cards you will be spending XP on between scenarios to purchase and improve your deck.\r\n4. On the right-hand side underneath the Investigators, you will find the automated ArkhamDB Deckbuilder (coded and maintained by Grabben). Click the load cards button to activate the Deckbuilder, check ArkhamDB for your chosen deck’s URL and insert its number code following the instructions on the deckbuilder, and it will build the deck automatically for you.\r\n\r\nSCENARIOS & SETUP\r\n1. \tArkham Horror LCG comes with a core campaign (Night of the Zealot) and several expansions (The Dunwich Legacy, The Path to Carcosa & The Forgotten Age). Within each box you will find the volumes that contain all the cards required for each scenario setup, as well as a tablet linking to the official campaign guide PDF. Also included are chaos token cards and a Campaign Log.\r\n\r\n2. \tEach scenario is setup differently, and while some of the work has been prepared beforehand (such as building encounter decks), you will have to refer to the Campaign Guide for specific instructions on how to set up each scenario.\r\n\r\n3. \tThe chaos bag is always placed on the scenario setup mat in the upper right-hand corner onto a snap point that tilts it at a 45-degree angle. Each scenario volume will contain a difficulty card, where you will have the choice of four difficulties. Press the button on the card according to the difficulty of your choosing and the chaos bag will automatically be configured with the tokens specific to that difficulty. In campaign play it is recommended to save your decks and chaos bag at the end of your scenario to carry over onto the next, as often tokens are added or removed from the chaos bag depending on actions or decisions made during the game. These additional tokens can be drawn from the token reserve book resting next to the newspaper in the middle of the main table – right click it and search for the token you need.\n\r\n4. \tWhen placing location cards, always place them face down on the main play area (the dark map of Arkham, Massachusetts) with the number of clues per location unrevealed. The mod is scripted so that when you flip said location cards (usually when entering the location with an investigator), if it contains clues, the number of clues specific to that location will automatically spawn. Note, that the mod only spawns tokens in relation to the number of players currently set on the playmat player settings. To set the number of players, left-click on the \"Investigators Playing\" number to increase, or right-click to decrease.\r\n\n5. To make location mapping easier, you can draw location connector tokens from the arrow-shaped container below the main play area. Each token has three states (one way, two way and four way) to use them accordingly to better visualize how your locations connect.\n\r\n6. \tIf you require additional doom or clue tokens, these are located on the scenario playmat in their corresponding containers. A handy Doom counter has been also been added to track the doom on the agenda – left-click to add to add, and right-click to deduct. Keep in mind that any doom spawned on enemies, locations or assets needs to be mentally added to the doom in play on the agenda to account for total doom.\r\n\r\nINVESTIGATOR PLAYMAT AND GAMEPLAY\r\n1. \tInvestigator mats are scripted to automate most of the gameplay for you. \n\r\n2. \tEach mat has slots for inventory, where if you play an asset (for example you put a gun that has 4 ammo into your right-hand slot), the mod will automatically spawn the 4 resource tokens onto your equipped card.\n\r\n3.\tThe draw encounter button on the left-hand side will draw the topmost card from the encounter deck and put it in your threat area. When you draw a weakness, or engage an enemy, it is recommended you put it in your threat area, and once you defeat the enemy or treachery, you can send it to the encounter discard pile by clicking the discard button. If you defeat an enemy with a victory point, make sure not to discard to the discard pile, but pick the card up and drop it at the victory display.\n\r\n4. \tThe Click for Chaos button does just that, draw a random chaos token from your chaos bag. Clicking a second time, sends your chaos token back into the bag, which is then shuffled. If one player clicks to draw a token and doesn’t click a second time to send it back, the click from another player on his personal mat will send the token back first, and the next click will draw the token. Additionally, right-clicking the button will continue drawing tokens and line them up next to each other, which is useful for specific draw conditions the game may require from you. Left-clicking again will send all drawn tokens back to the bag.\n\n5. In the bottom right-hand corner of your player mat you have buttons that when clicked once spawn a 1-value token (damage, horror and resource). and when clicked again replace it with a 3-value token. A third click despawns it. Use these to track damage, horror and resources on your investigators. For allies and enemies, track damage / horror using the tokens from the damage and horror containers. These tokens have 10 states in increasing value, so you may adjust accordingly. Finally, you may also draw additional resource tokens to track your resources. These tokens come in state-values of 1, 3 and 5, so if you exceed 15 resources of value use these to track additional resource on your investigator.\n\nADDITIONAL FEATURES:\n1. Over 20 Fan-made scenarios created by the thriving community of Arkham Horror LCG have been included. Some of these are one-scenario missions, others are long involved campaigns spanning multiple scenarios. These are all contained in \"The Side Missions\". This boxset also includes the official FFG-created sidemissions Curse of the Rougarou, Carnevale of Horrors, Labrynths of Lunacy and The Eternal Slumber. Read the rulebook on including a side-mission into an ongoing campaign, or play it as a one-off adventure! Setup instructions are included in each volume.\n\n2. If you are not a fan of the dark themed Arkham map for the playmat, you can change the image on it to any you like. At the top left hand side of the playmat is an image icon, which when clicked will reveal a image swap panel. Input the URL for the image you want to repalce the playmat with, and the panel will apply the image for you. Keep in mind this will not change the existing snap points on the current playmat.\n\r\nAs a final comment, please be sure to let me know on the mod page in steam workshop if you find any bugs, issues or have any suggestions for improvement!\r\n\r\n\r\n \r\n\r\n", + "color": "Grey", + "visibleColor": { + "r": 0.5, + "g": 0.5, + "b": 0.5 + }, + "id": 0 + }, + "3": { + "title": "Red", + "body": "", + "color": "Red", + "visibleColor": { + "r": 0.856, + "g": 0.1, + "b": 0.094 + }, + "id": 3 + }, + "4": { + "title": "Orange", + "body": "", + "color": "Orange", + "visibleColor": { + "r": 0.956, + "g": 0.392, + "b": 0.113 + }, + "id": 4 + }, + "5": { + "title": "Yellow", + "body": "", + "color": "Yellow", + "visibleColor": { + "r": 0.905, + "g": 0.898, + "b": 0.172 + }, + "id": 5 + }, + "6": { + "title": "Green", + "body": "", + "color": "Green", + "visibleColor": { + "r": 0.192, + "g": 0.701, + "b": 0.168 + }, + "id": 6 + } + }, + "CameraStates": [ + null, + { + "Position": { + "x": -6.36408234, + "y": -2.5, + "z": -9.483223E-07 + }, + "Rotation": { + "x": 64.99999, + "y": 89.99999, + "z": 0.0 + }, + "Distance": 97.85165, + "Zoomed": false, + "AbsolutePosition": { + "x": -47.7179832, + "y": 86.18371, + "z": -6.780735E-06 + } + }, + null, + null, + null, + null, + null, + null, + null, + null + ], + "DecalPallet": [], "ObjectStates": [ { "Name": "Custom_Assetbundle", @@ -280,6 +368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293,9 +383,9 @@ "TypeIndex": 4, "LoopingEffectIndex": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "afc863" }, { @@ -323,6 +413,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336,9 +428,9 @@ "TypeIndex": 4, "LoopingEffectIndex": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8edca" }, { @@ -366,6 +458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379,9 +473,9 @@ "TypeIndex": 4, "LoopingEffectIndex": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "393bf7" }, { @@ -409,6 +503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422,9 +518,9 @@ "TypeIndex": 4, "LoopingEffectIndex": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12c65e" }, { @@ -452,6 +548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -459,9 +557,9 @@ "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": 1, - "XmlUI": "", "LuaScript": "tableHeightOffset =-9\nfunction onSave()\n saved_data = JSON.encode({tid=tableImageData, cd=checkData})\n --saved_data = \"\"\n return saved_data\nend\n\nfunction onload(saved_data)\n --Loads the tracking for if the game has started yet\n if saved_data ~= \"\" then\n local loaded_data = JSON.decode(saved_data)\n tableImageData = loaded_data.tid\n checkData = loaded_data.cd\n else\n tableImageData = {}\n checkData = {move=false, scale=false}\n end\n\n --Disables interactable status of objects with GUID in list\n for _, guid in ipairs(ref_noninteractable) do\n local obj = getObjectFromGUID(guid)\n if obj then obj.interactable = false end\n end\n\n --Establish references to table parts\n obj_leg1 = getObjectFromGUID(\"afc863\")\n obj_leg2 = getObjectFromGUID(\"c8edca\")\n obj_leg3 = getObjectFromGUID(\"393bf7\")\n obj_leg4 = getObjectFromGUID(\"12c65e\")\n obj_surface = getObjectFromGUID(\"4ee1f2\")\n obj_side_top = getObjectFromGUID(\"35b95f\")\n obj_side_bot = getObjectFromGUID(\"f938a2\")\n obj_side_lef = getObjectFromGUID(\"9f95fd\")\n obj_side_rig = getObjectFromGUID(\"5af8f2\")\n\n controlActive = true\n createOpenCloseButton()\nend\n\n\n\n--Activation/deactivation of control panel\n\n\n\n--Activated by clicking on\nfunction click_toggleControl(_, color)\n if permissionCheck(color) then\n if not controlActive then\n --Activate control panel\n controlActive = true\n self.clearButtons()\n createOpenCloseButton()\n createSurfaceInput()\n createSurfaceButtons()\n createScaleInput()\n createScaleButtons()\n else\n --Deactivate control panel\n controlActive = false\n self.clearButtons()\n self.clearInputs()\n createOpenCloseButton()\n\n end\n end\nend\n\n\n\n\n--Table surface control\n\n\n\n--Changes table surface\nfunction click_applySurface(_, color)\n if permissionCheck(color) then\n updateSurface()\n broadcastToAll(\"New Table Image Applied\", {0.2,0.9,0.2})\n end\nend\n\n--Saves table surface\nfunction click_saveSurface(_, color)\n if permissionCheck(color) then\n local nickname = self.getInputs()[1].value\n local url = self.getInputs()[2].value\n if nickname == \"\" then\n --No nickname\n broadcastToAll(\"Please supply a nickname for this save.\", {0.9,0.2,0.2})\n else\n --Nickname exists\n\n if findInImageDataIndex(url, nickname) == nil then\n --Save doesn't exist already\n table.insert(tableImageData, {url=url, name=nickname})\n broadcastToAll(\"Image URL saved to memory.\", {0.2,0.9,0.2})\n --Refresh buttons\n self.clearButtons()\n createOpenCloseButton()\n createSurfaceButtons()\n createScaleButtons()\n else\n --Save exists already\n broadcastToAll(\"Memory already contains a save with this Name or URL. Delete it first.\", {0.9,0.2,0.2})\n end\n end\n end\nend\n\n--Loads table surface\nfunction click_loadMemory(_, color, index)\n if permissionCheck(color) then\n self.editInput({index=0, value=tableImageData[index].name})\n self.editInput({index=1, value=tableImageData[index].url})\n updateSurface()\n broadcastToAll(\"Table Image Loaded\", {0.2,0.9,0.2})\n end\nend\n\n--Deletes table surface\nfunction click_deleteMemory(_, color, index)\n if permissionCheck(color) then\n table.remove(tableImageData, index)\n self.clearButtons()\n createOpenCloseButton()\n createSurfaceButtons()\n createScaleButtons()\n broadcastToAll(\"Element Removed from Memory\", {0.2,0.9,0.2})\n end\nend\n\n--Updates surface from the values in the input field\nfunction updateSurface()\n local customInfo = obj_surface.getCustomObject()\n customInfo.diffuse = self.getInputs()[2].value\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\nend\n\n\n\n--Table Scale control\n\n\n\n--Applies Scale to table pieces\nfunction click_applyScale(_, color)\n if permissionCheck(color) then\n local newWidth = tonumber(self.getInputs()[3].value)\n local newDepth = tonumber(self.getInputs()[4].value)\n if type(newWidth) ~= \"number\" then\n broadcastToAll(\"Invalid Width\", {0.9,0.2,0.2})\n return\n elseif type(newDepth) ~= \"number\" then\n broadcastToAll(\"Invalid Depth\", {0.9,0.2,0.2})\n return\n elseif newWidth<0.1 or newDepth<0.1 then\n broadcastToAll(\"Scale cannot go below 0.1\", {0.9,0.2,0.2})\n return\n elseif newWidth>12 or newDepth>12 then\n broadcastToAll(\"Scale should not go over 12 (world size limitation)\", {0.9,0.2,0.2})\n return\n else\n changeTableScale(math.abs(newWidth), math.abs(newDepth))\n broadcastToAll(\"Scale applied.\", {0.2,0.9,0.2})\n end\n end\nend\n\n--Checks/unchecks move box for hands\nfunction click_checkMove(_, color)\n if permissionCheck(color) then\n local find_func = function(o) return o.click_function==\"click_checkMove\" end\n if checkData.move == true then\n checkData.move = false\n local buttonEntry = findButton(self, find_func)\n self.editButton({index=buttonEntry.index, label=\"\"})\n else\n checkData.move = true\n local buttonEntry = findButton(self, find_func)\n self.editButton({index=buttonEntry.index, label=string.char(10008)})\n end\n end\nend\n\n--Checks/unchecks scale box for hands\n--This button was disabled for technical reasons\n--[[\nfunction click_checkScale(_, color)\n if permissionCheck(color) then\n local find_func = function(o) return o.click_function==\"click_checkScale\" end\n if checkData.scale == true then\n checkData.scale = false\n local buttonEntry = findButton(self, find_func)\n self.editButton({index=buttonEntry.index, label=\"\"})\n else\n checkData.scale = true\n local buttonEntry = findButton(self, find_func)\n self.editButton({index=buttonEntry.index, label=string.char(10008)})\n end\n end\nend\n]]\n\n--Alters scale of elements and moves them\nfunction changeTableScale(width, depth)\n --Scaling factors used to translate scale to position offset\n local width2pos = (width-1) * 18\n local depth2pos = (depth-1) * 18\n\n --Hand zone movement\n if checkData.move == true then\n for _, pc in ipairs(ref_playerColor) do\n if Player[pc].getHandCount() > 0 then\n moveHandZone(Player[pc], width2pos, depth2pos)\n end\n end\n end\n --Hand zone scaling\n --The button to enable this was disabled for technical reasons\n if checkData.scale == true then\n for _, pc in ipairs(ref_playerColor) do\n if Player[pc].getHandCount() > 0 then\n scaleHandZone(Player[pc], width, depth)\n end\n end\n end\n\n --Resizing table elements\n obj_side_top.setScale({width, 1, 1})\n obj_side_bot.setScale({width, 1, 1})\n obj_side_lef.setScale({depth, 1, 1})\n obj_side_rig.setScale({depth, 1, 1})\n obj_surface.setScale({width, 1, depth})\n\n --Moving table elements to accomodate new scale\n obj_side_lef.setPosition({-width2pos,tableHeightOffset,0})\n obj_side_rig.setPosition({ width2pos,tableHeightOffset,0})\n obj_side_top.setPosition({0,tableHeightOffset, depth2pos})\n obj_side_bot.setPosition({0,tableHeightOffset,-depth2pos})\n obj_leg1.setPosition({-width2pos,tableHeightOffset,-depth2pos})\n obj_leg2.setPosition({-width2pos,tableHeightOffset, depth2pos})\n obj_leg3.setPosition({ width2pos,tableHeightOffset, depth2pos})\n obj_leg4.setPosition({ width2pos,tableHeightOffset,-depth2pos})\n self.setPosition(obj_leg4.positionToWorld({-22.12, 8.74,-19.16}))\n --Only enabled when changing tableHeightOffset\n --obj_surface.setPosition({0,tableHeightOffset,0})\nend\n\n--Move hand zone, p=player reference, facts are scaling factors\nfunction moveHandZone(p, width2pos, depth2pos)\n local widthX = obj_side_rig.getPosition().x\n local depthZ = obj_side_top.getPosition().z\n for i=1, p.getHandCount() do\n local handT = p.getHandTransform()\n local pos = handT.position\n local y = handT.rotation.y\n\n if y<45 or y>320 or y>135 and y<225 then\n if pos.z > 0 then\n pos.z = pos.z + depth2pos - depthZ\n else\n pos.z = pos.z - depth2pos + depthZ\n end\n else\n if pos.x > 0 then\n pos.x = pos.x + width2pos - widthX\n else\n pos.x = pos.x - width2pos + widthX\n end\n end\n\n --Only enabled when changing tableHeightOffset\n --pos.y = tableHeightOffset + 14\n\n handT.position = pos\n p.setHandTransform(handT, i)\n end\nend\n\n\n---Scales hand zones, p=player reference, facts are scaling factors\nfunction scaleHandZone(p, width, depth)\n local widthFact = width / obj_side_top.getScale().x\n local depthFact = depth / obj_side_lef.getScale().x\n for i=1, p.getHandCount() do\n local handT = p.getHandTransform()\n local scale = handT.scale\n local y = handT.rotation.y\n if y<45 or y>320 or y>135 and y<225 then\n scale.x = scale.x * widthFact\n else\n scale.x = scale.x * depthFact\n end\n handT.scale = scale\n p.setHandTransform(handT, i)\n end\nend\n\n\n\n--Information gathering\n\n\n\n--Checks if a color is promoted or host\nfunction permissionCheck(color)\n if Player[color].host==true or Player[color].promoted==true then\n return true\n else\n return false\n end\nend\n\n--Locates a string saved within memory file\nfunction findInImageDataIndex(...)\n for _, str in ipairs({...}) do\n for i, v in ipairs(tableImageData) do\n if v.url == str or v.name == str then\n return i\n end\n end\n end\n return nil\nend\n\n--Round number (num) to the Nth decimal (dec)\nfunction round(num, dec)\n local mult = 10^(dec or 0)\n return math.floor(num * mult + 0.5) / mult\nend\n\n--Locates a button with a helper function\nfunction findButton(obj, func)\n if func==nil then error(\"No func supplied to findButton\") end\n for _, v in ipairs(obj.getButtons()) do\n if func(v) then\n return v\n end\n end\n return nil\nend\n\n\n\n--Creation of buttons/inputs\n\n\n\nfunction createOpenCloseButton()\n local tooltip = \"Open Table Control Panel\"\n if controlActive then\n tooltip = \"Close Table Control Panel\"\n end\n self.createButton({\n click_function=\"click_toggleControl\", function_owner=self,\n position={0,0,0}, rotation={-45,0,0}, height=400, width=400,\n color={1,1,1,0}, tooltip=tooltip\n })\nend\n\nfunction createSurfaceInput()\n local currentURL = obj_surface.getCustomObject().diffuse\n local nickname = \"\"\n if findInImageDataIndex(currentURL) ~= nil then\n nickname = tableImageData[findInImageDataIndex(currentURL)].name\n end\n self.createInput({\n label=\"Nickname\", input_function=\"none\", function_owner=self,\n alignment=3, position={0,0,2}, height=224, width=4000,\n font_size=200, tooltip=\"Enter nickname for table image (only used for save)\",\n value=nickname\n })\n self.createInput({\n label=\"URL\", input_function=\"none\", function_owner=self,\n alignment=3, position={0,0,3}, height=224, width=4000,\n font_size=200, tooltip=\"Enter URL for tabletop image\",\n value=currentURL\n })\nend\n\nfunction createSurfaceButtons()\n --Label\n self.createButton({\n label=\"Tabletop Surface Image\", click_function=\"none\",\n position={0,0,1}, height=0, width=0, font_size=300, font_color={1,1,1}\n })\n --Functional\n self.createButton({\n label=\"Apply Image\\nTo Table\", click_function=\"click_applySurface\",\n function_owner=self, tooltip=\"Apply URL as table image\",\n position={2,0,4}, height=440, width=1400, font_size=200,\n })\n self.createButton({\n label=\"Save Image\\nTo Memory\", click_function=\"click_saveSurface\",\n function_owner=self, tooltip=\"Record URL into memory (requires nickname)\",\n position={-2,0,4}, height=440, width=1400, font_size=200,\n })\n --Label\n self.createButton({\n label=\"Load From Memory\", click_function=\"none\",\n position={0,0,5.5}, height=0, width=0, font_size=300, font_color={1,1,1}\n })\n --Saves, created dynamically from memory file\n for i, memoryEntry in ipairs(tableImageData) do\n --Load\n local funcName = i..\"loadMemory\"\n local func = function(x,y) click_loadMemory(x,y,i) end\n self.setVar(funcName, func)\n self.createButton({\n label=memoryEntry.name, click_function=funcName,\n function_owner=self, tooltip=memoryEntry.url, font_size=200,\n position={-0.6,0,6.5+0.5*(i-1)}, height=240, width=3300,\n })\n --Delete\n local funcName = i..\"deleteMemory\"\n local func = function(x,y) click_deleteMemory(x,y,i) end\n self.setVar(funcName, func)\n self.createButton({\n label=\"DELETE\", click_function=funcName,\n function_owner=self, tooltip=\"\",\n position={3.6,0,6.5+0.5*(i-1)}, height=240, width=600,\n font_size=160, font_color={1,0,0}, color={0.8,0.8,0.8}\n })\n end\nend\n\nfunction createScaleInput()\n self.createInput({\n label=string.char(8644), input_function=\"none\", function_owner=self,\n alignment=3, position={-8.5,0,2}, height=224, width=400,\n font_size=200, tooltip=\"Table Width\",\n value=round(obj_side_top.getScale().x, 1)\n })\n self.createInput({\n label=string.char(8645), input_function=\"none\", function_owner=self,\n alignment=3, position={-7.5,0,2}, height=224, width=400,\n font_size=200, tooltip=\"Table Depth\",\n value=round(obj_side_lef.getScale().x, 1)\n })\nend\n\nfunction createScaleButtons()\n --Labels\n self.createButton({\n label=\"Table Scale\", click_function=\"none\",\n position={-8,0,1}, height=0, width=0, font_size=300, font_color={1,1,1}\n })\n self.createButton({\n label=string.char(8644)..\" \"..string.char(8645),\n click_function=\"none\",\n position={-8,0,2}, height=0, width=0, font_size=300, font_color={1,1,1}\n })\n self.createButton({\n label=\"Move Hands:\", click_function=\"none\",\n position={-8.3,0,3}, height=0, width=0, font_size=200, font_color={1,1,1}\n })\n --Disabled due to me removing the feature for technical reasons\n --[[\n self.createButton({\n label=\"Scale Hands:\", click_function=\"none\",\n position={-8.3,0,4}, height=0, width=0, font_size=200, font_color={1,1,1}\n })\n ]]\n --Checkboxes\n local label = \"\"\n if checkData.move == true then label = string.char(10008) end\n self.createButton({\n label=label, click_function=\"click_checkMove\",\n function_owner=self, tooltip=\"Check to move hands when table is rescaled\",\n position={-6.8,0,3}, height=224, width=224, font_size=200,\n })\n --[[\n local label = \"\"\n if checkData.scale == true then label = string.char(10008) end\n self.createButton({\n label=label, click_function=\"click_checkScale\",\n function_owner=self, tooltip=\"Check to scale the width of hands when table is rescaled\",\n position={-6.8,0,4}, height=224, width=224, font_size=200,\n })\n ]]\n --Apply button\n self.createButton({\n label=\"Apply Scale\", click_function=\"click_applyScale\",\n function_owner=self, tooltip=\"Apply width/depth to table\",\n position={-8,0,4}, height=440, width=1400, font_size=200,\n })\nend\n\n\n\n\n\n--Data tables\n\n\n\n\nref_noninteractable = {\n \"afc863\",\"c8edca\",\"393bf7\",\"12c65e\",\"f938a2\",\"9f95fd\",\"35b95f\",\n \"5af8f2\",\"4ee1f2\",\"bd69bd\"\n}\n\nref_playerColor = {\n \"White\", \"Brown\", \"Red\", \"Orange\", \"Yellow\",\n \"Green\", \"Teal\", \"Blue\", \"Purple\", \"Pink\", \"Black\"\n}\n\n--Dummy function, absorbs unwanted triggers\nfunction none() end", "LuaScriptState": "{\"cd\":{\"move\":true,\"scale\":false},\"tid\":[{\"name\":\"Felt - Grey\",\"url\":\"https://i.imgur.com/N0O6aqj.jpg\"},{\"name\":\"Wood\",\"url\":\"https://i.imgur.com/iOFFsGh.jpg\"},{\"name\":\"Wood 2\",\"url\":\"https://i.imgur.com/SQ2t01d.jpg\"}]}", + "XmlUI": "", "GUID": "bd69bd" }, { @@ -489,6 +587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502,9 +602,9 @@ "TypeIndex": 4, "LoopingEffectIndex": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f938a2" }, { @@ -532,6 +632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545,9 +647,9 @@ "TypeIndex": 4, "LoopingEffectIndex": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f95fd" }, { @@ -575,6 +677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588,9 +692,9 @@ "TypeIndex": 4, "LoopingEffectIndex": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35b95f" }, { @@ -618,6 +722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631,9 +737,9 @@ "TypeIndex": 4, "LoopingEffectIndex": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5af8f2" }, { @@ -661,6 +767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -679,9 +787,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f334f", "AttachedSnapPoints": [ { @@ -735,6 +843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753,9 +863,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91dd9b" }, { @@ -783,6 +893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -801,9 +913,9 @@ "Stretch": true } }, + "LuaScript": "-- set true to enable debug logging\nDEBUG = false\n\nfunction log(message)\n if DEBUG then\n print(message)\n end\nend\n\n--[[\nKnown locations and clues. We check this to determine if we should\natttempt to spawn clues, first we look for _ and if\nwe find nothing we look for \nformat is [location_guid -> clueCount]\n]]\nLOCATIONS_DATA_JSON = [[\n{\n \"Study\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Study_670914\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Attic_377b20\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Attic\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Cellar_5d3bcc\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Cellar\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Bathroom\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Bedroom\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Far Above Your House\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Deep Below Your House\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Northside_86faac\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Northside\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Graveyard\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Miskatonic University_cedb0a\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Miskatonic University\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Downtown_1aa7cb\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Downtown\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"St. Mary's Hospital\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Easttown_88245c\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Easttown\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Southside\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Rivertown\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Your House_377b20\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Your House_b28633\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Ritual Site\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Arkham Woods_e8e04b\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Arkham Woods\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"New Orleans_5ab18a\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"New Orleans\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Riverside_ab9d69\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Riverside\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Wilderness_3c5ea8\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Wilderness\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Unhallowed Land_552a1d\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Unhallowed Land\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Flooded\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Venetian Garden\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Guardian\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Canal-side\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Accademia Bridge\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Bridge of Sighs\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Warren Observatory\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Science Building\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Orne Library\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Administration Building\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Student Union\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Humanities Building\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Dormitories\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n \"Faculty Offices\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Faculty Offices_1c567d\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n\n \"La Bella Luna\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Back Hall Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Museum Entrance\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Security Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Security Office_fcb3e4\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Administration Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Administration Office_d2eb25\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Exhibit Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Exhibit Hall_563240\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Exhibit Hall_f3ffb6\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Exhibit Hall_0b0c58\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Exhibit Hall_2d87e6\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Exhibit Hall_da02ea\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n\n \"Train Car\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Train Car_f3f902\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Train Car_905f69\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Train Car_a3a321\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Train Car_464528\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Train Car_3cfca4\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Train Car_64ffb0\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Train Car_0fb5f0\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n \"Engine Car\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"House in the Reeds\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Osborn's General Store\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Congregational Church\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Bishop's Brook\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Burned Ruins\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Schoolhouse\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Dunwich Village\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Dunwich Village_ac4427\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Cold Spring Glen\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Cold Spring Glen_e58475\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Ten-Acre Meadow\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Ten-Acre Meadow_05b0dd\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Blasted Heath\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Blasted Heath_995fe7\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Whateley Ruins\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Devil's Hop Yard\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Devil's Hop Yard_f7dd31\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Base of the Hill\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Base of the Hill_de3ca2\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Ascending Path\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Ascending Path_0e5289\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Sentinel Peak\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Diverging Path\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Diverging Path_7239aa\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Altered Path\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"The Edge of the Universe\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Tear Through Time\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Prismatic Cascade\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\n \"Towering Luminosity\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"front\"},\n \"Tear Through Space\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\n \"Endless Bridge\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\n \"Dimensional Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Steps of Y'hagharl\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Unstable Vortex\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Indecipherable Stairs\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\n\n \"Backstage Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Backstage Doorway_0797a9\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Lobby Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Lobby Doorway_7605cf\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Lobby\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Backstage\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Balcony\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Foyer\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Historical Society\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Historical Society_40f79d\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Historical Society_b352f8\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Historical Society_0cf5d5\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Historical Society_abc0cb\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Historical Society_ab6a72\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Hidden Library\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n\n \"Patient Confinement\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Asylum Halls\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Asylum Halls_f99530\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Asylum Halls_576595\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Infirmary\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Basement Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Yard\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Garden\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Kitchen\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Mess Hall\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Grand Guignol\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Montmartre\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Montmartre_cbaacc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"front\"},\n \"Montparnasse\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Notre-Dame\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Gare d'Orsay\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Opéra Garnier\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Canal Saint-Martin\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Le Marais\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Gardens of Luxembourg\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Père Lachaise Cemetery\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Catacombs\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Catacombs_29170f\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Catacombs_f1237c\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Catacombs_c3151e\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Catacombs_14b1cb\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Catacombs_81920c\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Catacombs_c14c8b\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Catacombs_ea2a55\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Catacombs_8bcab3\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Catacombs_7c7f4a\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Catacombs_80cf41\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n\n \"Abbey Church\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Porte de l'Avancée\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Grand Rue\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Cloister\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Knight's Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Chœur Gothique\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Outer Wall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Outer Wall_014bd6\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"North Tower\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"North Tower_69eae5\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Chapel of St. Aubert\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n \"Chapel of St. Aubert_e75ba8\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Abbey Tower\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n \"Abbey Tower_2f3d21\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Shores of Hali\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Dark Spires\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Palace of the King\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\n \"Palace of the King_60d758\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Ruins of Carcosa\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Dim Streets\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Depths of Demhe\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Bleak Plains\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Recesses of Your Own Mind\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"The Throne Room\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Stage of the Ward Theatre\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n\n \"Serpent’s Haven\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Ruins of Eztli\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Rope Bridge\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Overgrown Ruins\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"River Canyon\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Path of Thorns\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Temple of the Fang\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Circuitous Trail\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n\n \"Chamber of Time\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Ancient Hall\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Grand Chamber\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Entryway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Underground Ruins\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Burial Pit\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Secret Passage\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n\n \"Town Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Curiositie Shoppe\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"At the Station_7edfb0\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"At the Station_e2806c\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"At the Station_28ebe1\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"At the Station_e59778\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Sacred Woods\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Chapultepec Hill\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Chapultepec Hill_b5d586\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Canals of Tenochtitlán\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Lake Xochimilco\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Lake Xochimilco_e3a79d\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Templo Mayor\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Templo Mayor_f3c531\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Temples of Tenochtitlán\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Temples of Tenochtitlán_c097d8\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n\n \"Mouth of K'n-yan\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Stone Altar\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Time-Wracked Woods\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Vast Passages\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Perilous Gulch\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Dark Hollow\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Hall of Idolatry\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Crystal Pillars\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n\n \"Interview Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Interview Room_508f85\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Interview Room_4440de\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Halls of Pnakotus\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Deconstruction Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Towers of Pnakotus\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Laboratory of the Great Race\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Yithian Orrery\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Great Library\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"back\"},\n\n \"City of the Serpents\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Bridge over N'kai\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Abandoned Site\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Caverns of Yoth\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Hall of Heresy\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Bright Canyon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Forked Path\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n\n \"Nexus of N'kai\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"A Pocket in Time\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"City of the Unseen\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\n \"Valusia\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\n\n \"Shores of R’lyeh\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\n \"Atlantis\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\n \"Pnakotus\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\n \"Ruins of New York\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\n \"Yuggoth\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\n \"Mu\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"front\"},\n\n \"Billiards Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Billiards Room_33990b\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Trophy Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Trophy Room_e9160a\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Master Bedroom\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Balcony_1b5483\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Office_a1bd9a\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Witch-Haunted Woods_1539ea\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Witch-Haunted Woods\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Witch-Haunted Woods_d3f8c3\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Witch-Haunted Woods_eca18e\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Paths into Twilight\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n\n \"The Imperial Entrance\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Dark Stairwell\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Stairway\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Balcony\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Back Booths\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Lobby\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Backroom Door\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Backroom Door_ed439d\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Dining Area\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"The Dance Floor\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Gateway to the East\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Back Alley\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Mingzhu Laundry\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Dragon's Den\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"The Phoenix's Nest\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Golden Temple of the Heavens\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Flea Market\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Zihao's House of Fighting Arts\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Daiyu's Tea Garden\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Moldy Halls\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Decrepit Door\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Walter Gilman's Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Unknown Places_b538f8\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Unknown Places_7bea34\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Unknown Places\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Unknown Places_9a471d\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Unknown Places_0ac3ea\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Strange Geometry\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\n \"Site of the Sacrifice\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n\n \"Hangman's Brook\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Abandoned Chapel\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Haunted Fields\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Lobby_1c2dfe\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Lobby_bcd556\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Lodge Gates_fa6a29\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Lodge Gates\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Lodge Cellar\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Lodge Cellar_8ea4fd\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Lounge\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Vault\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Inner Sanctum\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Library\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Library_47ccbc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Sanctum Doorway\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Sanctum Doorway_4da6c3\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"The Geist-Trap\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Forbidding Shore\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Unvisited Isle\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Rivertown_92ee68\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Rivertown_db4b20\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Southside_c898a0\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Southside_e7f5fa\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Silver Twilight Lodge\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Silver Twilight Lodge_17e686\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Hangman's Hill\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Hangman's Hill_5f4d8a\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Cosmic Ingress\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Cosmos\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Cosmos_a89dbf\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Cosmos_1a0ad2\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Cosmos_30fc53\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Cosmos_8f3e16\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Cosmos_4e8ae3\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Cosmos_a8d84d\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"back\"},\n \"Cosmos_7a3ece\": {\"type\": \"fixed\", \"value\": 6, \"clueSide\": \"back\"},\n \"Cosmos_311eb1\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Seventy Steps\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Seven Hundred Steps\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Base of the Steps\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Enchanted Woods\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Stairwell\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Basement Door_42fa87\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Basement Door\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Waiting Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Emergency Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Experimental Therapies Ward\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Records Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Foyer_9a9f9a\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Room 245\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Hotel Roof\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Office_b3ed47\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Room 212\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Basement\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Second Floor Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Room 225\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Restaurant\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Suite Balcony\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Ulthar\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Dylath-Leen\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Mt. Ngranek\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Baharna\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Zulan-Thek\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Sarnath\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"City-Which-Appears-On-No-Map\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Celephaïs\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Nameless Ruins\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Kadatheron\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Ilek-Vad\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Ruins of Ib\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Temple of Unattainable Desires\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Hazuth-Kleg\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Serannian\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n\n \"Mysterious Stairs\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Mysterious Stairs_df1a40\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Attic_10faf9\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Unmarked Tomb\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Upstairs Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Front Porch\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Downstairs Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Downstairs Doorway_c93906\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Burial Ground\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Temple of the Moon Lizard\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"City of the Moon-Beasts\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Moon-Forest\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Dark Crater\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Caverns Beneath the Moon\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Black Core\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Light Side of the Moon\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"City of Gugs\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Vaults of Zin\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Plain of the Ghouls\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Sea of Bones\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Vale of Pnath\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Crag of the Ghouls\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Sea of Pitch\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n\n \"Plateau of Leng\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Cold Wastes\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Monastery of Leng\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Onyx Gates\": {\"type\": \"fixed\", \"value\": 12, \"clueSide\": \"back\"},\n \"Forsaken Tower\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"The Crater\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Quarantine Zone\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Quarantine Zone_5f2a9b\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Quarantine Zone_4a8e9c\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Quarantine Zone_5193e9\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Quarantine Zone_b3a920\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"The Great Web\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Great Web_39ace3\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"The Great Web_727790\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"The Great Web_5c5ec4\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"The Great Web_361fd7\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"The Great Web_dfdc8c\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"XXXX\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"xxx\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"}\n}\n]]\n\n--[[\nPlayer cards with token counts and types\n]]\nPLAYER_CARD_DATA_JSON = [[\n{\n \"Flashlight\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Shrivelling\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Shrivelling (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Grotesque Statue (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Forbidden Knowledge\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \".45 Automatic\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Shotgun (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"Liquid Courage\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Song of the Dead (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 5\n },\n \"Cover Up\": {\n \"tokenType\": \"clue\",\n \"tokenCount\": 3\n },\n \"Roland's .38 Special\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"First Aid\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Scrying\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \".41 Derringer\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Painkillers\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Smoking Pipe\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Clarity of Mind\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Rite of Seeking\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"M1918 BAR (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 8\n },\n \"Ornate Bow (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 1\n },\n \".41 Derringer (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Suggestion (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Chicago Typewriter (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Lupara (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"First Aid (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Springfield M1903 (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \".32 Colt\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 6\n },\n \"Venturer\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Lockpicks (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Finn's Trusty .38\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \".45 Automatic (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Lightning Gun (5)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Strange Solution (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Strange Solution (4):Acidic Ichor\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Strange Solution (4):Empowering Elixir\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Arcane Insight (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Archaic Glyphs (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"In the Know (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Rite of Seeking (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Alchemical Transmutation\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Scrying (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Shrivelling (5)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Mists of R'lyeh\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Mists of R'lyeh (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 5\n },\n \"Colt Vest Pocket\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 5\n },\n \"Old Hunting Rifle (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Thermos\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Feed the Mind (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Seal of the Seventh Sign (5)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 7\n },\n \"Flamethrower (5)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Pnakotic Manuscripts (5)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Kerosene (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Shards of the Void (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Try and Try Again (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Arcane Initiate\": {\n \"tokenType\": \"doom\",\n \"tokenCount\": 1\n },\n \"Detective's Colt 1911s\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Extra Ammunition (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Rite of Seeking (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Arcane Initiate (3)\": {\n \"tokenType\": \"doom\",\n \"tokenCount\": 1\n },\n \"Clarity of Mind (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Fingerprint Kit\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Truth from Fiction\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"Enchanted Blade\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Tennessee Sour Mash\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"Scroll of Secrets\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \".45 Thompson\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 5\n },\n \"Mr. \\\"Rook\\\"\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Scroll of Secrets (3):Seeker\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Scroll of Secrets (3):Mystic\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Enchanted Blade (3):Guardian\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Enchanted Blade (3):Mystic\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \".45 Thompson (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 5\n },\n \"Esoteric Atlas (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Tennessee Sour Mash (3):Rogue\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"Tennessee Sour Mash (3):Survivor\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Mk1 Grenades (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Dayana Esperence\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Pendant of the Queen\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \".32 Colt (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 6\n },\n \"Alchemical Transmutation (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Suggestion (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Gate Box\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Tony's .38 Long Colt\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Gregory Gry\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 9\n },\n \"Scroll of Prophecies\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Healing Words\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Otherworld Codex (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \".35 Winchester\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 5\n },\n \"Old Book of Lore (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"Sawed-Off Shotgun (5)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"Mind's Eye (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"xxx\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n }\n}\n]]\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\n\nPLAYER_CARD_TOKEN_OFFSETS = {\n [1] = {\n { 0, 3, -0.2 },\n },\n [2] = {\n { 0.4, 3, -0.2 },\n { -0.4, 3, -0.2 },\n },\n [3] = {\n { 0, 3, -0.9 },\n { 0.4, 3, -0.2 },\n { -0.4, 3, -0.2 },\n },\n [4] = {\n { 0.4, 3, -0.9 },\n { -0.4, 3, -0.9 },\n { 0.4, 3, -0.2 },\n { -0.4, 3, -0.2 }\n },\n [5] = {\n { 0.7, 3, -0.9 },\n { 0, 3, -0.9 },\n { -0.7, 3, -0.9 },\n { 0.4, 3, -0.2 },\n { -0.4, 3, -0.2 }\n },\n [6] = {\n { 0.7, 3, -0.9 },\n { 0, 3, -0.9 },\n { -0.7, 3, -0.9 },\n { 0.7, 3, -0.2 },\n { 0, 3, -0.2 },\n { -0.7, 3, -0.2 },\n },\n [7] = {\n { 0.7, 3, -0.9 },\n { 0, 3, -0.9 },\n { -0.7, 3, -0.9 },\n { 0.7, 3, -0.2 },\n { 0, 3, -0.2 },\n { -0.7, 3, -0.2 },\n { 0, 3, 0.5 },\n },\n [8] = {\n { 0.7, 3, -0.9 },\n { 0, 3, -0.9 },\n { -0.7, 3, -0.9 },\n { 0.7, 3, -0.2 },\n { 0, 3, -0.2 },\n { -0.7, 3, -0.2 },\n { -0.35, 3, 0.5 },\n { 0.35, 3, 0.5 },\n },\n [9] = {\n { 0.7, 3, -0.9 },\n { 0, 3, -0.9 },\n { -0.7, 3, -0.9 },\n { 0.7, 3, -0.2 },\n { 0, 3, -0.2 },\n { -0.7, 3, -0.2 },\n { 0.7, 3, 0.5 },\n { 0, 3, 0.5 },\n { -0.7, 3, 0.5 },\n },\n [12] = {\n { 0.7, 3, -0.9 },\n { 0, 3, -0.9 },\n { -0.7, 3, -0.9 },\n { 0.7, 3, -0.2 },\n { 0, 3, -0.2 },\n { -0.7, 3, -0.2 },\n { 0.7, 3, 0.5 },\n { 0, 3, 0.5 },\n { -0.7, 3, 0.5 },\n { 0.7, 3, 1.2 },\n { 0, 3, 1.2 },\n { -0.7, 3, 1.2 },\n }\n\n}\n\nmodeData = {\n ['Core Set'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['The Devourer Below'] = {\n easy = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' },\n normal = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' },\n hard = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' },\n expert = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' }\n },\n -----------------The Dunwich Legacy\n\n ['The Dunwich Legacy'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'red', 'blue' } }\n },\n ['The Miskatonic Museum'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Essex County Express'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Blood on the Altar'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Undimensioned and Unseen'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Where Doom Awaits'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Lost in Time and Space'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n -----------------The Path to Carcosa\n\n ['The Path to Carcosa'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'skull', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'skull', 'red', 'blue' } }\n },\n ['The Last King'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\n },\n ['Echoes of the Past'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\n },\n ['The Unspeakable Oath'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\n },\n ['A Phantom of Truth'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\n },\n ['The Pallid Mask'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\n },\n ['Black Stars Rise'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\n },\n ['Dim Carcosa'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'red', 'blue' } }\n },\n -----------------The Forgotten Age\n\n ['The Forgotten Age'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm6', 'm8', 'skull', 'skull', 'elder', 'red', 'blue' } }\n },\n ['The Doom of Eztli'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Threads of Fate'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Boundary Beyond'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The City of Archives'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Depths of Yoth'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Heart of the Elders'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Shattered Aeons'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'elder', 'red', 'blue' } }\n },\n\n -----------------The Circle Undone\n\n ['The Circle Undone'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm6', 'm8', 'skull', 'skull', 'red', 'blue' } }\n },\n ['The Witching Hour'] = {\n standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Wages of Sin'] = {\n standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['For the Greater Good'] = {\n standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n\n -----------------The Dream-Eaters\n\n ['TDE_A'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\n },\n ['TDE_B'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }\n },\n ['The Search For Kadath'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\n },\n ['A Thousand Shapes of Horror'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }\n },\n ['Dark Side of the Moon'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\n },\n ['Point of No Return'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }\n },\n ['Where the Gods Dwell'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\n },\n ['Weaver of the Cosmos'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }\n },\n\n -----------------The Side Missions\n --official\n ['Curse of the Rougarou'] = {\n normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'm8', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Carnevale of Horrors'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Labyrinths of Lunacy'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'red', 'blue' } },\n hard = { token = { 'p1', '0','m1', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'red', 'blue' } }\n },\n ['Guardians of the Abyss'] = {\n normal = { token = { 'p1', 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n },\n ['Excelsior'] = {\n normal = { token = { 'p1', '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n },\n ['Read or Die'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n\n --fan-made\n ['The Nephew Calls'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Outsider'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Stranger Things'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Winter Winds'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'skull', 'cultist', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'cultist', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'cultist', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'cultist', 'red', 'blue' } }\n },\n ['The Festival'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Forbidding Desert'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\n },\n ['Happys Funhouse'] = {\n normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm5', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Knightfall'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'm8', 'cultist', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Last Call at Roxies'] = {\n easy = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } }\n },\n ['The Limens of Belief'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\n },\n ['Blood Spilled in Salem'] = {\n normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Bread and Circuses'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['Bridge of Sighs'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['The Collector'] = {\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['The Colour out of Space'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Curse of Amultep'] = {\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['The Dying Star'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'blue', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'blue', 'red', 'blue' } }\n },\n ['Against the Wendigo'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Pensher Wyrm'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'm8', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'elder', 'red', 'blue' } }\n },\n ['Approaching Storm'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Into the Shadowlands'] = {\n easy = { token = { 'p1', 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['London Set 1'] = {\n easy = { token = { 'p2', 'p1', '0', '0', '0', 'm1', 'm2', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm2', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm2', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n },\n ['London Set 2'] = {\n normal = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'elder', 'tablet', 'red', 'blue' } },\n },\n ['London Set 3'] = {\n normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n },\n ['Delta Green'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n },\n ['Jennys Choice'] = {\n easy = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4','skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm5', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Blob'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n },\n ['The Initiation'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm6', 'm8', 'skull', 'skull', 'elder', 'red', 'blue' } }\n },\n ['Consternation'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'red', 'blue' } },\n },\n ['Of Sphinx'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'elder', 'cultist', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'elder', 'cultist', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'elder', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['Ordis'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['XXXX'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n\n}\n\nfunction onSave()\n local globalState = JSON.encode(SPAWNED_PLAYER_CARD_GUIDS)\n log('saving global state: ' .. globalState)\n self.script_state = globalState\nend\n\nfunction onload(save_state)\n if save_state ~= '' then\n log('loading global state: ' .. save_state)\n SPAWNED_PLAYER_CARD_GUIDS = JSON.decode(save_state)\n else\n SPAWNED_PLAYER_CARD_GUIDS = {}\n end\nend\n\nfunction getSpawnedPlayerCardGuid(params)\n local guid = params[1]\n if SPAWNED_PLAYER_CARD_GUIDS == nil then\n return nil\n end\n return SPAWNED_PLAYER_CARD_GUIDS[guid]\nend\n\nfunction setSpawnedPlayerCardGuid(params)\n local guid = params[1]\n local value = params[2]\n if SPAWNED_PLAYER_CARD_GUIDS ~= nil then\n SPAWNED_PLAYER_CARD_GUIDS[guid] = value\n return true\n end\n return false\nend\n", + "LuaScriptState": "[]", "XmlUI": "", - "LuaScript": "-- set true to enable debug logging\nDEBUG = false\n\nfunction log(message)\n if DEBUG then\n print(message)\n end\nend\n\n--[[\nKnown locations and clues. We check this to determine if we should\natttempt to spawn clues, first we look for _ and if\nwe find nothing we look for \nformat is [location_guid -> clueCount]\n]]\nLOCATIONS_DATA_JSON = [[\n{\n \"Study\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Study_670914\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Attic_377b20\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Attic\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Cellar_5d3bcc\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Cellar\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Bathroom\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Bedroom\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Far Above Your House\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Deep Below Your House\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Northside_86faac\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Northside\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Graveyard\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Miskatonic University_cedb0a\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Miskatonic University\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Downtown_1aa7cb\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Downtown\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"St. Mary's Hospital\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Easttown_88245c\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Easttown\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Southside\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Rivertown\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Your House_377b20\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Your House_b28633\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Ritual Site\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Arkham Woods_e8e04b\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Arkham Woods\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"New Orleans_5ab18a\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"New Orleans\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Riverside_ab9d69\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Riverside\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Wilderness_3c5ea8\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Wilderness\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Unhallowed Land_552a1d\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Unhallowed Land\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Flooded\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Venetian Garden\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Guardian\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Canal-side\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Accademia Bridge\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Bridge of Sighs\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Warren Observatory\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Science Building\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Orne Library\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Administration Building\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Student Union\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Humanities Building\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Dormitories\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n \"Faculty Offices\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Faculty Offices_1c567d\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n\n \"La Bella Luna\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Back Hall Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Museum Entrance\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Security Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Security Office_fcb3e4\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Administration Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Administration Office_d2eb25\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Exhibit Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Exhibit Hall_563240\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Exhibit Hall_f3ffb6\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Exhibit Hall_0b0c58\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Exhibit Hall_2d87e6\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Exhibit Hall_da02ea\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n\n \"Train Car\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Train Car_f3f902\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Train Car_905f69\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Train Car_a3a321\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Train Car_464528\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Train Car_3cfca4\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Train Car_64ffb0\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Train Car_0fb5f0\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n \"Engine Car\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"House in the Reeds\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Osborn's General Store\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Congregational Church\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Bishop's Brook\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Burned Ruins\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Schoolhouse\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Dunwich Village\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Dunwich Village_ac4427\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Cold Spring Glen\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Cold Spring Glen_e58475\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Ten-Acre Meadow\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Ten-Acre Meadow_05b0dd\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Blasted Heath\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Blasted Heath_995fe7\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Whateley Ruins\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Devil's Hop Yard\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Devil's Hop Yard_f7dd31\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Base of the Hill\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Base of the Hill_de3ca2\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Ascending Path\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Ascending Path_0e5289\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Sentinel Peak\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Diverging Path\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Diverging Path_7239aa\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Altered Path\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"The Edge of the Universe\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Tear Through Time\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Prismatic Cascade\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\n \"Towering Luminosity\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"front\"},\n \"Tear Through Space\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\n \"Endless Bridge\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\n \"Dimensional Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Steps of Y'hagharl\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Unstable Vortex\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Indecipherable Stairs\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\n\n \"Backstage Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Backstage Doorway_0797a9\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Lobby Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Lobby Doorway_7605cf\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Lobby\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Backstage\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Balcony\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Foyer\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Historical Society\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Historical Society_40f79d\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Historical Society_b352f8\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Historical Society_0cf5d5\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Historical Society_abc0cb\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Historical Society_ab6a72\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Hidden Library\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n\n \"Patient Confinement\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Asylum Halls\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Asylum Halls_f99530\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Asylum Halls_576595\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Infirmary\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Basement Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Yard\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Garden\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Kitchen\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Mess Hall\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Grand Guignol\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Montmartre\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Montmartre_cbaacc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"front\"},\n \"Montparnasse\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Notre-Dame\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Gare d'Orsay\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Opéra Garnier\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Canal Saint-Martin\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Le Marais\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Gardens of Luxembourg\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Père Lachaise Cemetery\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Catacombs\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Catacombs_29170f\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Catacombs_f1237c\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Catacombs_c3151e\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Catacombs_14b1cb\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Catacombs_81920c\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Catacombs_c14c8b\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Catacombs_ea2a55\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Catacombs_8bcab3\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Catacombs_7c7f4a\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Catacombs_80cf41\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n\n \"Abbey Church\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Porte de l'Avancée\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Grand Rue\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Cloister\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Knight's Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Chœur Gothique\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Outer Wall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Outer Wall_014bd6\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"North Tower\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"North Tower_69eae5\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Chapel of St. Aubert\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n \"Chapel of St. Aubert_e75ba8\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Abbey Tower\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n \"Abbey Tower_2f3d21\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Shores of Hali\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Dark Spires\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Palace of the King\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\n \"Palace of the King_60d758\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Ruins of Carcosa\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Dim Streets\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Depths of Demhe\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Bleak Plains\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Recesses of Your Own Mind\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"The Throne Room\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Stage of the Ward Theatre\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n\n \"Serpent’s Haven\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Ruins of Eztli\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Rope Bridge\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Overgrown Ruins\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"River Canyon\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Path of Thorns\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Temple of the Fang\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Circuitous Trail\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n\n \"Chamber of Time\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Ancient Hall\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Grand Chamber\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Entryway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Underground Ruins\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Burial Pit\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Secret Passage\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n\n \"Town Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Curiositie Shoppe\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"At the Station_7edfb0\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"At the Station_e2806c\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"At the Station_28ebe1\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"At the Station_e59778\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Sacred Woods\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Chapultepec Hill\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Chapultepec Hill_b5d586\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Canals of Tenochtitlán\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Lake Xochimilco\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Lake Xochimilco_e3a79d\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Templo Mayor\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Templo Mayor_f3c531\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Temples of Tenochtitlán\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Temples of Tenochtitlán_c097d8\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n\n \"Mouth of K'n-yan\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Stone Altar\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Time-Wracked Woods\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Vast Passages\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Perilous Gulch\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Dark Hollow\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Hall of Idolatry\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Crystal Pillars\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n\n \"Interview Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Interview Room_508f85\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Interview Room_4440de\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Halls of Pnakotus\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Deconstruction Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Towers of Pnakotus\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Laboratory of the Great Race\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Yithian Orrery\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Great Library\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"back\"},\n\n \"City of the Serpents\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Bridge over N'kai\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Abandoned Site\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Caverns of Yoth\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Hall of Heresy\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Bright Canyon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Forked Path\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n\n \"Nexus of N'kai\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"A Pocket in Time\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"City of the Unseen\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\n \"Valusia\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\n\n \"Shores of R’lyeh\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\n \"Atlantis\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\n \"Pnakotus\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\n \"Ruins of New York\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\n \"Yuggoth\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\n \"Mu\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"front\"},\n\n \"Billiards Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Billiards Room_33990b\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Trophy Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Trophy Room_e9160a\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Master Bedroom\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Balcony_1b5483\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Office_a1bd9a\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Witch-Haunted Woods_1539ea\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Witch-Haunted Woods\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Witch-Haunted Woods_d3f8c3\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Witch-Haunted Woods_eca18e\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Paths into Twilight\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n\n \"The Imperial Entrance\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Dark Stairwell\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Stairway\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Balcony\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Back Booths\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Lobby\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Backroom Door\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Backroom Door_ed439d\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Dining Area\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"The Dance Floor\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Gateway to the East\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Back Alley\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Mingzhu Laundry\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Dragon's Den\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"The Phoenix's Nest\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Golden Temple of the Heavens\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Flea Market\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Zihao's House of Fighting Arts\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Daiyu's Tea Garden\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Moldy Halls\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Decrepit Door\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Walter Gilman's Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Unknown Places_b538f8\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Unknown Places_7bea34\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Unknown Places\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Unknown Places_9a471d\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Unknown Places_0ac3ea\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Strange Geometry\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\n \"Site of the Sacrifice\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\n\n \"Hangman's Brook\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Abandoned Chapel\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Haunted Fields\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Lobby_1c2dfe\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Lobby_bcd556\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Lodge Gates_fa6a29\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Lodge Gates\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Lodge Cellar\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Lodge Cellar_8ea4fd\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Lounge\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Vault\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Inner Sanctum\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Library\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Library_47ccbc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Sanctum Doorway\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Sanctum Doorway_4da6c3\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"The Geist-Trap\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Forbidding Shore\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Unvisited Isle\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Rivertown_92ee68\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Rivertown_db4b20\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Southside_c898a0\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Southside_e7f5fa\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Silver Twilight Lodge\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Silver Twilight Lodge_17e686\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Hangman's Hill\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\n \"Hangman's Hill_5f4d8a\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Cosmic Ingress\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\n \"Cosmos\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\n \"Cosmos_a89dbf\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Cosmos_1a0ad2\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Cosmos_30fc53\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Cosmos_8f3e16\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Cosmos_4e8ae3\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\n \"Cosmos_a8d84d\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"back\"},\n \"Cosmos_7a3ece\": {\"type\": \"fixed\", \"value\": 6, \"clueSide\": \"back\"},\n \"Cosmos_311eb1\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Seventy Steps\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Seven Hundred Steps\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Base of the Steps\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Enchanted Woods\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Stairwell\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Basement Door_42fa87\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Basement Door\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Waiting Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Emergency Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Experimental Therapies Ward\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Records Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"Foyer_9a9f9a\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Room 245\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Hotel Roof\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Office_b3ed47\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Room 212\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Basement\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Second Floor Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Room 225\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Restaurant\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Suite Balcony\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Ulthar\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Dylath-Leen\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Mt. Ngranek\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Baharna\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Zulan-Thek\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Sarnath\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"City-Which-Appears-On-No-Map\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Celephaïs\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Nameless Ruins\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Kadatheron\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Ilek-Vad\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Ruins of Ib\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Temple of Unattainable Desires\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Hazuth-Kleg\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Serannian\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n\n \"Mysterious Stairs\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Mysterious Stairs_df1a40\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Attic_10faf9\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Unmarked Tomb\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Upstairs Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Front Porch\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Downstairs Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Downstairs Doorway_c93906\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Burial Ground\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"Temple of the Moon Lizard\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"City of the Moon-Beasts\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Moon-Forest\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Dark Crater\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Caverns Beneath the Moon\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Black Core\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Light Side of the Moon\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"City of Gugs\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Vaults of Zin\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Plain of the Ghouls\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Sea of Bones\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Vale of Pnath\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"Crag of the Ghouls\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n \"Sea of Pitch\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n\n \"Plateau of Leng\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Cold Wastes\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Monastery of Leng\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Onyx Gates\": {\"type\": \"fixed\", \"value\": 12, \"clueSide\": \"back\"},\n \"Forsaken Tower\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n\n \"The Crater\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Quarantine Zone\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"Quarantine Zone_5f2a9b\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Quarantine Zone_4a8e9c\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\n \"Quarantine Zone_5193e9\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"Quarantine Zone_b3a920\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"The Great Web\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\n \"The Great Web_39ace3\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"The Great Web_727790\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"The Great Web_5c5ec4\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"The Great Web_361fd7\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"The Great Web_dfdc8c\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n\n \"XXXX\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\n \"xxx\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"}\n}\n]]\n\n--[[\nPlayer cards with token counts and types\n]]\nPLAYER_CARD_DATA_JSON = [[\n{\n \"Flashlight\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Shrivelling\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Shrivelling (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Grotesque Statue (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Forbidden Knowledge\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \".45 Automatic\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Shotgun (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"Liquid Courage\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Song of the Dead (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 5\n },\n \"Cover Up\": {\n \"tokenType\": \"clue\",\n \"tokenCount\": 3\n },\n \"Roland's .38 Special\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"First Aid\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Scrying\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \".41 Derringer\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Painkillers\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Smoking Pipe\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Clarity of Mind\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Rite of Seeking\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"M1918 BAR (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 8\n },\n \"Ornate Bow (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 1\n },\n \".41 Derringer (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Suggestion (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Chicago Typewriter (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Lupara (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"First Aid (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Springfield M1903 (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \".32 Colt\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 6\n },\n \"Venturer\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Lockpicks (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Finn's Trusty .38\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \".45 Automatic (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Lightning Gun (5)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Strange Solution (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Strange Solution (4):Acidic Ichor\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Strange Solution (4):Empowering Elixir\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Arcane Insight (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Archaic Glyphs (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"In the Know (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Rite of Seeking (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Alchemical Transmutation\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Scrying (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Shrivelling (5)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Mists of R'lyeh\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Mists of R'lyeh (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 5\n },\n \"Colt Vest Pocket\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 5\n },\n \"Old Hunting Rifle (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Thermos\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Feed the Mind (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Seal of the Seventh Sign (5)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 7\n },\n \"Flamethrower (5)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Pnakotic Manuscripts (5)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Kerosene (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Shards of the Void (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Try and Try Again (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Arcane Initiate\": {\n \"tokenType\": \"doom\",\n \"tokenCount\": 1\n },\n \"Detective's Colt 1911s\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Extra Ammunition (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Rite of Seeking (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Arcane Initiate (3)\": {\n \"tokenType\": \"doom\",\n \"tokenCount\": 1\n },\n \"Clarity of Mind (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Fingerprint Kit\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Truth from Fiction\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"Enchanted Blade\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Tennessee Sour Mash\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"Scroll of Secrets\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \".45 Thompson\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 5\n },\n \"Mr. \\\"Rook\\\"\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Scroll of Secrets (3):Seeker\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Scroll of Secrets (3):Mystic\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Enchanted Blade (3):Guardian\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Enchanted Blade (3):Mystic\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \".45 Thompson (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 5\n },\n \"Esoteric Atlas (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Tennessee Sour Mash (3):Rogue\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"Tennessee Sour Mash (3):Survivor\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Mk1 Grenades (4)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Dayana Esperence\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Pendant of the Queen\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \".32 Colt (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 6\n },\n \"Alchemical Transmutation (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Suggestion (1)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Gate Box\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Tony's .38 Long Colt\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Gregory Gry\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 9\n },\n \"Scroll of Prophecies\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n },\n \"Healing Words\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"Otherworld Codex (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \".35 Winchester\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 5\n },\n \"Old Book of Lore (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"Sawed-Off Shotgun (5)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\n \"Mind's Eye (2)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n },\n \"xxx\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 3\n }\n}\n]]\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\n\nPLAYER_CARD_TOKEN_OFFSETS = {\n [1] = {\n { 0, 3, -0.2 },\n },\n [2] = {\n { 0.4, 3, -0.2 },\n { -0.4, 3, -0.2 },\n },\n [3] = {\n { 0, 3, -0.9 },\n { 0.4, 3, -0.2 },\n { -0.4, 3, -0.2 },\n },\n [4] = {\n { 0.4, 3, -0.9 },\n { -0.4, 3, -0.9 },\n { 0.4, 3, -0.2 },\n { -0.4, 3, -0.2 }\n },\n [5] = {\n { 0.7, 3, -0.9 },\n { 0, 3, -0.9 },\n { -0.7, 3, -0.9 },\n { 0.4, 3, -0.2 },\n { -0.4, 3, -0.2 }\n },\n [6] = {\n { 0.7, 3, -0.9 },\n { 0, 3, -0.9 },\n { -0.7, 3, -0.9 },\n { 0.7, 3, -0.2 },\n { 0, 3, -0.2 },\n { -0.7, 3, -0.2 },\n },\n [7] = {\n { 0.7, 3, -0.9 },\n { 0, 3, -0.9 },\n { -0.7, 3, -0.9 },\n { 0.7, 3, -0.2 },\n { 0, 3, -0.2 },\n { -0.7, 3, -0.2 },\n { 0, 3, 0.5 },\n },\n [8] = {\n { 0.7, 3, -0.9 },\n { 0, 3, -0.9 },\n { -0.7, 3, -0.9 },\n { 0.7, 3, -0.2 },\n { 0, 3, -0.2 },\n { -0.7, 3, -0.2 },\n { -0.35, 3, 0.5 },\n { 0.35, 3, 0.5 },\n },\n [9] = {\n { 0.7, 3, -0.9 },\n { 0, 3, -0.9 },\n { -0.7, 3, -0.9 },\n { 0.7, 3, -0.2 },\n { 0, 3, -0.2 },\n { -0.7, 3, -0.2 },\n { 0.7, 3, 0.5 },\n { 0, 3, 0.5 },\n { -0.7, 3, 0.5 },\n },\n [12] = {\n { 0.7, 3, -0.9 },\n { 0, 3, -0.9 },\n { -0.7, 3, -0.9 },\n { 0.7, 3, -0.2 },\n { 0, 3, -0.2 },\n { -0.7, 3, -0.2 },\n { 0.7, 3, 0.5 },\n { 0, 3, 0.5 },\n { -0.7, 3, 0.5 },\n { 0.7, 3, 1.2 },\n { 0, 3, 1.2 },\n { -0.7, 3, 1.2 },\n }\n\n}\n\nmodeData = {\n ['Core Set'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['The Devourer Below'] = {\n easy = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' },\n normal = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' },\n hard = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' },\n expert = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' }\n },\n -----------------The Dunwich Legacy\n\n ['The Dunwich Legacy'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'red', 'blue' } }\n },\n ['The Miskatonic Museum'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Essex County Express'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Blood on the Altar'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Undimensioned and Unseen'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Where Doom Awaits'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Lost in Time and Space'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n -----------------The Path to Carcosa\n\n ['The Path to Carcosa'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'skull', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'skull', 'red', 'blue' } }\n },\n ['The Last King'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\n },\n ['Echoes of the Past'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\n },\n ['The Unspeakable Oath'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\n },\n ['A Phantom of Truth'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\n },\n ['The Pallid Mask'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\n },\n ['Black Stars Rise'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\n },\n ['Dim Carcosa'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'red', 'blue' } }\n },\n -----------------The Forgotten Age\n\n ['The Forgotten Age'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm6', 'm8', 'skull', 'skull', 'elder', 'red', 'blue' } }\n },\n ['The Doom of Eztli'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Threads of Fate'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Boundary Beyond'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The City of Archives'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Depths of Yoth'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Heart of the Elders'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Shattered Aeons'] = {\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'elder', 'red', 'blue' } }\n },\n\n -----------------The Circle Undone\n\n ['The Circle Undone'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm6', 'm8', 'skull', 'skull', 'red', 'blue' } }\n },\n ['The Witching Hour'] = {\n standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Wages of Sin'] = {\n standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['For the Greater Good'] = {\n standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n\n -----------------The Dream-Eaters\n\n ['TDE_A'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\n },\n ['TDE_B'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }\n },\n ['The Search For Kadath'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\n },\n ['A Thousand Shapes of Horror'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }\n },\n ['Dark Side of the Moon'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\n },\n ['Point of No Return'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }\n },\n ['Where the Gods Dwell'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\n },\n ['Weaver of the Cosmos'] = {\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }\n },\n\n -----------------The Side Missions\n --official\n ['Curse of the Rougarou'] = {\n normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'm8', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Carnevale of Horrors'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Labyrinths of Lunacy'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'red', 'blue' } },\n hard = { token = { 'p1', '0','m1', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'red', 'blue' } }\n },\n ['Guardians of the Abyss'] = {\n normal = { token = { 'p1', 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n },\n ['Excelsior'] = {\n normal = { token = { 'p1', '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n },\n ['Read or Die'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n\n --fan-made\n ['The Nephew Calls'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Outsider'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Stranger Things'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Winter Winds'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'skull', 'cultist', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'cultist', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'cultist', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'cultist', 'red', 'blue' } }\n },\n ['The Festival'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Forbidding Desert'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\n },\n ['Happys Funhouse'] = {\n normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm5', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Knightfall'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'm8', 'cultist', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Last Call at Roxies'] = {\n easy = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } }\n },\n ['The Limens of Belief'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\n },\n ['Blood Spilled in Salem'] = {\n normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Bread and Circuses'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['Bridge of Sighs'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['The Collector'] = {\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['The Colour out of Space'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Curse of Amultep'] = {\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['The Dying Star'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'blue', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'blue', 'red', 'blue' } }\n },\n ['Against the Wendigo'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Pensher Wyrm'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'm8', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'elder', 'red', 'blue' } }\n },\n ['Approaching Storm'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['Into the Shadowlands'] = {\n easy = { token = { 'p1', 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['London Set 1'] = {\n easy = { token = { 'p2', 'p1', '0', '0', '0', 'm1', 'm2', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm2', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm2', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\n },\n ['London Set 2'] = {\n normal = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'elder', 'tablet', 'red', 'blue' } },\n },\n ['London Set 3'] = {\n normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n },\n ['Delta Green'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n },\n ['Jennys Choice'] = {\n easy = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4','skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm5', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'elder', 'red', 'blue' } }\n },\n ['The Blob'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\n },\n ['The Initiation'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'elder', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'elder', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm6', 'm8', 'skull', 'skull', 'elder', 'red', 'blue' } }\n },\n ['Consternation'] = {\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' } },\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'red', 'blue' } },\n },\n ['Of Sphinx'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'elder', 'cultist', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'elder', 'cultist', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'elder', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['Ordis'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } }\n },\n ['XXXX'] = {\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\n },\n\n}\n\nfunction onSave()\n local globalState = JSON.encode(SPAWNED_PLAYER_CARD_GUIDS)\n log('saving global state: ' .. globalState)\n self.script_state = globalState\nend\n\nfunction onload(save_state)\n if save_state ~= '' then\n log('loading global state: ' .. save_state)\n SPAWNED_PLAYER_CARD_GUIDS = JSON.decode(save_state)\n else\n SPAWNED_PLAYER_CARD_GUIDS = {}\n end\nend\n\nfunction getSpawnedPlayerCardGuid(params)\n local guid = params[1]\n if SPAWNED_PLAYER_CARD_GUIDS == nil then\n return nil\n end\n return SPAWNED_PLAYER_CARD_GUIDS[guid]\nend\n\nfunction setSpawnedPlayerCardGuid(params)\n local guid = params[1]\n local value = params[2]\n if SPAWNED_PLAYER_CARD_GUIDS ~= nil then\n SPAWNED_PLAYER_CARD_GUIDS[guid] = value\n return true\n end\n return false\nend", - "LuaScriptState": "{\"1186a1\":true,\"1339b0\":true,\"462291\":true,\"529289\":true,\"682878\":true,\"a58a8f\":true,\"bcca6e\":true,\"ec44aa\":true}", "GUID": "708279" }, { @@ -831,6 +943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844,9 +958,9 @@ "TypeIndex": 0, "LoopingEffectIndex": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5706ae" }, { @@ -874,6 +988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892,9 +1008,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6161b4" }, { @@ -922,6 +1038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938,9 +1056,9 @@ "TypeIndex": 1, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7165a9" }, { @@ -968,6 +1086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -994,9 +1114,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87ccfc" }, { @@ -1024,6 +1144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1050,9 +1172,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0532e0" }, { @@ -1080,6 +1202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1106,9 +1230,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a90f21" }, { @@ -1136,6 +1260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1162,9 +1288,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "180a23" }, { @@ -1175,7 +1301,7 @@ "posZ": -31.9828682, "rotX": 359.918152, "rotY": 269.674561, - "rotZ": 0.0173960682, + "rotZ": 0.0173960887, "scaleX": 0.325000376, "scaleY": 0.325000376, "scaleZ": 0.325000376 @@ -1192,6 +1318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1218,9 +1346,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d61e2" }, { @@ -1248,6 +1376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1266,9 +1396,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "463022" }, { @@ -1296,6 +1426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1314,9 +1446,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9487a4" }, { @@ -1344,6 +1476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1362,9 +1496,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23a43c" }, { @@ -1392,6 +1526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1410,9 +1546,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5450cc" }, { @@ -1440,6 +1576,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": false, "Tooltip": false, @@ -1454,12 +1592,13 @@ "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.0, "DynamicFriction": 0.0, @@ -1500,15 +1639,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "402b5e" }, { @@ -1537,15 +1678,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83ef06" }, { @@ -1573,15 +1716,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "612072" }, { @@ -1609,6 +1754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1627,9 +1774,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -1656,6 +1803,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1670,12 +1819,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0aff9d" } ], @@ -1706,6 +1856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1724,9 +1876,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -1753,6 +1905,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1771,9 +1925,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ffa21" } ], @@ -1804,6 +1958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -1818,12 +1974,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {1,1,1,95}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "85c4c6" }, { @@ -1851,6 +2008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -1869,9 +2028,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function onLoad()\r\n\r\n\r\n\r\n\r\n\r\n--self.interactable = false\r\nself.createButton({\r\n click_function= \"onButtonClick\",\r\n function_owner= self,\r\n position= {0, 1.84, 0},\r\n width = 1500,\r\n height = 1000,\r\n color = {0,0,0,0},\r\n tooltip= \"click here to load cards first\",\r\n})end\r\n\r\nfunction onButtonClick(obj, playerColor)\r\nif Player[playerColor].admin and self.getQuantity() > 0 then\r\n\r\n\r\n\r\n --AllCard Deck\r\n self.takeObject ({\r\n position= {-63.36, 5, -65.69},\r\n rotation = {180,90,0},\r\n smooth= true,})\r\n\r\n --AllCard Deck\r\n self.takeObject ({\r\n position= {-63.34, 1.43, -77.75},\r\n rotation = {180,90,0},\r\n smooth= true,})\r\n\r\nend\r\nend", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -1898,6 +2057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1949,7 +2110,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2903": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -1957,7 +2119,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4381": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -1965,7 +2128,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2910": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -1973,12 +2137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -2005,6 +2170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2020,12 +2187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2210c1" }, { @@ -2053,6 +2221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2068,12 +2238,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8598a4" }, { @@ -2101,6 +2272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2116,12 +2289,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cebf6a" }, { @@ -2149,6 +2323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2164,12 +2340,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "447a08" }, { @@ -2197,6 +2374,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2212,12 +2391,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd3d09" }, { @@ -2245,6 +2425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2260,12 +2442,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31f72f" }, { @@ -2293,6 +2476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2308,12 +2493,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5be8b" }, { @@ -2341,6 +2527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2356,12 +2544,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fb446" }, { @@ -2389,6 +2578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2404,12 +2595,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c17498" }, { @@ -2437,6 +2629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2452,12 +2646,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88ee43" }, { @@ -2485,6 +2680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2500,12 +2697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eff3c8" }, { @@ -2533,6 +2731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2548,12 +2748,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b239d7" }, { @@ -2581,6 +2782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2596,12 +2799,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd9c56" }, { @@ -2629,6 +2833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2644,12 +2850,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2ef43" }, { @@ -2677,6 +2884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2692,12 +2901,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da227d" }, { @@ -2725,6 +2935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2740,12 +2952,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba2ae1" }, { @@ -2773,6 +2986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2788,12 +3003,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc65f3" }, { @@ -2821,6 +3037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2836,12 +3054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d83baf" }, { @@ -2869,6 +3088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2884,12 +3105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eeb330" }, { @@ -2917,6 +3139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2932,12 +3156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29766c" }, { @@ -2965,6 +3190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -2980,12 +3207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ea68b" }, { @@ -3013,6 +3241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3028,12 +3258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3575a3" }, { @@ -3061,6 +3292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3076,12 +3309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b3c0a" }, { @@ -3109,6 +3343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3124,12 +3360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57e648" }, { @@ -3157,6 +3394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3172,12 +3411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e42f12" }, { @@ -3205,6 +3445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3220,12 +3462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88a9b3" }, { @@ -3253,6 +3496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3268,12 +3513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea0fa1" }, { @@ -3301,6 +3547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3316,12 +3564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "016e3c" }, { @@ -3349,6 +3598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3364,12 +3615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d28be6" }, { @@ -3397,6 +3649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3412,12 +3666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16a89d" }, { @@ -3445,6 +3700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3460,12 +3717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "249d83" }, { @@ -3493,6 +3751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3508,12 +3768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df93a" }, { @@ -3541,6 +3802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3556,12 +3819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5c93d" }, { @@ -3589,6 +3853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3604,12 +3870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "406ab2" }, { @@ -3637,6 +3904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -3652,12 +3921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6aba5" } ], @@ -3688,6 +3958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -4431,7 +4703,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4501": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4439,7 +4712,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4495": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4447,7 +4721,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4500": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4455,7 +4730,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4502": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4463,7 +4739,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4507": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4471,7 +4748,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4499": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4479,7 +4757,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4497": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4487,7 +4766,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4503": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4495,7 +4775,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4508": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4503,7 +4784,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4505": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4511,7 +4793,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4504": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4519,7 +4802,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4509": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4527,7 +4811,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4496": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4535,7 +4820,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4506": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -4543,7 +4829,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4487": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -4551,7 +4838,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4488": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -4559,7 +4847,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4490": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", @@ -4567,7 +4856,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4491": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -4575,7 +4865,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4489": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -4583,7 +4874,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4486": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/", @@ -4591,7 +4883,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4477": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -4599,7 +4892,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4481": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/", @@ -4607,7 +4901,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4476": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", @@ -4615,7 +4910,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4479": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -4623,7 +4919,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4480": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -4631,7 +4928,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4478": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -4639,7 +4937,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4314": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -4647,7 +4946,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2762": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", @@ -4655,7 +4955,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4306": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -4663,7 +4964,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3685": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -4671,7 +4973,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3687": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -4679,7 +4982,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3684": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -4687,7 +4991,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2666": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -4695,7 +5000,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2303": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/", @@ -4703,7 +5009,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2779": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -4711,7 +5018,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3153": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", @@ -4719,7 +5027,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3139": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -4727,7 +5036,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4409": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -4735,7 +5045,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3788": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -4743,7 +5054,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4406": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -4751,7 +5063,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -4759,7 +5072,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3700": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -4767,7 +5081,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3793": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -4775,7 +5090,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -4783,7 +5099,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2776": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/", @@ -4791,7 +5108,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3802": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -4799,7 +5117,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2934": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -4807,7 +5126,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "4381": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -4815,7 +5135,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2932": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -4823,7 +5144,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2770": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/", @@ -4831,7 +5153,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3148": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -4839,7 +5162,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", @@ -4847,7 +5171,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4493": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -4855,7 +5180,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3152": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -4863,7 +5189,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3796": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -4871,7 +5198,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3709": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -4879,7 +5207,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2930": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -4887,7 +5216,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2935": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/", @@ -4895,7 +5225,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3786": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -4903,7 +5234,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4444": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -4911,7 +5243,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2622": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -4919,7 +5252,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4407": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", @@ -4927,7 +5261,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2928": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -4935,7 +5270,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4311": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -4943,7 +5279,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3775": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -4951,7 +5288,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2780": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -4959,7 +5297,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2916": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/", @@ -4967,7 +5306,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3140": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -4975,7 +5315,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3740": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -4983,7 +5324,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2955": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/", @@ -4991,7 +5333,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3769": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -4999,7 +5342,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2967": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -5007,7 +5351,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2903": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -5015,7 +5360,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2965": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/", @@ -5023,7 +5369,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4445": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/", @@ -5031,7 +5378,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3708": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5039,7 +5387,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3800": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", @@ -5047,7 +5396,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3751": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5055,7 +5405,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2740": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/", @@ -5063,7 +5414,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3715": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5071,7 +5423,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3749": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5079,7 +5432,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3799": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -5087,7 +5441,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2617": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -5095,7 +5450,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3780": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", @@ -5103,7 +5459,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3698": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5111,7 +5468,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4315": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5119,7 +5477,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3711": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5127,7 +5486,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3798": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -5135,7 +5495,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4408": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -5143,7 +5504,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3791": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5151,7 +5513,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2611": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/", @@ -5159,7 +5522,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2933": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -5167,7 +5531,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3801": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -5175,7 +5540,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3135": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -5183,7 +5549,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2929": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", @@ -5191,7 +5558,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4443": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5199,7 +5567,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3797": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/", @@ -5207,7 +5576,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3187": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/", @@ -5215,7 +5585,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3125": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", @@ -5223,7 +5594,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4312": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -5231,7 +5603,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3748": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5239,7 +5612,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4309": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -5247,7 +5621,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4310": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -5255,7 +5630,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4441": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5263,7 +5639,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3718": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5271,7 +5648,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3704": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5279,7 +5657,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3790": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -5287,7 +5666,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2757": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", @@ -5295,7 +5675,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4316": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5303,7 +5684,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3136": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -5311,7 +5693,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2775": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -5319,7 +5702,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2951": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642393244/74ADDF83D8B03DBF4AD5DC7230C2D12E84685317/", @@ -5327,7 +5711,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3697": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5335,7 +5720,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3714": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5343,7 +5729,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3686": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -5351,7 +5738,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3710": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5359,7 +5747,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2655": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", @@ -5367,7 +5756,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3719": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5375,7 +5765,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3789": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5383,7 +5774,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4410": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -5391,7 +5783,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3149": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -5399,7 +5792,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3810": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5407,7 +5801,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3716": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5415,7 +5810,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2777": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", @@ -5423,7 +5819,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3717": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5431,7 +5828,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4440": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -5439,7 +5837,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2746": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -5447,7 +5846,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4305": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -5455,7 +5855,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3720": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5463,7 +5864,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3772": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5471,7 +5873,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2942": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -5479,7 +5882,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2788": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", @@ -5487,7 +5891,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3744": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -5495,7 +5900,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3787": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5503,7 +5909,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3750": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5511,7 +5918,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3141": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -5519,7 +5927,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3694": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5527,7 +5936,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3774": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5535,7 +5945,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3745": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5543,7 +5954,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3771": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5551,7 +5963,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3739": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/", @@ -5559,7 +5972,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2778": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -5567,7 +5981,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3721": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5575,7 +5990,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2742": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", @@ -5583,7 +5999,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4308": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -5591,7 +6008,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3768": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5599,7 +6017,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3713": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5607,7 +6026,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3746": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5615,7 +6035,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3794": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5623,7 +6044,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2931": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/", @@ -5631,7 +6053,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3767": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5639,7 +6062,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2971": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -5647,7 +6071,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3766": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5655,7 +6080,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3792": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5663,7 +6089,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3738": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5671,7 +6098,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3770": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5679,7 +6107,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3773": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5687,7 +6116,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4442": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5695,7 +6125,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5703,7 +6134,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3809": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5711,7 +6143,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3121": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/", @@ -5719,7 +6152,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3741": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5727,7 +6161,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3712": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5735,7 +6170,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3747": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5743,7 +6179,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3699": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5751,7 +6188,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3743": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5759,7 +6197,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2761": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", @@ -5767,7 +6206,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3689": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5775,7 +6215,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3765": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5783,7 +6224,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3133": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -5791,7 +6233,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3795": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5799,7 +6242,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3742": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5807,7 +6251,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4318": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5815,7 +6260,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3703": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -5823,7 +6269,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2763": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -5831,7 +6278,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3142": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -5839,7 +6287,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2902": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -5847,7 +6296,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4437": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -5855,7 +6305,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -5863,7 +6314,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2323": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -5871,7 +6323,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "122": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/", @@ -5879,7 +6332,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "127": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/", @@ -5887,7 +6341,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2657": { "FaceURL": "https://i.imgur.com/mtzND71.jpg", @@ -5895,7 +6350,8 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4516": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/", @@ -5903,7 +6359,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "4514": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/", @@ -5911,7 +6368,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "4485": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", @@ -5919,7 +6377,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4525": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", @@ -5927,7 +6386,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4523": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", @@ -5935,7 +6395,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2331": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/", @@ -5943,7 +6404,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "75": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -5951,7 +6413,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4541": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -5959,7 +6422,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2662": { "FaceURL": "https://i.imgur.com/HLQOkvy.jpg", @@ -5967,7 +6431,8 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "4547": { "FaceURL": "https://i.imgur.com/CN9PXUd.jpg", @@ -5975,7 +6440,8 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2741": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/", @@ -5983,7 +6449,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/", @@ -5991,12 +6458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -6023,6 +6491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6038,12 +6508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad24aa" }, { @@ -6071,6 +6542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6086,12 +6559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83457e" }, { @@ -6119,6 +6593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6134,12 +6610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "015d79" }, { @@ -6167,6 +6644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6182,12 +6661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5033a2" }, { @@ -6215,6 +6695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6230,12 +6712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1105b0" }, { @@ -6263,6 +6746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6278,12 +6763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f67e8" }, { @@ -6311,6 +6797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6326,12 +6814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b40685" }, { @@ -6359,6 +6848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6374,12 +6865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75a0be" }, { @@ -6407,6 +6899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6422,12 +6916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f50a30" }, { @@ -6455,6 +6950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6470,12 +6967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67a72c" }, { @@ -6503,6 +7001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6518,12 +7018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a60325" }, { @@ -6551,6 +7052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6566,12 +7069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7d356" }, { @@ -6599,6 +7103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6614,12 +7120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6f2b9" }, { @@ -6647,6 +7154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6662,12 +7171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8043d5" }, { @@ -6695,6 +7205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6710,12 +7222,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cbcb7a" }, { @@ -6743,6 +7256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6758,12 +7273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff4aea" }, { @@ -6791,6 +7307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6806,12 +7324,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a0060" }, { @@ -6839,6 +7358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6854,12 +7375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff59dd" }, { @@ -6887,6 +7409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6902,12 +7426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97e9ce" }, { @@ -6935,6 +7460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6950,12 +7477,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae16e8" }, { @@ -6983,6 +7511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -6998,12 +7528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6f6f1" }, { @@ -7031,6 +7562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7046,12 +7579,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0389b" }, { @@ -7079,6 +7613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7094,12 +7630,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6085d" }, { @@ -7127,6 +7664,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7142,12 +7681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48c9ff" }, { @@ -7175,6 +7715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7190,12 +7732,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f5f0f" }, { @@ -7223,6 +7766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7238,12 +7783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b45c82" }, { @@ -7271,6 +7817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7286,12 +7834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97a795" }, { @@ -7319,6 +7868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7334,12 +7885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad58aa" }, { @@ -7367,6 +7919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7382,12 +7936,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86cf9c" }, { @@ -7415,6 +7970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7430,12 +7987,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26922c" }, { @@ -7463,6 +8021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7478,12 +8038,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab4fb3" }, { @@ -7511,6 +8072,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7526,12 +8089,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c0d236" }, { @@ -7559,6 +8123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7574,12 +8140,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4b991" }, { @@ -7607,6 +8174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7622,12 +8191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "464ca1" }, { @@ -7655,6 +8225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7670,12 +8242,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16e57b" }, { @@ -7703,6 +8276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7718,12 +8293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f21109" }, { @@ -7751,6 +8327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7766,12 +8344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8324" }, { @@ -7799,6 +8378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7814,12 +8395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d006f" }, { @@ -7847,6 +8429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7862,12 +8446,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d9a97" }, { @@ -7895,6 +8480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7910,12 +8497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "122e98" }, { @@ -7943,6 +8531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -7958,12 +8548,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2aeb8a" }, { @@ -7991,6 +8582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8006,12 +8599,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3cad4" }, { @@ -8039,6 +8633,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8054,12 +8650,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30062e" }, { @@ -8087,6 +8684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8102,12 +8701,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1bd139" }, { @@ -8135,6 +8735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8150,12 +8752,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dc42a" }, { @@ -8183,6 +8786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8198,12 +8803,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebdd78" }, { @@ -8231,6 +8837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8246,12 +8854,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93381d" }, { @@ -8279,6 +8888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8294,12 +8905,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80fafa" }, { @@ -8327,6 +8939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8342,12 +8956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c0f00" }, { @@ -8375,6 +8990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8390,12 +9007,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffe4dd" }, { @@ -8423,6 +9041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8438,12 +9058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d22c4" }, { @@ -8471,6 +9092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8486,12 +9109,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26853e" }, { @@ -8519,6 +9143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8534,12 +9160,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8a14" }, { @@ -8567,6 +9194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8582,12 +9211,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f76ec" }, { @@ -8615,6 +9245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8630,12 +9262,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5f9cb" }, { @@ -8663,6 +9296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8678,12 +9313,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f9a10" }, { @@ -8711,6 +9347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8726,12 +9364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea40f6" }, { @@ -8759,6 +9398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8774,12 +9415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ac667" }, { @@ -8807,6 +9449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8822,12 +9466,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3dc25c" }, { @@ -8855,6 +9500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8870,12 +9517,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "527f1c" }, { @@ -8903,6 +9551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8918,12 +9568,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2240f9" }, { @@ -8951,6 +9602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -8966,12 +9619,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f99cc" }, { @@ -8999,6 +9653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9014,12 +9670,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4cf62" }, { @@ -9047,6 +9704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9062,12 +9721,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc6b14" }, { @@ -9095,6 +9755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9110,12 +9772,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4167c0" }, { @@ -9143,6 +9806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9158,12 +9823,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ea68b" }, { @@ -9191,6 +9857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9206,12 +9874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "603e29" }, { @@ -9239,6 +9908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9254,12 +9925,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "644af9" }, { @@ -9287,6 +9959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9302,12 +9976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d9881" }, { @@ -9335,6 +10010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9350,12 +10027,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e0653" }, { @@ -9383,6 +10061,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9398,12 +10078,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e32a5" }, { @@ -9431,6 +10112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9446,12 +10129,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2c7ef" }, { @@ -9479,6 +10163,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9494,12 +10180,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785f68" }, { @@ -9527,6 +10214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9542,12 +10231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bda4fd" }, { @@ -9575,6 +10265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9590,12 +10282,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6ff32" }, { @@ -9623,6 +10316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9638,12 +10333,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd3ecc" }, { @@ -9671,6 +10367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9686,12 +10384,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5dd39" }, { @@ -9719,6 +10418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9734,12 +10435,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5bcec" }, { @@ -9767,6 +10469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9782,12 +10486,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "274daa" }, { @@ -9815,6 +10520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9830,12 +10537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f25d1" }, { @@ -9863,6 +10571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9878,12 +10588,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16ad5d" }, { @@ -9911,6 +10622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9926,12 +10639,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c6509" }, { @@ -9959,6 +10673,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -9974,12 +10690,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44cf4a" }, { @@ -10007,6 +10724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10022,12 +10741,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb9b7e" }, { @@ -10055,6 +10775,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10070,12 +10792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -10103,6 +10826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10118,12 +10843,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "406ab2" }, { @@ -10151,6 +10877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10166,12 +10894,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ce005" }, { @@ -10199,6 +10928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10214,12 +10945,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "756a35" }, { @@ -10247,6 +10979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10262,12 +10996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60982a" }, { @@ -10295,6 +11030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10310,12 +11047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3dc82f" }, { @@ -10343,6 +11081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10358,12 +11098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b0235" }, { @@ -10391,6 +11132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10406,12 +11149,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86b9c5" }, { @@ -10439,6 +11183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10454,12 +11200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b76c9" }, { @@ -10487,6 +11234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10502,12 +11251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb0f6a" }, { @@ -10535,6 +11285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10550,12 +11302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "223ba3" }, { @@ -10583,6 +11336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10598,12 +11353,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0414b4" }, { @@ -10631,6 +11387,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10646,12 +11404,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9934d2" }, { @@ -10679,6 +11438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10694,12 +11455,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffa4f9" }, { @@ -10727,6 +11489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10742,12 +11506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "074858" }, { @@ -10775,6 +11540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10790,12 +11557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "060943" }, { @@ -10823,6 +11591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10838,12 +11608,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f3488" }, { @@ -10871,6 +11642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10886,12 +11659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bcdee" }, { @@ -10919,6 +11693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10934,12 +11710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c92ea3" }, { @@ -10967,6 +11744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -10982,12 +11761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2db518" }, { @@ -11015,6 +11795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11030,12 +11812,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00af4f" }, { @@ -11063,6 +11846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11078,12 +11863,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "baef55" }, { @@ -11111,6 +11897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11126,12 +11914,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8c93a" }, { @@ -11159,6 +11948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11174,12 +11965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "576d70" }, { @@ -11207,6 +11999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11222,12 +12016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cbe256" }, { @@ -11255,6 +12050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11270,12 +12067,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79287f" }, { @@ -11303,6 +12101,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11318,12 +12118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6cd01" }, { @@ -11351,6 +12152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11366,12 +12169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c18ebe" }, { @@ -11399,6 +12203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11414,12 +12220,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b4434" }, { @@ -11447,6 +12254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11462,12 +12271,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6eda3" }, { @@ -11495,6 +12305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11510,12 +12322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b8cb7" }, { @@ -11543,6 +12356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11558,12 +12373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cfcc7" }, { @@ -11591,6 +12407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11606,12 +12424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "863f91" }, { @@ -11639,6 +12458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11654,12 +12475,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee20c9" }, { @@ -11687,6 +12509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11702,12 +12526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eff3c8" }, { @@ -11735,6 +12560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11750,12 +12577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8e495" }, { @@ -11783,6 +12611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11798,12 +12628,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8948c4" }, { @@ -11831,6 +12662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11846,12 +12679,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "914053" }, { @@ -11879,6 +12713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11894,12 +12730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ec9bf" }, { @@ -11927,6 +12764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11942,12 +12781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83d8d7" }, { @@ -11975,6 +12815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -11990,12 +12832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edb554" }, { @@ -12023,6 +12866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12038,12 +12883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84b918" }, { @@ -12071,6 +12917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12086,12 +12934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d96e4b" }, { @@ -12119,6 +12968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12134,12 +12985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1b0f9" }, { @@ -12167,6 +13019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12182,12 +13036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "447a08" }, { @@ -12215,6 +13070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12230,12 +13087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88a9b3" }, { @@ -12263,6 +13121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12278,12 +13138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14c396" }, { @@ -12311,6 +13172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12326,12 +13189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3f105" }, { @@ -12359,6 +13223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12374,12 +13240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b9dbf" }, { @@ -12407,6 +13274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12422,12 +13291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53d765" }, { @@ -12455,6 +13325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12470,12 +13342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76147b" }, { @@ -12503,6 +13376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12518,12 +13393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15643b" }, { @@ -12551,6 +13427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12566,12 +13444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d64c99" }, { @@ -12599,6 +13478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12614,12 +13495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "170538" }, { @@ -12647,6 +13529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12662,12 +13546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a42f33" }, { @@ -12695,6 +13580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12710,12 +13597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da7613" }, { @@ -12743,6 +13631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12758,12 +13648,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f3f16" }, { @@ -12791,6 +13682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12806,12 +13699,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f3880" }, { @@ -12839,6 +13733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12854,12 +13750,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96ae32" }, { @@ -12887,6 +13784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12902,12 +13801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5c93d" }, { @@ -12935,6 +13835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12950,12 +13852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e7f1b" }, { @@ -12983,6 +13886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -12998,12 +13903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dacbf0" }, { @@ -13031,6 +13937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13046,12 +13954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b12ac" }, { @@ -13079,6 +13988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13094,12 +14005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa4c1e" }, { @@ -13127,6 +14039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13142,12 +14056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7275bc" }, { @@ -13175,6 +14090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13190,12 +14107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cc3e7" }, { @@ -13223,6 +14141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13238,12 +14158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79b4af" }, { @@ -13271,6 +14192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13286,12 +14209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea0007" }, { @@ -13319,6 +14243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13334,12 +14260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b239d7" }, { @@ -13367,6 +14294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13382,12 +14311,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c2d9a" }, { @@ -13415,6 +14345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13430,12 +14362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96a440" }, { @@ -13463,6 +14396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13478,12 +14413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c729ab" }, { @@ -13511,6 +14447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13526,12 +14464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0c61c" }, { @@ -13559,6 +14498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13574,12 +14515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53867b" }, { @@ -13607,6 +14549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13622,12 +14566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "274daa" }, { @@ -13655,6 +14600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13670,12 +14617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -13703,6 +14651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13718,12 +14668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c55160" }, { @@ -13751,6 +14702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13766,12 +14719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f34090" }, { @@ -13799,6 +14753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13814,12 +14770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cbfc12" }, { @@ -13847,6 +14804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13862,12 +14821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab574" }, { @@ -13895,6 +14855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13910,12 +14872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df0e22" }, { @@ -13943,6 +14906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -13958,12 +14923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f57a6f" }, { @@ -13991,6 +14957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14006,12 +14974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86ee68" }, { @@ -14039,6 +15008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14054,12 +15025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "efb09b" }, { @@ -14087,6 +15059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14102,12 +15076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8254d4" }, { @@ -14135,6 +15110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14150,12 +15127,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "006d44" }, { @@ -14183,6 +15161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14198,12 +15178,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d9b32" }, { @@ -14231,6 +15212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14246,12 +15229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f32e8" }, { @@ -14279,6 +15263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14294,12 +15280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40cb4" }, { @@ -14327,6 +15314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14342,12 +15331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f763e8" }, { @@ -14375,6 +15365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14390,12 +15382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a390e" }, { @@ -14423,6 +15416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14438,12 +15433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49a91e" }, { @@ -14471,6 +15467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14486,12 +15484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3dcf1" }, { @@ -14519,6 +15518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14534,12 +15535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07a8f0" }, { @@ -14567,6 +15569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14582,12 +15586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7944d" }, { @@ -14615,6 +15620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14630,12 +15637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "394603" }, { @@ -14663,6 +15671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14678,12 +15688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f9de4" }, { @@ -14711,6 +15722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14726,12 +15739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b81dcf" }, { @@ -14759,6 +15773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14774,12 +15790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b00b76" }, { @@ -14807,6 +15824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14822,12 +15841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f2489" }, { @@ -14855,6 +15875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14870,12 +15892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a57f19" }, { @@ -14903,6 +15926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14918,12 +15943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "876557" }, { @@ -14951,6 +15977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -14966,12 +15994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53f076" }, { @@ -14999,6 +16028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15014,12 +16045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bb3da" }, { @@ -15047,6 +16079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15062,12 +16096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e2987" }, { @@ -15095,6 +16130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15110,12 +16147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4fd4a" }, { @@ -15143,6 +16181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15158,12 +16198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91e53c" }, { @@ -15191,6 +16232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15206,12 +16249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd3d09" }, { @@ -15239,6 +16283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15254,12 +16300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6771f" }, { @@ -15287,6 +16334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15302,12 +16351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12660b" }, { @@ -15335,6 +16385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15350,12 +16402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bca49e" }, { @@ -15383,6 +16436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15398,12 +16453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e3115" }, { @@ -15431,6 +16487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15446,12 +16504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2423e7" }, { @@ -15479,6 +16538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15494,12 +16555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c7a00" }, { @@ -15527,6 +16589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15542,12 +16606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b14dc" }, { @@ -15575,6 +16640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15590,12 +16657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae20e0" }, { @@ -15623,6 +16691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15638,12 +16708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a06aa7" }, { @@ -15671,6 +16742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15686,12 +16759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59b24f" }, { @@ -15719,6 +16793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15734,12 +16810,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "194d88" }, { @@ -15767,6 +16844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15782,12 +16861,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1186a1" }, { @@ -15815,6 +16895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15830,12 +16912,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bba97a" }, { @@ -15863,6 +16946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15878,12 +16963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "063fd8" }, { @@ -15911,6 +16997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15926,12 +17014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c86b" }, { @@ -15959,6 +17048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -15974,12 +17065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc4788" }, { @@ -16007,6 +17099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16022,12 +17116,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05da68" }, { @@ -16055,6 +17150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16070,12 +17167,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b65011" }, { @@ -16103,6 +17201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16118,12 +17218,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bd7cf" }, { @@ -16151,6 +17252,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16166,12 +17269,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "658d38" }, { @@ -16199,6 +17303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16214,12 +17320,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d926f" }, { @@ -16247,6 +17354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16262,12 +17371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "889121" }, { @@ -16295,6 +17405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16310,12 +17422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e25dc1" }, { @@ -16343,6 +17456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16358,12 +17473,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d6e9a" }, { @@ -16391,6 +17507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16406,12 +17524,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44a37f" }, { @@ -16439,6 +17558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16454,12 +17575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eca1c8" }, { @@ -16487,6 +17609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16502,12 +17626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "52a677" }, { @@ -16535,6 +17660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16550,12 +17677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fe462" }, { @@ -16583,6 +17711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16598,12 +17728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eab2ed" }, { @@ -16631,6 +17762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16646,12 +17779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8dc01" }, { @@ -16679,6 +17813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16694,12 +17830,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ee492" }, { @@ -16727,6 +17864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16742,12 +17881,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d99735" }, { @@ -16775,6 +17915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16790,12 +17932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "308be1" }, { @@ -16823,6 +17966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16838,12 +17983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2ef43" }, { @@ -16871,6 +18017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16886,12 +18034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ef062" }, { @@ -16919,6 +18068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16934,12 +18085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf3dd1" }, { @@ -16967,6 +18119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -16982,12 +18136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab9f4" }, { @@ -17015,6 +18170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17030,12 +18187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f59085" }, { @@ -17063,6 +18221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17078,12 +18238,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45d2d2" }, { @@ -17111,6 +18272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17126,12 +18289,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b6834" }, { @@ -17159,6 +18323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17174,12 +18340,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd4e2a" }, { @@ -17207,6 +18374,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17222,12 +18391,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e1d91" }, { @@ -17255,6 +18425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17270,12 +18442,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acf2b0" }, { @@ -17303,6 +18476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17318,12 +18493,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a2a36" }, { @@ -17351,6 +18527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17366,12 +18544,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7651f3" }, { @@ -17399,6 +18578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17414,12 +18595,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13eaf0" }, { @@ -17447,6 +18629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17462,12 +18646,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf9ca8" }, { @@ -17495,6 +18680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17510,12 +18697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84ba9d" }, { @@ -17543,6 +18731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17558,12 +18748,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36c0cb" }, { @@ -17591,6 +18782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17606,12 +18799,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edd34a" }, { @@ -17639,6 +18833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17654,12 +18850,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f91e14" }, { @@ -17687,6 +18884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17702,12 +18901,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4156cf" }, { @@ -17735,6 +18935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17750,12 +18952,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6de21b" }, { @@ -17783,6 +18986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17798,12 +19003,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "321cb7" }, { @@ -17831,6 +19037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17846,12 +19054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5e5f1" }, { @@ -17879,6 +19088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17894,12 +19105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95272b" }, { @@ -17927,6 +19139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17942,12 +19156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5cac6" }, { @@ -17975,6 +19190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -17990,12 +19207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "523b76" }, { @@ -18023,6 +19241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18038,12 +19258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4224db" }, { @@ -18071,6 +19292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18086,12 +19309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cc0a6" }, { @@ -18119,6 +19343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18134,12 +19360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7f37b" }, { @@ -18167,6 +19394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18182,12 +19411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5c780" }, { @@ -18215,6 +19445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18230,12 +19462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7c503" }, { @@ -18263,6 +19496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18278,12 +19513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f57af7" }, { @@ -18311,6 +19547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18326,12 +19564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae3775" }, { @@ -18359,6 +19598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18374,12 +19615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8ea95" }, { @@ -18407,6 +19649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18422,12 +19666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57e648" }, { @@ -18455,6 +19700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18470,12 +19717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b3c0a" }, { @@ -18503,6 +19751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18518,12 +19768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91e890" }, { @@ -18551,6 +19802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18566,12 +19819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b94d12" }, { @@ -18599,6 +19853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18614,12 +19870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cf335" }, { @@ -18647,6 +19904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18662,12 +19921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c803ba" }, { @@ -18695,6 +19955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18710,12 +19972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf4f15" }, { @@ -18743,6 +20006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18758,12 +20023,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec38db" }, { @@ -18791,6 +20057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18806,12 +20074,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd130e" }, { @@ -18839,6 +20108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18854,12 +20125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f19e0" }, { @@ -18887,6 +20159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18902,12 +20176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e4505" }, { @@ -18935,6 +20210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18950,12 +20227,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29b842" }, { @@ -18983,6 +20261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -18998,12 +20278,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f69e10" }, { @@ -19031,6 +20312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19046,12 +20329,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97986a" }, { @@ -19079,6 +20363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19094,12 +20380,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdbb37" }, { @@ -19127,6 +20414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19142,12 +20431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3b3a9" }, { @@ -19175,6 +20465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19190,12 +20482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e21854" }, { @@ -19223,6 +20516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19238,12 +20533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba560e" }, { @@ -19271,6 +20567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19286,12 +20584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99d061" }, { @@ -19319,6 +20618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19334,12 +20635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4874bc" }, { @@ -19367,6 +20669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19382,12 +20686,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7001be" }, { @@ -19415,6 +20720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19430,12 +20737,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "814ce2" }, { @@ -19463,6 +20771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19478,12 +20788,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea4ef" }, { @@ -19511,6 +20822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19526,12 +20839,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26a3bf" }, { @@ -19559,6 +20873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19574,12 +20890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "080d4a" }, { @@ -19607,6 +20924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19622,12 +20941,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e72762" }, { @@ -19655,6 +20975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19670,12 +20992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16a89d" }, { @@ -19703,6 +21026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19718,12 +21043,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22d886" }, { @@ -19751,6 +21077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19766,12 +21094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e66002" }, { @@ -19799,6 +21128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19814,12 +21145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62cf25" }, { @@ -19847,6 +21179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19862,12 +21196,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f2668" }, { @@ -19895,6 +21230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19910,12 +21247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05d263" }, { @@ -19943,6 +21281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -19958,12 +21298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88392" }, { @@ -19991,6 +21332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20006,12 +21349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db90e2" }, { @@ -20039,6 +21383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20054,12 +21400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c1944" }, { @@ -20087,6 +21434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20102,12 +21451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca25bc" }, { @@ -20135,6 +21485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20150,12 +21502,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd7b97" }, { @@ -20183,6 +21536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20198,12 +21553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46812e" }, { @@ -20231,6 +21587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20246,12 +21604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "213853" }, { @@ -20279,6 +21638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20294,12 +21655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "344d98" }, { @@ -20327,6 +21689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20342,12 +21706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97781f" }, { @@ -20375,6 +21740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20390,12 +21757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e808d" }, { @@ -20423,6 +21791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20438,12 +21808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7dbac" }, { @@ -20471,6 +21842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20486,12 +21859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d3a27" }, { @@ -20519,6 +21893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20534,12 +21910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6f8d1" }, { @@ -20567,6 +21944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20582,12 +21961,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "812175" }, { @@ -20615,6 +21995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20630,12 +22012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1165db" }, { @@ -20663,6 +22046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20678,12 +22063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6c260" }, { @@ -20711,6 +22097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20726,12 +22114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "033a35" }, { @@ -20759,6 +22148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20774,12 +22165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6527a4" }, { @@ -20807,6 +22199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20822,12 +22216,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "819aee" }, { @@ -20855,6 +22250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20870,12 +22267,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aec357" }, { @@ -20903,6 +22301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20918,12 +22318,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acce72" }, { @@ -20951,6 +22352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -20966,12 +22369,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc2629" }, { @@ -20999,6 +22403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21014,12 +22420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0db666" }, { @@ -21047,6 +22454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21062,12 +22471,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "863f1a" }, { @@ -21095,6 +22505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21110,12 +22522,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6945f7" }, { @@ -21143,6 +22556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21158,12 +22573,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c56d3" }, { @@ -21191,6 +22607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21206,12 +22624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b9e8b" }, { @@ -21239,6 +22658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21254,12 +22675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba1460" }, { @@ -21287,6 +22709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21302,12 +22726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d6e57" }, { @@ -21335,6 +22760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21350,12 +22777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1258c6" }, { @@ -21383,6 +22811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21398,12 +22828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb501b" }, { @@ -21431,6 +22862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21446,12 +22879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a53344" }, { @@ -21479,6 +22913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21494,12 +22930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c959c" }, { @@ -21527,6 +22964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21542,12 +22981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e1b" }, { @@ -21575,6 +23015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21590,12 +23032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67e006" }, { @@ -21623,6 +23066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21638,12 +23083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eafd12" }, { @@ -21671,6 +23117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21686,12 +23134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a13ca4" }, { @@ -21719,6 +23168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21734,12 +23185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc80ab" }, { @@ -21767,6 +23219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21782,12 +23236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e68658" }, { @@ -21815,6 +23270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21830,12 +23287,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2237f4" }, { @@ -21863,6 +23321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21878,12 +23338,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecfa42" }, { @@ -21911,6 +23372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21926,12 +23389,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9df9df" }, { @@ -21959,6 +23423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -21974,12 +23440,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77f92c" }, { @@ -22007,6 +23474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22022,12 +23491,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62d930" }, { @@ -22055,6 +23525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22070,12 +23542,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fb446" }, { @@ -22103,6 +23576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22118,12 +23593,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "423d46" }, { @@ -22151,6 +23627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22166,12 +23644,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83b588" }, { @@ -22199,6 +23678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22214,12 +23695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e674e8" }, { @@ -22247,6 +23729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22262,12 +23746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f474b1" }, { @@ -22295,6 +23780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22310,12 +23797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66d810" }, { @@ -22343,6 +23831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22358,12 +23848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c98ff" }, { @@ -22391,6 +23882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22406,12 +23899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d83baf" }, { @@ -22439,6 +23933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22454,12 +23950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "283e54" }, { @@ -22487,6 +23984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22502,12 +24001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2508d" }, { @@ -22535,6 +24035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22550,12 +24052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bea17" }, { @@ -22583,6 +24086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22598,12 +24103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5cd622" }, { @@ -22631,6 +24137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22646,12 +24154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2cfa4f" }, { @@ -22679,6 +24188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22694,12 +24205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3984" }, { @@ -22727,6 +24239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22742,12 +24256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2acced" }, { @@ -22775,6 +24290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22790,12 +24307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c901b" }, { @@ -22823,6 +24341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22838,12 +24358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b265c4" }, { @@ -22871,6 +24392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22886,12 +24409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f66dd9" }, { @@ -22919,6 +24443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22934,12 +24460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6aae86" }, { @@ -22967,6 +24494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -22982,12 +24511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da227d" }, { @@ -23015,6 +24545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23030,12 +24562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45bdf0" }, { @@ -23063,6 +24596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23078,12 +24613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c17f2c" }, { @@ -23111,6 +24647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23126,12 +24664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a14a11" }, { @@ -23159,6 +24698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23174,12 +24715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffdeb5" }, { @@ -23207,6 +24749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23222,12 +24766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50fb37" }, { @@ -23255,6 +24800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23270,12 +24817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a4db3" }, { @@ -23303,6 +24851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23318,12 +24868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "968a26" }, { @@ -23351,6 +24902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23366,12 +24919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2210c1" }, { @@ -23399,6 +24953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23414,12 +24970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa1d67" }, { @@ -23447,6 +25004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23462,12 +25021,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "367aac" }, { @@ -23495,6 +25055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23510,12 +25072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86feae" }, { @@ -23543,6 +25106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23558,12 +25123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1bc300" }, { @@ -23591,6 +25157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23606,12 +25174,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3e55b" }, { @@ -23639,6 +25208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23654,12 +25225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d0de54" }, { @@ -23687,6 +25259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23702,12 +25276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ddee79" }, { @@ -23735,6 +25310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23750,12 +25327,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "679b13" }, { @@ -23783,6 +25361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23798,12 +25378,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dffe4a" }, { @@ -23831,6 +25412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23846,12 +25429,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4dbc7" }, { @@ -23879,6 +25463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23894,12 +25480,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff3f17" }, { @@ -23927,6 +25514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23942,12 +25531,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37a76b" }, { @@ -23975,6 +25565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -23990,12 +25582,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0f851" }, { @@ -24023,6 +25616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24038,12 +25633,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61fd07" }, { @@ -24071,6 +25667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24086,12 +25684,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d4749" }, { @@ -24119,6 +25718,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24134,12 +25735,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a90a4" }, { @@ -24167,6 +25769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24182,12 +25786,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66d5a3" }, { @@ -24215,6 +25820,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24230,12 +25837,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7d9b5" }, { @@ -24263,6 +25871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24278,12 +25888,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "726d1d" }, { @@ -24311,6 +25922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24326,12 +25939,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eeb330" }, { @@ -24359,6 +25973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24374,12 +25990,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a9021" }, { @@ -24407,6 +26024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24422,12 +26041,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31d087" }, { @@ -24455,6 +26075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24470,12 +26092,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88d3c0" }, { @@ -24503,6 +26126,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24518,12 +26143,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25ad44" }, { @@ -24551,6 +26177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24566,12 +26194,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba2ae1" }, { @@ -24599,6 +26228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24614,12 +26245,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ac19" }, { @@ -24647,6 +26279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24662,12 +26296,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8a324" }, { @@ -24695,6 +26330,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24710,12 +26347,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "324e49" }, { @@ -24743,6 +26381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24758,12 +26398,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6aba5" }, { @@ -24791,6 +26432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24806,12 +26449,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a33470" }, { @@ -24839,6 +26483,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24854,12 +26500,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1d7fa" }, { @@ -24887,6 +26534,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24902,12 +26551,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fe723" }, { @@ -24935,6 +26585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24950,12 +26602,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dbc95" }, { @@ -24983,6 +26636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -24998,12 +26653,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8380d" }, { @@ -25031,6 +26687,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25046,12 +26704,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9aee7f" }, { @@ -25079,6 +26738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25094,12 +26755,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37a2b5" }, { @@ -25127,6 +26789,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25142,12 +26806,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d946d9" }, { @@ -25175,6 +26840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25190,12 +26857,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02777c" }, { @@ -25223,6 +26891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25238,12 +26908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68744b" }, { @@ -25271,6 +26942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25286,12 +26959,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "683937" }, { @@ -25319,6 +26993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25334,12 +27010,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "833305" }, { @@ -25367,6 +27044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25382,12 +27061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e4a82" }, { @@ -25415,6 +27095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25430,12 +27112,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f8539" }, { @@ -25463,6 +27146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25478,12 +27163,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbfe9b" }, { @@ -25511,6 +27197,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25526,12 +27214,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35166c" }, { @@ -25559,6 +27248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25574,12 +27265,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1aedf" }, { @@ -25607,6 +27299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25622,12 +27316,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ad46b" }, { @@ -25655,6 +27350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25670,12 +27367,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70ad8" }, { @@ -25703,6 +27401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25718,12 +27418,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a0df6" }, { @@ -25751,6 +27452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25766,12 +27469,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64e131" }, { @@ -25799,6 +27503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25814,12 +27520,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5690d1" }, { @@ -25847,6 +27554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25862,12 +27571,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bae15" }, { @@ -25895,6 +27605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25910,12 +27622,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "587589" }, { @@ -25943,6 +27656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -25958,12 +27673,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff9f23" }, { @@ -25991,6 +27707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26006,12 +27724,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d35aa" }, { @@ -26039,6 +27758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26054,12 +27775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "170538" }, { @@ -26087,6 +27809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26102,12 +27826,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5115d9" }, { @@ -26135,6 +27860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26150,12 +27877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "215cec" }, { @@ -26183,6 +27911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26198,12 +27928,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ff641" }, { @@ -26231,6 +27962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26246,12 +27979,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80628f" }, { @@ -26279,6 +28013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26294,12 +28030,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "090fcf" }, { @@ -26327,6 +28064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26342,12 +28081,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b6ab5" }, { @@ -26375,6 +28115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26390,12 +28132,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f91ce" }, { @@ -26423,6 +28166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26438,12 +28183,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdfd9f" }, { @@ -26471,6 +28217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26486,12 +28234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e58d2a" }, { @@ -26519,6 +28268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26534,12 +28285,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70772b" }, { @@ -26567,6 +28319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26582,12 +28336,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "439af2" }, { @@ -26615,6 +28370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26630,12 +28387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4dd3d" }, { @@ -26663,6 +28421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26678,12 +28438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27446e" }, { @@ -26711,6 +28472,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26726,12 +28489,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3ce16" }, { @@ -26759,6 +28523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26774,12 +28540,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08e5a6" }, { @@ -26807,6 +28574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26822,12 +28591,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30f860" }, { @@ -26855,6 +28625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26870,12 +28642,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b0193" }, { @@ -26903,6 +28676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26918,12 +28693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "275dc3" }, { @@ -26951,6 +28727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -26966,12 +28744,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d48b25" }, { @@ -26999,6 +28778,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27014,12 +28795,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65b30d" }, { @@ -27047,6 +28829,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27062,12 +28846,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fe780" }, { @@ -27095,6 +28880,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27110,12 +28897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd0ac1" }, { @@ -27143,6 +28931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27158,12 +28948,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a4de" }, { @@ -27191,6 +28982,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27206,12 +28999,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e567ff" }, { @@ -27239,6 +29033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27254,12 +29050,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a33b2" }, { @@ -27287,6 +29084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27302,12 +29101,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "864fb6" }, { @@ -27335,6 +29135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27350,12 +29152,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc3b07" }, { @@ -27383,6 +29186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27398,12 +29203,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4d436" }, { @@ -27431,6 +29237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27446,12 +29254,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "869d4c" }, { @@ -27479,6 +29288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27494,12 +29305,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfd48b" }, { @@ -27527,6 +29339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27542,12 +29356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dffa9d" }, { @@ -27575,6 +29390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27590,12 +29407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1339b0" }, { @@ -27623,6 +29441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27638,12 +29458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f4db2" }, { @@ -27671,6 +29492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27686,12 +29509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14e212" }, { @@ -27719,6 +29543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27734,12 +29560,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03c6a7" }, { @@ -27767,6 +29594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27782,12 +29611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "276477" }, { @@ -27815,6 +29645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27830,12 +29662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce1b89" }, { @@ -27863,6 +29696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27878,12 +29713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9bb2a" }, { @@ -27911,6 +29747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27926,12 +29764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3586e6" }, { @@ -27959,6 +29798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -27974,12 +29815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecd087" }, { @@ -28007,6 +29849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28022,12 +29866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9afe23" }, { @@ -28055,6 +29900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28070,12 +29917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "54832d" }, { @@ -28103,6 +29951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28118,12 +29968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e5cd2" }, { @@ -28151,6 +30002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28166,12 +30019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf5a5f" }, { @@ -28199,6 +30053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28214,12 +30070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b0dcf" }, { @@ -28247,6 +30104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28262,12 +30121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8298f" }, { @@ -28295,6 +30155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28310,12 +30172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d753d7" }, { @@ -28343,6 +30206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28358,12 +30223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "695bb7" }, { @@ -28391,6 +30257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28406,12 +30274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "831b6b" }, { @@ -28439,6 +30308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28454,12 +30325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c46da" }, { @@ -28487,6 +30359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28502,12 +30376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe0cc0" }, { @@ -28535,6 +30410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28550,12 +30427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d87128" }, { @@ -28583,6 +30461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28598,12 +30478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "016b72" }, { @@ -28631,6 +30512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28646,12 +30529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "249d83" }, { @@ -28679,6 +30563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28694,12 +30580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba16cb" }, { @@ -28727,6 +30614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28742,12 +30631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06228f" }, { @@ -28775,6 +30665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28790,12 +30682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b492cb" }, { @@ -28823,6 +30716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28838,12 +30733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a00fca" }, { @@ -28871,6 +30767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28886,12 +30784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86bbeb" }, { @@ -28919,6 +30818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28934,12 +30835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdd6aa" }, { @@ -28967,6 +30869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -28982,12 +30886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1433eb" }, { @@ -29015,6 +30920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29030,12 +30937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d362c" }, { @@ -29063,6 +30971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29078,12 +30988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c17498" }, { @@ -29111,6 +31022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29126,12 +31039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88ee43" }, { @@ -29159,6 +31073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29174,12 +31090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f0b34" }, { @@ -29207,6 +31124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29222,12 +31141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "891282" }, { @@ -29255,6 +31175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29270,12 +31192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d12359" }, { @@ -29303,6 +31226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29318,12 +31243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5be8b" }, { @@ -29351,6 +31277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29366,12 +31294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fae20" }, { @@ -29399,6 +31328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29414,12 +31345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ea716" }, { @@ -29447,6 +31379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29462,12 +31396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a927c" }, { @@ -29495,6 +31430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29510,12 +31447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45c582" }, { @@ -29543,6 +31481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29558,12 +31498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f7289" }, { @@ -29591,6 +31532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29606,12 +31549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ee50e" }, { @@ -29639,6 +31583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29654,12 +31600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "536b52" }, { @@ -29687,6 +31634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29702,12 +31651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9683d0" }, { @@ -29735,6 +31685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29750,12 +31702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "358387" }, { @@ -29783,6 +31736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29798,12 +31753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3add54" }, { @@ -29831,6 +31787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29846,12 +31804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "565b6b" }, { @@ -29879,6 +31838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29894,12 +31855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cd2bd" }, { @@ -29927,6 +31889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29942,12 +31906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2e026" }, { @@ -29975,6 +31940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -29990,12 +31957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13413d" }, { @@ -30023,6 +31991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30038,12 +32008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f3c8e" }, { @@ -30071,6 +32042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30086,12 +32059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5558f1" }, { @@ -30119,6 +32093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30134,12 +32110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9393ec" }, { @@ -30167,6 +32144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30182,12 +32161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98fc57" }, { @@ -30215,6 +32195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30230,12 +32212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "848d9c" }, { @@ -30263,6 +32246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30278,12 +32263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30f90b" }, { @@ -30311,6 +32297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30326,12 +32314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da207b" }, { @@ -30359,6 +32348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30374,12 +32365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "097dcc" }, { @@ -30407,6 +32399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30422,12 +32416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a20887" }, { @@ -30455,6 +32450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30470,12 +32467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dce44" }, { @@ -30503,6 +32501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30518,12 +32518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e27b3c" }, { @@ -30551,6 +32552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30566,12 +32569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9591ac" }, { @@ -30599,6 +32603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30614,12 +32620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1ad65" }, { @@ -30647,6 +32654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30662,12 +32671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c33a10" }, { @@ -30695,6 +32705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30710,12 +32722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c026c9" }, { @@ -30743,6 +32756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30758,12 +32773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb9dbb" }, { @@ -30791,6 +32807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30806,12 +32824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "569b06" }, { @@ -30839,6 +32858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30854,12 +32875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a33acd" }, { @@ -30887,6 +32909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30902,12 +32926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fec31" }, { @@ -30935,6 +32960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30950,12 +32977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da46e0" }, { @@ -30983,6 +33011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -30998,12 +33028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbd11b" }, { @@ -31031,6 +33062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31046,12 +33079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aafc17" }, { @@ -31079,6 +33113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31094,12 +33130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fe6de" }, { @@ -31127,6 +33164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31142,12 +33181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41a9ec" }, { @@ -31175,6 +33215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31190,12 +33232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8aa0c3" }, { @@ -31223,6 +33266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31238,12 +33283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2236f6" }, { @@ -31271,6 +33317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31286,12 +33334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c859f" }, { @@ -31319,6 +33368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31334,12 +33385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "050ba1" }, { @@ -31367,6 +33419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31382,12 +33436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcdcea" }, { @@ -31415,6 +33470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31430,12 +33487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc3451" }, { @@ -31463,6 +33521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31478,12 +33538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7bc995" }, { @@ -31511,6 +33572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31526,12 +33589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e103" }, { @@ -31559,6 +33623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31574,12 +33640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef7c11" }, { @@ -31607,6 +33674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31622,12 +33691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a4673" }, { @@ -31655,6 +33725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31670,12 +33742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ec1a2" }, { @@ -31703,6 +33776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31718,12 +33793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "493b03" }, { @@ -31751,6 +33827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31766,12 +33844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9956d5" }, { @@ -31799,6 +33878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31814,12 +33895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da7c01" }, { @@ -31847,6 +33929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31862,12 +33946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68fce2" }, { @@ -31895,6 +33980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31910,12 +33997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3bd71" }, { @@ -31943,6 +34031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -31958,12 +34048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c9617" }, { @@ -31991,6 +34082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32006,12 +34099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e425d0" }, { @@ -32039,6 +34133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32054,12 +34150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6af13" }, { @@ -32087,6 +34184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32102,12 +34201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90bf93" }, { @@ -32135,6 +34235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32150,12 +34252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f9ab1" }, { @@ -32183,6 +34286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32198,12 +34303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d708d9" }, { @@ -32231,6 +34337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32246,12 +34354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0e425" }, { @@ -32279,6 +34388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32294,12 +34405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acd0da" }, { @@ -32327,6 +34439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32342,12 +34456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66b7d5" }, { @@ -32375,6 +34490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32390,12 +34507,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c3dd0" }, { @@ -32423,6 +34541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32438,12 +34558,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d74f6" }, { @@ -32471,6 +34592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32486,12 +34609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f1b48" }, { @@ -32519,6 +34643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32534,12 +34660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "334f03" }, { @@ -32567,6 +34694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32582,12 +34711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fa7fa" }, { @@ -32615,6 +34745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32630,12 +34762,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eaaee9" }, { @@ -32663,6 +34796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32678,12 +34813,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f03baa" }, { @@ -32711,6 +34847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32726,12 +34864,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80b7c6" }, { @@ -32759,6 +34898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32774,12 +34915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "378e84" }, { @@ -32807,6 +34949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32822,12 +34966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dd911" }, { @@ -32855,6 +35000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32870,12 +35017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "620b6e" }, { @@ -32903,6 +35051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32918,12 +35068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f60263" }, { @@ -32951,6 +35102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -32966,12 +35119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "230835" }, { @@ -32999,6 +35153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33014,12 +35170,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b40b98" }, { @@ -33047,6 +35204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33062,12 +35221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "296dc8" }, { @@ -33095,6 +35255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33110,12 +35272,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08bdf1" }, { @@ -33143,6 +35306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33158,12 +35323,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f91fd9" }, { @@ -33191,6 +35357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33206,12 +35374,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1a687" }, { @@ -33239,6 +35408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33254,12 +35425,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7307c4" }, { @@ -33287,6 +35459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33302,12 +35476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27e7b3" }, { @@ -33335,6 +35510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33350,12 +35527,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2877e" }, { @@ -33383,6 +35561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33398,12 +35578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -33431,6 +35612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33446,12 +35629,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eaa415" }, { @@ -33479,6 +35663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33494,12 +35680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82775a" }, { @@ -33527,6 +35714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33542,12 +35731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2e27e" }, { @@ -33575,6 +35765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33590,12 +35782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59d89b" }, { @@ -33623,6 +35816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33638,12 +35833,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa61ba" }, { @@ -33671,6 +35867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33686,12 +35884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90a106" }, { @@ -33719,6 +35918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33734,12 +35935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58c435" }, { @@ -33767,6 +35969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33782,12 +35986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06322f" }, { @@ -33815,6 +36020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33830,12 +36037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23c3e5" }, { @@ -33863,6 +36071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33878,12 +36088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c958e" }, { @@ -33911,6 +36122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33926,12 +36139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c077bf" }, { @@ -33959,6 +36173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -33974,12 +36190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18927e" }, { @@ -34007,6 +36224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34022,12 +36241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0edef1" }, { @@ -34055,6 +36275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34070,12 +36292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60b353" }, { @@ -34103,6 +36326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34118,12 +36343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf1d4e" }, { @@ -34151,6 +36377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34166,12 +36394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d971e" }, { @@ -34199,6 +36428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34214,12 +36445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ada0a" }, { @@ -34247,6 +36479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34262,12 +36496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0027f2" }, { @@ -34295,6 +36530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34310,12 +36547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "812685" }, { @@ -34343,6 +36581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34358,12 +36598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f08934" }, { @@ -34391,6 +36632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34406,12 +36649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d24531" }, { @@ -34439,6 +36683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34454,12 +36700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db2c81" }, { @@ -34487,6 +36734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34502,12 +36751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bcf406" }, { @@ -34535,6 +36785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34550,12 +36802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e80bd8" }, { @@ -34583,6 +36836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34598,12 +36853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce3a1a" }, { @@ -34631,6 +36887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34646,12 +36904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e39c2" }, { @@ -34679,6 +36938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34694,12 +36955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2663c" }, { @@ -34727,6 +36989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34742,12 +37006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1890d0" }, { @@ -34775,6 +37040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34790,12 +37057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "017821" }, { @@ -34823,6 +37091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34838,12 +37108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e57b8" }, { @@ -34871,6 +37142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34886,12 +37159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd94e3" }, { @@ -34919,6 +37193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34934,12 +37210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46187b" }, { @@ -34967,6 +37244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -34982,12 +37261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5cb973" }, { @@ -35015,6 +37295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35030,12 +37312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7686cb" }, { @@ -35063,6 +37346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35078,12 +37363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8705c" }, { @@ -35111,6 +37397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35126,12 +37414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6656ad" }, { @@ -35159,6 +37448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35174,12 +37465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe68c6" }, { @@ -35207,6 +37499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35222,12 +37516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "857238" }, { @@ -35255,6 +37550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35270,12 +37567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7a9ab" }, { @@ -35303,6 +37601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35318,12 +37618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c607c5" }, { @@ -35351,6 +37652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35366,12 +37669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd9c56" }, { @@ -35399,6 +37703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35414,12 +37720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "051742" }, { @@ -35447,6 +37754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35462,12 +37771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6eceef" }, { @@ -35495,6 +37805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35510,12 +37822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b42b6" }, { @@ -35543,6 +37856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35558,12 +37873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07350b" }, { @@ -35591,6 +37907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35606,12 +37924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab37af" }, { @@ -35639,6 +37958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35654,12 +37975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f871b" }, { @@ -35687,6 +38009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35702,12 +38026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e9213" }, { @@ -35735,6 +38060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35750,12 +38077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e454c3" }, { @@ -35783,6 +38111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35798,12 +38128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4eb231" }, { @@ -35831,6 +38162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35846,12 +38179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d6728" }, { @@ -35879,6 +38213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35894,12 +38230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7358f" }, { @@ -35927,6 +38264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35942,12 +38281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b80459" }, { @@ -35975,6 +38315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -35990,12 +38332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb640d" }, { @@ -36023,6 +38366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36038,12 +38383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f91af" }, { @@ -36071,6 +38417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36086,12 +38434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -36119,6 +38468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36134,12 +38485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a305e" }, { @@ -36167,6 +38519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36182,12 +38536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a56ffe" }, { @@ -36215,6 +38570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36230,12 +38587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98c5af" }, { @@ -36263,6 +38621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36278,12 +38638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -36311,6 +38672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36326,12 +38689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "731d2a" }, { @@ -36359,6 +38723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36374,12 +38740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f93ea8" }, { @@ -36407,6 +38774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36422,12 +38791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f33be" }, { @@ -36455,6 +38825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36470,12 +38842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad18a6" }, { @@ -36503,6 +38876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36518,12 +38893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63f145" }, { @@ -36551,6 +38927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36566,12 +38944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d27d12" }, { @@ -36599,6 +38978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36614,12 +38995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9da37c" }, { @@ -36647,6 +39029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36662,12 +39046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07bc04" }, { @@ -36695,6 +39080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36710,12 +39097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb6165" }, { @@ -36743,6 +39131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36758,12 +39148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "234ff6" }, { @@ -36791,6 +39182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36806,12 +39199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2767a" }, { @@ -36839,6 +39233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36854,12 +39250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d25b1" }, { @@ -36887,6 +39284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36902,12 +39301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "599209" }, { @@ -36935,6 +39335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36950,12 +39352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4bac6" }, { @@ -36983,6 +39386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -36998,12 +39403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "408cb5" }, { @@ -37031,6 +39437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37046,12 +39454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "256da2" }, { @@ -37079,6 +39488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37094,12 +39505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e0530" }, { @@ -37127,6 +39539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37142,12 +39556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73bccf" }, { @@ -37175,6 +39590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37190,12 +39607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1fd61" }, { @@ -37223,6 +39641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37238,12 +39658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8c891" }, { @@ -37271,6 +39692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37286,12 +39709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8c873" }, { @@ -37319,6 +39743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37334,12 +39760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e93fd" }, { @@ -37367,6 +39794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37382,12 +39811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ae3ce" }, { @@ -37415,6 +39845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37430,12 +39862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44334c" }, { @@ -37463,6 +39896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37478,12 +39913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b18b33" }, { @@ -37511,6 +39947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37526,12 +39964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea0fa1" }, { @@ -37559,6 +39998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37574,12 +40015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6efe6" }, { @@ -37607,6 +40049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37622,12 +40066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "194adb" }, { @@ -37655,6 +40100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37670,12 +40117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b2550" }, { @@ -37703,6 +40151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37718,12 +40168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "312d38" }, { @@ -37751,6 +40202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37766,12 +40219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82d62c" }, { @@ -37799,6 +40253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37814,12 +40270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "102fad" }, { @@ -37847,6 +40304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37862,12 +40321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "078efb" }, { @@ -37895,6 +40355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37910,12 +40372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80acd2" }, { @@ -37943,6 +40406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -37958,12 +40423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f54e7" }, { @@ -37991,6 +40457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38006,12 +40474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fba3b" }, { @@ -38039,6 +40508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38054,12 +40525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc6e4d" }, { @@ -38087,6 +40559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38102,12 +40576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "092e92" }, { @@ -38135,6 +40610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38150,12 +40627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0dff3" }, { @@ -38183,6 +40661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38198,12 +40678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be4abe" }, { @@ -38231,6 +40712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38246,12 +40729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c922f" }, { @@ -38279,6 +40763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38294,12 +40780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e470cd" }, { @@ -38327,6 +40814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38342,12 +40831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4ad29" }, { @@ -38375,6 +40865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38390,12 +40882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6506d" }, { @@ -38423,6 +40916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38438,12 +40933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "593deb" }, { @@ -38471,6 +40967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38486,12 +40984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8b7ad" }, { @@ -38519,6 +41018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38534,12 +41035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99989c" }, { @@ -38567,6 +41069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38582,12 +41086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" }, { @@ -38615,6 +41120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38630,12 +41137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe2db3" }, { @@ -38663,6 +41171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38678,12 +41188,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bc46e" }, { @@ -38711,6 +41222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38726,12 +41239,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2d211" }, { @@ -38759,6 +41273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38774,12 +41290,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75eca5" }, { @@ -38807,6 +41324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38822,12 +41341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bec05" }, { @@ -38855,6 +41375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38870,12 +41392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d4eb9" }, { @@ -38903,6 +41426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38918,12 +41443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c3aea" }, { @@ -38951,6 +41477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -38966,12 +41494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edd6c4" }, { @@ -38999,6 +41528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39014,12 +41545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b51688" }, { @@ -39047,6 +41579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39062,12 +41596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1e098" }, { @@ -39095,6 +41630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39110,12 +41647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e5b03" }, { @@ -39143,6 +41681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39158,12 +41698,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d88407" }, { @@ -39191,6 +41732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39206,12 +41749,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e35bc2" }, { @@ -39239,6 +41783,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39254,12 +41800,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "600a3c" }, { @@ -39287,6 +41834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39302,12 +41851,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be33f5" }, { @@ -39335,6 +41885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39350,12 +41902,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19ab7c" }, { @@ -39383,6 +41936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39398,12 +41953,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8837ff" }, { @@ -39431,6 +41987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39446,12 +42004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1ce8e" }, { @@ -39479,6 +42038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39494,12 +42055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42806b" }, { @@ -39527,6 +42089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39542,12 +42106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f03306" }, { @@ -39575,6 +42140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39590,12 +42157,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66197b" }, { @@ -39623,6 +42191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39638,12 +42208,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f96ed0" }, { @@ -39671,6 +42242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39686,12 +42259,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f14dce" }, { @@ -39719,6 +42293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39734,12 +42310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d45f10" }, { @@ -39767,6 +42344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39782,12 +42361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb943f" }, { @@ -39815,6 +42395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39830,12 +42412,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6714b2" }, { @@ -39863,6 +42446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39878,12 +42463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f295d9" }, { @@ -39911,6 +42497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39926,12 +42514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d30a1" }, { @@ -39959,6 +42548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -39974,12 +42565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f903e" }, { @@ -40007,6 +42599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40022,12 +42616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6720ef" }, { @@ -40055,6 +42650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40070,12 +42667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df4a7" }, { @@ -40103,6 +42701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40118,12 +42718,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22aed2" }, { @@ -40151,6 +42752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40166,12 +42769,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ff610" }, { @@ -40199,6 +42803,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40214,12 +42820,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1206b" }, { @@ -40247,6 +42854,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40262,12 +42871,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bed6a" }, { @@ -40295,6 +42905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40310,12 +42922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bf831" }, { @@ -40343,6 +42956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40358,12 +42973,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d253a6" }, { @@ -40391,6 +43007,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40406,12 +43024,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b04c8e" }, { @@ -40439,6 +43058,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40454,12 +43075,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f7ecc" }, { @@ -40487,6 +43109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40502,12 +43126,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7b748" }, { @@ -40535,6 +43160,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40550,12 +43177,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74840a" }, { @@ -40583,6 +43211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40598,12 +43228,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf96b9" }, { @@ -40631,6 +43262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40646,12 +43279,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfb393" }, { @@ -40679,6 +43313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40694,12 +43330,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ce113" }, { @@ -40727,6 +43364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40742,12 +43381,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc674e" }, { @@ -40775,6 +43415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40790,12 +43432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d71f11" }, { @@ -40823,6 +43466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40838,12 +43483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c76d9" }, { @@ -40871,6 +43517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40886,12 +43534,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5630c2" } ], @@ -40917,14 +43566,16 @@ "Description": "", "GMNotes": "", "ColorDiffuse": { - "r": 0.374544233, - "g": 0.374544233, - "b": 0.374544233 + "r": 0.374544173, + "g": 0.374544173, + "b": 0.374544173 }, "Locked": true, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40939,12 +43590,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "\r\n\r\nfunction onSave()\r\n saved_data = JSON.encode({tid=tableImageData, cd=checkData})\r\n --saved_data = \"\"\r\n return saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n --Loads the tracking for if the game has started yet\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n tableImageData = loaded_data.tid\r\n checkData = loaded_data.cd\r\n else\r\n tableImageData = {}\r\n checkData = {move=false, scale=false}\r\n end\r\n\r\n --Disables interactable status of objects with GUID in list\r\n for _, guid in ipairs(ref_noninteractable) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj then obj.interactable = false end\r\n end\r\n\r\n\r\n\r\n obj_surface = getObjectFromGUID(\"721ba2\")\r\n\r\n\r\n controlActive = false\r\n createOpenCloseButton()\r\nend\r\n\r\n\r\n\r\n--Activation/deactivation of control panel\r\n\r\n\r\n\r\n--Activated by clicking on\r\nfunction click_toggleControl(_, color)\r\n if permissionCheck(color) then\r\n if not controlActive then\r\n --Activate control panel\r\n controlActive = true\r\n self.clearButtons()\r\n createOpenCloseButton()\r\n createSurfaceInput()\r\n createSurfaceButtons()\r\n\r\n else\r\n --Deactivate control panel\r\n controlActive = false\r\n self.clearButtons()\r\n self.clearInputs()\r\n createOpenCloseButton()\r\n\r\n end\r\n end\r\nend\r\n\r\n\r\n\r\n\r\n--Table surface control\r\n\r\n\r\n\r\n--Changes table surface\r\nfunction click_applySurface(_, color)\r\n if permissionCheck(color) then\r\n updateSurface()\r\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\r\n end\r\nend\r\n\r\n--Updates surface from the values in the input field\r\nfunction updateSurface()\r\n local customInfo = obj_surface.getCustomObject()\r\n customInfo.image = self.getInputs()[1].value\r\n obj_surface.setCustomObject(customInfo)\r\n obj_surface = obj_surface.reload()\r\nend\r\n\r\n\r\n\r\n--Information gathering\r\n\r\n\r\n\r\n--Checks if a color is promoted or host\r\nfunction permissionCheck(color)\r\n if Player[color].host==true or Player[color].promoted==true then\r\n return true\r\n else\r\n return false\r\n end\r\nend\r\n\r\n--Locates a string saved within memory file\r\nfunction findInImageDataIndex(...)\r\n for _, str in ipairs({...}) do\r\n for i, v in ipairs(tableImageData) do\r\n if v.url == str or v.name == str then\r\n return i\r\n end\r\n end\r\n end\r\n return nil\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n\r\n--Locates a button with a helper function\r\nfunction findButton(obj, func)\r\n if func==nil then error(\"No func supplied to findButton\") end\r\n for _, v in ipairs(obj.getButtons()) do\r\n if func(v) then\r\n return v\r\n end\r\n end\r\n return nil\r\nend\r\n\r\n\r\n\r\n--Creation of buttons/inputs\r\n\r\n\r\n\r\nfunction createOpenCloseButton()\r\n local tooltip = \"Open Playmat Panel\"\r\n if controlActive then\r\n tooltip = \"Close Playmat Panel\"\r\n end\r\n self.createButton({\r\n click_function=\"click_toggleControl\", function_owner=self,\r\n position={0,0,0}, rotation={-45,0,0}, height=1500, width=1500,\r\n color={1,1,1,0}, tooltip=tooltip\r\n })\r\nend\r\n\r\nfunction createSurfaceInput()\r\n local currentURL = obj_surface.getCustomObject().diffuse\r\n local nickname = \"\"\r\n if findInImageDataIndex(currentURL) ~= nil then\r\n nickname = tableImageData[findInImageDataIndex(currentURL)].name\r\n end\r\n\r\n self.createInput({\r\n label=\"URL\", input_function=\"none\", function_owner=self,\r\n alignment=3, position={0,0.15,3}, height=224, width=4000,\r\n font_size=200, tooltip=\"Enter URL for playmat image\",\r\n value=currentURL\r\n })\r\nend\r\n\r\nfunction createSurfaceButtons()\r\n --Label\r\n self.createButton({\r\n label=\"Playmat Image Swapper\", click_function=\"none\",\r\n position={0,0.15,2.2}, height=0, width=0, font_size=300, font_color={1,1,1}\r\n })\r\n --Functional\r\n self.createButton({\r\n label=\"Apply Image\\nTo Playmat\", click_function=\"click_applySurface\",\r\n function_owner=self, tooltip=\"Apply URL as playmat image\",\r\n position={0,0.15,4}, height=440, width=1400, font_size=200,\r\n })\r\n\r\nend\r\n\r\n\r\n\r\n\r\n\r\n\r\n--Data tables\r\n\r\n\r\n\r\n\r\nref_noninteractable = {\r\n \"afc863\",\"c8edca\",\"393bf7\",\"12c65e\",\"f938a2\",\"9f95fd\",\"35b95f\",\r\n \"5af8f2\",\"4ee1f2\",\"bd69bd\"\r\n}\r\n\r\nref_playerColor = {\r\n \"White\", \"Brown\", \"Red\", \"Orange\", \"Yellow\",\r\n \"Green\", \"Teal\", \"Blue\", \"Purple\", \"Pink\", \"Black\"\r\n}\r\n\r\n--Dummy function, absorbs unwanted triggers\r\nfunction none() end", "LuaScriptState": "{\"cd\":{\"move\":false,\"scale\":false},\"tid\":[]}", + "XmlUI": "", "GUID": "b7b45b" }, { @@ -40972,6 +43624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -40990,9 +43644,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2eca7c" }, { @@ -41020,6 +43674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -41038,16 +43694,16 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb09d4" }, { "Name": "3DText", "Transform": { - "posX": -48.92123, - "posY": 1.25340056, + "posX": -48.9212265, + "posY": 1.25340044, "posZ": 71.39141, "rotX": 90.0, "rotY": 90.0000458, @@ -41068,6 +43724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -41083,9 +43741,9 @@ }, "fontSize": 64 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65eb7e" }, { @@ -41113,6 +43771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -41127,12 +43787,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "DEBUG = false\nMIN_VALUE = 1\nMAX_VALUE = 4\n\nfunction onload(saved_data)\n self.interactable = DEBUG\n light_mode = false\n val = 0\n\n if saved_data ~= \"\" then\n local loaded_data = JSON.decode(saved_data)\n light_mode = loaded_data[1]\n val = loaded_data[2]\n end\n\n createAll()\nend\n\nfunction updateSave()\n local data_to_save = {light_mode, val}\n saved_data = JSON.encode(data_to_save)\n self.script_state = saved_data\nend\n\nfunction createAll()\n s_color = {0.5, 0.5, 0.5, 95}\n\n if light_mode then\n f_color = {1,1,1,95}\n else\n f_color = {0,0,0,100}\n end\n\n\n\n self.createButton({\n label=tostring(val),\n click_function=\"add_subtract\",\n function_owner=self,\n position={0,0.05,0},\n height=600,\n width=1000,\n alignment = 3,\n scale={x=1.5, y=1.5, z=1.5},\n font_size=600,\n font_color=f_color,\n color={0,0,0,0}\n })\n\n\n\n\n if light_mode then\n lightButtonText = \"[ Set dark ]\"\n else\n lightButtonText = \"[ Set light ]\"\n end\n\nend\n\nfunction removeAll()\n self.removeInput(0)\n self.removeInput(1)\n self.removeButton(0)\n self.removeButton(1)\n self.removeButton(2)\nend\n\nfunction reloadAll()\n removeAll()\n createAll()\n\n updateSave()\nend\n\nfunction swap_fcolor(_obj, _color, alt_click)\n light_mode = not light_mode\n reloadAll()\nend\n\nfunction swap_align(_obj, _color, alt_click)\n center_mode = not center_mode\n reloadAll()\nend\n\nfunction editName(_obj, _string, value)\n self.setName(value)\n setTooltips()\nend\n\nfunction add_subtract(_obj, _color, alt_click)\n mod = alt_click and -1 or 1\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\n if val ~= new_value then\n val = new_value\n updateVal()\n updateSave()\n end\nend\n\nfunction updateVal()\n\n self.editButton({\n index = 0,\n label = tostring(val),\n\n })\nend\n\nfunction reset_val()\n val = 0\n updateVal()\n updateSave()\nend\n\nfunction setTooltips()\n self.editInput({\n index = 0,\n value = self.getName(),\n tooltip = ttText\n })\n self.editButton({\n index = 0,\n value = tostring(val),\n tooltip = ttText\n })\nend\n\nfunction null()\nend\n\nfunction keepSample(_obj, _string, value)\n reloadAll()\nend", "LuaScriptState": "[true,2]", + "XmlUI": "", "GUID": "f182ee" }, { @@ -41161,15 +43822,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c506bf" }, { @@ -41198,15 +43861,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cbc751" }, { @@ -41235,15 +43900,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57c22c" }, { @@ -41272,15 +43939,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67ce9a" }, { @@ -41308,6 +43977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -41323,12 +43994,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68fe54" }, { @@ -41356,6 +44028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -41371,12 +44045,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91c83e" }, { @@ -41404,6 +44079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -41418,12 +44095,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0.1},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "4406f0" }, { @@ -41451,6 +44129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -41465,12 +44145,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0.1,0.05,0.1},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "eb08d6" }, { @@ -41498,6 +44179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -41512,12 +44195,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={-0.025,0.05,-0.025},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "468e88" }, { @@ -41545,6 +44229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -41559,12 +44245,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0.1,0.05,0.1},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "e64eec" }, { @@ -41592,6 +44279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -41606,12 +44295,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={-0.025,0.05,-0.025},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "0257d9" }, { @@ -41639,6 +44329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -41653,12 +44345,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0.1},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "816d84" }, { @@ -41686,6 +44379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -41700,12 +44395,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0.1,0.05,0.1},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "591a45" }, { @@ -41733,6 +44429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -41747,12 +44445,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={-0.025,0.05,-0.025},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "beb964" }, { @@ -41780,6 +44479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -41794,12 +44495,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0.1},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "a4b60d" }, { @@ -41827,6 +44529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -41841,12 +44545,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0.1,0.05,0.1},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "1f5a0a" }, { @@ -41874,6 +44579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -41888,12 +44595,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={-0.025,0.05,-0.025},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "7b5729" }, { @@ -41921,6 +44629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -41935,12 +44645,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0.1},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "cd15ac" }, { @@ -41968,6 +44679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -41986,9 +44699,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "-- set true to enable debug logging\nDEBUG = false\n-- we use this to turn off collision handling (for clue spawning)\n-- until after load is complete (probably a better way to do this)\nCOLLISION_ENABLED = false\n-- position offsets, adjust these to reposition things relative to mat [x,y,z]\nDRAWN_ENCOUNTER_CARD_OFFSET = {0.98, 0.5, -0.635}\nDRAWN_CHAOS_TOKEN_OFFSET = {-1.2, 0.5, -0.45}\nDISCARD_BUTTON_OFFSETS = {\n {-0.98, 0.2, -0.935},\n {-0.525, 0.2, -0.935},\n {-0.07, 0.2, -0.935},\n {0.39, 0.2, -0.935},\n {0.84, 0.2, -0.935},\n}\n\n-- the position of the global discard pile\n-- TODO: delegate to global for any auto discard actions\nDISCARD_POSITION = {-3.85, 3, 10.38}\n\nfunction log(message)\n if DEBUG then\n print(message)\n end\nend\n\n-- builds a function that discards things in searchPostion to discardPostition\nfunction makeDiscardHandlerFor(searchPosition, discardPosition)\n return function (_)\n local discardItemList = findObjectsAtPosition(searchPosition)\n for _, obj in ipairs(discardItemList) do\n obj.setPositionSmooth(discardPosition, false, true)\n obj.setRotation({0, -90, 0})\n end\n end\nend\n\n-- build a discard button at position to discard from searchPosition to discardPosition\n-- number must be unique\nfunction makeDiscardButton(position, searchPosition, discardPosition, number)\n local handler = makeDiscardHandlerFor(searchPosition, discardPosition)\n local handlerName = 'handler' .. number\n self.setVar(handlerName, handler)\n self.createButton({\n label = \"Discard\",\n click_function= handlerName,\n function_owner= self,\n position = position,\n scale = {0.12, 0.12, 0.12},\n width = 800,\n height = 280,\n font_size = 180,\n })\nend\n\nfunction onload()\n self.interactable = DEBUG\n DATA_HELPER = getObjectFromGUID('708279')\n PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA')\n PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS')\n\n -- positions of encounter card slots\n local encounterSlots = {\n {1, 0, -0.7},\n {0.55, 0, -0.7},\n {0.1, 0, -0.7},\n {-0.35, 0, -0.7},\n {-0.8, 0, -0.7}\n }\n\n local i = 1\n while i <= 5 do\n makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i)\n i = i + 1\n end\n\n self.createButton({\n label = \" \",\n click_function = \"drawEncountercard\",\n function_owner = self,\n position = {-1.45,0,-0.7},\n rotation = {0,-15,0},\n width = 170,\n height = 255,\n font_size = 50\n })\n\n self.createButton({\n label=\" \",\n click_function = \"drawChaostokenButton\",\n function_owner = self,\n position = {1.48,0.0,-0.74},\n rotation = {0,-45,0},\n width = 125,\n height = 125,\n font_size = 50\n })\n\n COLLISION_ENABLED = true\nend\n\nfunction findObjectsAtPosition(localPos)\n local globalPos = self.positionToWorld(localPos)\n local objList = Physics.cast({\n origin=globalPos, --Where the cast takes place\n direction={0,1,0}, --Which direction it moves (up is shown)\n type=2, --Type. 2 is \"sphere\"\n size={2,2,2}, --How large that sphere is\n max_distance=1, --How far it moves. Just a little bit\n debug=false --If it displays the sphere when casting.\n })\n local decksAndCards = {}\n for _, obj in ipairs(objList) do\n if obj.hit_object.tag == \"Deck\" or obj.hit_object.tag == \"Card\" then\n table.insert(decksAndCards, obj.hit_object)\n end\n end\n return decksAndCards\nend\n\nfunction spawnTokenOn(object, offsets, tokenType)\n local tokenPosition = object.positionToWorld(offsets)\n spawnToken(tokenPosition, tokenType)\nend\n\n-- spawn a group of tokens of the given type on the object\nfunction spawnTokenGroup(object, tokenType, tokenCount)\n local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount]\n if offsets == nil then\n error(\"couldn't find offsets for \" .. tokenCount .. ' tokens')\n end\n local i = 0\n while i < tokenCount do\n local offset = offsets[i + 1]\n spawnTokenOn(object, offset, tokenType)\n i = i + 1\n end\nend\n\nfunction buildPlayerCardKey(object)\n return object.getName() .. ':' .. object.getDescription()\nend\n\nfunction getPlayerCardData(object)\n return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()]\nend\n\nfunction shouldSpawnTokens(object)\n -- we assume we shouldn't spawn tokens if in doubt, this should\n -- only ever happen on load and in that case prevents respawns\n local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()})\n local canSpawn = getPlayerCardData(object)\n return not spawned and canSpawn\nend\n\nfunction markSpawned(object)\n local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true})\n if not saved then\n error('attempt to mark player card spawned before data loaded')\n end\nend\n\nfunction spawnTokensFor(object)\n local data = getPlayerCardData(object)\n if data == nil then\n error('attempt to spawn tokens for ' .. object.getName() .. ': no token data')\n end\n log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount'])\n spawnTokenGroup(object, data['tokenType'], data['tokenCount'])\n markSpawned(object)\nend\n\nfunction onCollisionEnter(collision_info)\n if not COLLISION_ENABLED then\n return\n end\n\n local object = collision_info.collision_object\n -- anything to the left of this is legal to spawn\n local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0})\n local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary)\n if boundaryLocalToCard.x > 0 then\n log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x)\n return\n end\n if not object.is_face_down and shouldSpawnTokens(object) then\n spawnTokensFor(object)\n end\nend\n\n-- functions delegated to Global\nfunction drawChaostokenButton(object, player, isRightClick)\n -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET)\n Global.call(\"drawChaostoken\", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick})\nend\n\nfunction drawEncountercard(object, player, isRightClick)\nlocal toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET)\nGlobal.call(\"drawEncountercard\", {toPosition, self.getRotation(), isRightClick})\nend\n\nfunction spawnToken(position, tokenType)\n Global.call('spawnToken', {position, tokenType})\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "383d8b", "AttachedSnapPoints": [ { @@ -42179,6 +44892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -42197,9 +44912,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "-- set true to enable debug logging\nDEBUG = false\n-- we use this to turn off collision handling (for clue spawning)\n-- until after load is complete (probably a better way to do this)\nCOLLISION_ENABLED = false\n-- position offsets, adjust these to reposition things relative to mat [x,y,z]\nDRAWN_ENCOUNTER_CARD_OFFSET = {0.98, 0.5, -0.635}\nDRAWN_CHAOS_TOKEN_OFFSET = {-1.2, 0.5, -0.45}\nDISCARD_BUTTON_OFFSETS = {\n {-0.98, 0.2, -0.935},\n {-0.525, 0.2, -0.935},\n {-0.07, 0.2, -0.935},\n {0.39, 0.2, -0.935},\n {0.84, 0.2, -0.935},\n}\n\n-- the position of the global discard pile\n-- TODO: delegate to global for any auto discard actions\nDISCARD_POSITION = {-3.85, 3, 10.38}\n\nfunction log(message)\n if DEBUG then\n print(message)\n end\nend\n\n-- builds a function that discards things in searchPostion to discardPostition\nfunction makeDiscardHandlerFor(searchPosition, discardPosition)\n return function (_)\n local discardItemList = findObjectsAtPosition(searchPosition)\n for _, obj in ipairs(discardItemList) do\n obj.setPositionSmooth(discardPosition, false, true)\n obj.setRotation({0, -90, 0})\n end\n end\nend\n\n-- build a discard button at position to discard from searchPosition to discardPosition\n-- number must be unique\nfunction makeDiscardButton(position, searchPosition, discardPosition, number)\n local handler = makeDiscardHandlerFor(searchPosition, discardPosition)\n local handlerName = 'handler' .. number\n self.setVar(handlerName, handler)\n self.createButton({\n label = \"Discard\",\n click_function= handlerName,\n function_owner= self,\n position = position,\n scale = {0.12, 0.12, 0.12},\n width = 800,\n height = 280,\n font_size = 180,\n })\nend\n\nfunction onload()\n self.interactable = DEBUG\n DATA_HELPER = getObjectFromGUID('708279')\n PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA')\n PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS')\n\n -- positions of encounter card slots\n local encounterSlots = {\n {1, 0, -0.7},\n {0.55, 0, -0.7},\n {0.1, 0, -0.7},\n {-0.35, 0, -0.7},\n {-0.8, 0, -0.7}\n }\n\n local i = 1\n while i <= 5 do\n makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i)\n i = i + 1\n end\n\n self.createButton({\n label = \" \",\n click_function = \"drawEncountercard\",\n function_owner = self,\n position = {-1.45,0,-0.7},\n rotation = {0,-15,0},\n width = 170,\n height = 255,\n font_size = 50\n })\n\n self.createButton({\n label=\" \",\n click_function = \"drawChaostokenButton\",\n function_owner = self,\n position = {1.48,0.0,-0.74},\n rotation = {0,-45,0},\n width = 125,\n height = 125,\n font_size = 50\n })\n\n COLLISION_ENABLED = true\nend\n\nfunction findObjectsAtPosition(localPos)\n local globalPos = self.positionToWorld(localPos)\n local objList = Physics.cast({\n origin=globalPos, --Where the cast takes place\n direction={0,1,0}, --Which direction it moves (up is shown)\n type=2, --Type. 2 is \"sphere\"\n size={2,2,2}, --How large that sphere is\n max_distance=1, --How far it moves. Just a little bit\n debug=false --If it displays the sphere when casting.\n })\n local decksAndCards = {}\n for _, obj in ipairs(objList) do\n if obj.hit_object.tag == \"Deck\" or obj.hit_object.tag == \"Card\" then\n table.insert(decksAndCards, obj.hit_object)\n end\n end\n return decksAndCards\nend\n\nfunction spawnTokenOn(object, offsets, tokenType)\n local tokenPosition = object.positionToWorld(offsets)\n spawnToken(tokenPosition, tokenType)\nend\n\n-- spawn a group of tokens of the given type on the object\nfunction spawnTokenGroup(object, tokenType, tokenCount)\n local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount]\n if offsets == nil then\n error(\"couldn't find offsets for \" .. tokenCount .. ' tokens')\n end\n local i = 0\n while i < tokenCount do\n local offset = offsets[i + 1]\n spawnTokenOn(object, offset, tokenType)\n i = i + 1\n end\nend\n\nfunction buildPlayerCardKey(object)\n return object.getName() .. ':' .. object.getDescription()\nend\n\nfunction getPlayerCardData(object)\n return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()]\nend\n\nfunction shouldSpawnTokens(object)\n -- we assume we shouldn't spawn tokens if in doubt, this should\n -- only ever happen on load and in that case prevents respawns\n local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()})\n local canSpawn = getPlayerCardData(object)\n return not spawned and canSpawn\nend\n\nfunction markSpawned(object)\n local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true})\n if not saved then\n error('attempt to mark player card spawned before data loaded')\n end\nend\n\nfunction spawnTokensFor(object)\n local data = getPlayerCardData(object)\n if data == nil then\n error('attempt to spawn tokens for ' .. object.getName() .. ': no token data')\n end\n log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount'])\n spawnTokenGroup(object, data['tokenType'], data['tokenCount'])\n markSpawned(object)\nend\n\nfunction onCollisionEnter(collision_info)\n if not COLLISION_ENABLED then\n return\n end\n\n local object = collision_info.collision_object\n -- anything to the left of this is legal to spawn\n local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0})\n local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary)\n if boundaryLocalToCard.x > 0 then\n log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x)\n return\n end\n if not object.is_face_down and shouldSpawnTokens(object) then\n spawnTokensFor(object)\n end\nend\n\n-- functions delegated to Global\nfunction drawChaostokenButton(object, player, isRightClick)\n -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET)\n Global.call(\"drawChaostoken\", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick})\nend\n\nfunction drawEncountercard(object, player, isRightClick)\nlocal toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET)\nGlobal.call(\"drawEncountercard\", {toPosition, self.getRotation(), isRightClick})\nend\n\nfunction spawnToken(position, tokenType)\n Global.call('spawnToken', {position, tokenType})\nend", "LuaScriptState": "[]", + "XmlUI": "", "GUID": "8b081b", "AttachedSnapPoints": [ { @@ -42210,8 +44925,8 @@ }, "Rotation": { "x": -3.66321835E-08, - "y": 0.0280850679, - "z": -2.1843401E-07 + "y": 0.0280850846, + "z": -2.18433883E-07 } }, { @@ -42222,7 +44937,7 @@ }, "Rotation": { "x": -3.6553363E-08, - "y": 0.02811239, + "y": 0.0281124059, "z": -5.402876E-07 } }, @@ -42234,7 +44949,7 @@ }, "Rotation": { "x": -3.67513557E-08, - "y": 0.0281431247, + "y": 0.0281431414, "z": 2.6679524E-07 } }, @@ -42246,7 +44961,7 @@ }, "Rotation": { "x": -3.76656857E-08, - "y": 0.0281431247, + "y": 0.0281431414, "z": -2.79978553E-06 } }, @@ -42258,7 +44973,7 @@ }, "Rotation": { "x": -3.518123E-08, - "y": 0.0281431247, + "y": 0.0281431414, "z": 6.636666E-07 } }, @@ -42390,6 +45105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -42408,9 +45125,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "-- set true to enable debug logging\nDEBUG = false\n-- we use this to turn off collision handling (for clue spawning)\n-- until after load is complete (probably a better way to do this)\nCOLLISION_ENABLED = false\n-- position offsets, adjust these to reposition things relative to mat [x,y,z]\nDRAWN_ENCOUNTER_CARD_OFFSET = {0.98, 0.5, -0.635}\nDRAWN_CHAOS_TOKEN_OFFSET = {-1.2, 0.5, -0.45}\nDISCARD_BUTTON_OFFSETS = {\n {-0.98, 0.2, -0.935},\n {-0.525, 0.2, -0.935},\n {-0.07, 0.2, -0.935},\n {0.39, 0.2, -0.935},\n {0.84, 0.2, -0.935},\n}\n\n-- the position of the global discard pile\n-- TODO: delegate to global for any auto discard actions\nDISCARD_POSITION = {-3.85, 3, 10.38}\n\nfunction log(message)\n if DEBUG then\n print(message)\n end\nend\n\n-- builds a function that discards things in searchPostion to discardPostition\nfunction makeDiscardHandlerFor(searchPosition, discardPosition)\n return function (_)\n local discardItemList = findObjectsAtPosition(searchPosition)\n for _, obj in ipairs(discardItemList) do\n obj.setPositionSmooth(discardPosition, false, true)\n obj.setRotation({0, -90, 0})\n end\n end\nend\n\n-- build a discard button at position to discard from searchPosition to discardPosition\n-- number must be unique\nfunction makeDiscardButton(position, searchPosition, discardPosition, number)\n local handler = makeDiscardHandlerFor(searchPosition, discardPosition)\n local handlerName = 'handler' .. number\n self.setVar(handlerName, handler)\n self.createButton({\n label = \"Discard\",\n click_function= handlerName,\n function_owner= self,\n position = position,\n scale = {0.12, 0.12, 0.12},\n width = 800,\n height = 280,\n font_size = 180,\n })\nend\n\nfunction onload()\n self.interactable = DEBUG\n DATA_HELPER = getObjectFromGUID('708279')\n PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA')\n PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS')\n\n -- positions of encounter card slots\n local encounterSlots = {\n {1, 0, -0.7},\n {0.55, 0, -0.7},\n {0.1, 0, -0.7},\n {-0.35, 0, -0.7},\n {-0.8, 0, -0.7}\n }\n\n local i = 1\n while i <= 5 do\n makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i)\n i = i + 1\n end\n\n self.createButton({\n label = \" \",\n click_function = \"drawEncountercard\",\n function_owner = self,\n position = {-1.45,0,-0.7},\n rotation = {0,-15,0},\n width = 170,\n height = 255,\n font_size = 50\n })\n\n self.createButton({\n label=\" \",\n click_function = \"drawChaostokenButton\",\n function_owner = self,\n position = {1.48,0.0,-0.74},\n rotation = {0,-45,0},\n width = 125,\n height = 125,\n font_size = 50\n })\n\n COLLISION_ENABLED = true\nend\n\nfunction findObjectsAtPosition(localPos)\n local globalPos = self.positionToWorld(localPos)\n local objList = Physics.cast({\n origin=globalPos, --Where the cast takes place\n direction={0,1,0}, --Which direction it moves (up is shown)\n type=2, --Type. 2 is \"sphere\"\n size={2,2,2}, --How large that sphere is\n max_distance=1, --How far it moves. Just a little bit\n debug=false --If it displays the sphere when casting.\n })\n local decksAndCards = {}\n for _, obj in ipairs(objList) do\n if obj.hit_object.tag == \"Deck\" or obj.hit_object.tag == \"Card\" then\n table.insert(decksAndCards, obj.hit_object)\n end\n end\n return decksAndCards\nend\n\nfunction spawnTokenOn(object, offsets, tokenType)\n local tokenPosition = object.positionToWorld(offsets)\n spawnToken(tokenPosition, tokenType)\nend\n\n-- spawn a group of tokens of the given type on the object\nfunction spawnTokenGroup(object, tokenType, tokenCount)\n local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount]\n if offsets == nil then\n error(\"couldn't find offsets for \" .. tokenCount .. ' tokens')\n end\n local i = 0\n while i < tokenCount do\n local offset = offsets[i + 1]\n spawnTokenOn(object, offset, tokenType)\n i = i + 1\n end\nend\n\nfunction buildPlayerCardKey(object)\n return object.getName() .. ':' .. object.getDescription()\nend\n\nfunction getPlayerCardData(object)\n return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()]\nend\n\nfunction shouldSpawnTokens(object)\n -- we assume we shouldn't spawn tokens if in doubt, this should\n -- only ever happen on load and in that case prevents respawns\n local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()})\n local canSpawn = getPlayerCardData(object)\n return not spawned and canSpawn\nend\n\nfunction markSpawned(object)\n local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true})\n if not saved then\n error('attempt to mark player card spawned before data loaded')\n end\nend\n\nfunction spawnTokensFor(object)\n local data = getPlayerCardData(object)\n if data == nil then\n error('attempt to spawn tokens for ' .. object.getName() .. ': no token data')\n end\n log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount'])\n spawnTokenGroup(object, data['tokenType'], data['tokenCount'])\n markSpawned(object)\nend\n\nfunction onCollisionEnter(collision_info)\n if not COLLISION_ENABLED then\n return\n end\n\n local object = collision_info.collision_object\n -- anything to the left of this is legal to spawn\n local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0})\n local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary)\n if boundaryLocalToCard.x > 0 then\n log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x)\n return\n end\n if not object.is_face_down and shouldSpawnTokens(object) then\n spawnTokensFor(object)\n end\nend\n\n-- functions delegated to Global\nfunction drawChaostokenButton(object, player, isRightClick)\n -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET)\n Global.call(\"drawChaostoken\", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick})\nend\n\nfunction drawEncountercard(object, player, isRightClick)\nlocal toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET)\nGlobal.call(\"drawEncountercard\", {toPosition, self.getRotation(), isRightClick})\nend\n\nfunction spawnToken(position, tokenType)\n Global.call('spawnToken', {position, tokenType})\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd0ff4", "AttachedSnapPoints": [ { @@ -42601,6 +45318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -42619,9 +45338,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "-- set true to enable debug logging\nDEBUG = false\n-- we use this to turn off collision handling (for clue spawning)\n-- until after load is complete (probably a better way to do this)\nCOLLISION_ENABLED = false\n-- position offsets, adjust these to reposition things relative to mat [x,y,z]\nDRAWN_ENCOUNTER_CARD_OFFSET = {0.98, 0.5, -0.635}\nDRAWN_CHAOS_TOKEN_OFFSET = {-1.2, 0.5, -0.45}\nDISCARD_BUTTON_OFFSETS = {\n {-0.98, 0.2, -0.935},\n {-0.525, 0.2, -0.935},\n {-0.07, 0.2, -0.935},\n {0.39, 0.2, -0.935},\n {0.84, 0.2, -0.935},\n}\n\n-- the position of the global discard pile\n-- TODO: delegate to global for any auto discard actions\nDISCARD_POSITION = {-3.85, 3, 10.38}\n\nfunction log(message)\n if DEBUG then\n print(message)\n end\nend\n\n-- builds a function that discards things in searchPostion to discardPostition\nfunction makeDiscardHandlerFor(searchPosition, discardPosition)\n return function (_)\n local discardItemList = findObjectsAtPosition(searchPosition)\n for _, obj in ipairs(discardItemList) do\n obj.setPositionSmooth(discardPosition, false, true)\n obj.setRotation({0, -90, 0})\n end\n end\nend\n\n-- build a discard button at position to discard from searchPosition to discardPosition\n-- number must be unique\nfunction makeDiscardButton(position, searchPosition, discardPosition, number)\n local handler = makeDiscardHandlerFor(searchPosition, discardPosition)\n local handlerName = 'handler' .. number\n self.setVar(handlerName, handler)\n self.createButton({\n label = \"Discard\",\n click_function= handlerName,\n function_owner= self,\n position = position,\n scale = {0.12, 0.12, 0.12},\n width = 800,\n height = 280,\n font_size = 180,\n })\nend\n\nfunction onload()\n self.interactable = DEBUG\n DATA_HELPER = getObjectFromGUID('708279')\n PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA')\n PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS')\n\n -- positions of encounter card slots\n local encounterSlots = {\n {1, 0, -0.7},\n {0.55, 0, -0.7},\n {0.1, 0, -0.7},\n {-0.35, 0, -0.7},\n {-0.8, 0, -0.7}\n }\n\n local i = 1\n while i <= 5 do\n makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i)\n i = i + 1\n end\n\n self.createButton({\n label = \" \",\n click_function = \"drawEncountercard\",\n function_owner = self,\n position = {-1.45,0,-0.7},\n rotation = {0,-15,0},\n width = 170,\n height = 255,\n font_size = 50\n })\n\n self.createButton({\n label=\" \",\n click_function = \"drawChaostokenButton\",\n function_owner = self,\n position = {1.48,0.0,-0.74},\n rotation = {0,-45,0},\n width = 125,\n height = 125,\n font_size = 50\n })\n\n COLLISION_ENABLED = true\nend\n\nfunction findObjectsAtPosition(localPos)\n local globalPos = self.positionToWorld(localPos)\n local objList = Physics.cast({\n origin=globalPos, --Where the cast takes place\n direction={0,1,0}, --Which direction it moves (up is shown)\n type=2, --Type. 2 is \"sphere\"\n size={2,2,2}, --How large that sphere is\n max_distance=1, --How far it moves. Just a little bit\n debug=false --If it displays the sphere when casting.\n })\n local decksAndCards = {}\n for _, obj in ipairs(objList) do\n if obj.hit_object.tag == \"Deck\" or obj.hit_object.tag == \"Card\" then\n table.insert(decksAndCards, obj.hit_object)\n end\n end\n return decksAndCards\nend\n\nfunction spawnTokenOn(object, offsets, tokenType)\n local tokenPosition = object.positionToWorld(offsets)\n spawnToken(tokenPosition, tokenType)\nend\n\n-- spawn a group of tokens of the given type on the object\nfunction spawnTokenGroup(object, tokenType, tokenCount)\n local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount]\n if offsets == nil then\n error(\"couldn't find offsets for \" .. tokenCount .. ' tokens')\n end\n local i = 0\n while i < tokenCount do\n local offset = offsets[i + 1]\n spawnTokenOn(object, offset, tokenType)\n i = i + 1\n end\nend\n\nfunction buildPlayerCardKey(object)\n return object.getName() .. ':' .. object.getDescription()\nend\n\nfunction getPlayerCardData(object)\n return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()]\nend\n\nfunction shouldSpawnTokens(object)\n -- we assume we shouldn't spawn tokens if in doubt, this should\n -- only ever happen on load and in that case prevents respawns\n local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()})\n local canSpawn = getPlayerCardData(object)\n return not spawned and canSpawn\nend\n\nfunction markSpawned(object)\n local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true})\n if not saved then\n error('attempt to mark player card spawned before data loaded')\n end\nend\n\nfunction spawnTokensFor(object)\n local data = getPlayerCardData(object)\n if data == nil then\n error('attempt to spawn tokens for ' .. object.getName() .. ': no token data')\n end\n log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount'])\n spawnTokenGroup(object, data['tokenType'], data['tokenCount'])\n markSpawned(object)\nend\n\nfunction onCollisionEnter(collision_info)\n if not COLLISION_ENABLED then\n return\n end\n\n local object = collision_info.collision_object\n -- anything to the left of this is legal to spawn\n local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0})\n local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary)\n if boundaryLocalToCard.x > 0 then\n log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x)\n return\n end\n if not object.is_face_down and shouldSpawnTokens(object) then\n spawnTokensFor(object)\n end\nend\n\n-- functions delegated to Global\nfunction drawChaostokenButton(object, player, isRightClick)\n -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET)\n Global.call(\"drawChaostoken\", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick})\nend\n\nfunction drawEncountercard(object, player, isRightClick)\nlocal toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET)\nGlobal.call(\"drawEncountercard\", {toPosition, self.getRotation(), isRightClick})\nend\n\nfunction spawnToken(position, tokenType)\n Global.call('spawnToken', {position, tokenType})\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "0840d5", "AttachedSnapPoints": [ { @@ -42812,6 +45531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -42830,9 +45551,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Lua code. See documentation: http://berserk-games.com/knowledgebase/scripting/ --]]\n\n--[[ The onLoad event is called after the game save finishes loading. --]]\nfunction onLoad()\n --[[ print('onLoad!') --]]\n init()\n -- Setup...\n publicDeckURL=\"https://arkhamdb.com/api/public/decklist/\"\n privateDeckURL=\"https://arkhamdb.com/api/public/deck/\"\n cardURL=\"https://arkhamdb.com/api/public/card/\"\n tabooListURL=\"https://arkhamdb.com/api/public/taboos/\"\n subnameCards={{name=\"Dream Diary\",xp=3},{name=\"Relic of Ages\",xp=0},{name=\"The Necronomicon\",xp=0},{name=\"Archaic Glyphs\",xp=3},{name=\"Strange Solution\",xp=4},{name=\"Relic of Ages\",xp=0}, {name=\"Ancient Stone\",xp=4}, {\"Dream Diary\",xp=0}}\n extraPermanents={[\"Duke\"]=true,[\"Sophie\"]=true}\n multiClassCards={{name=\".45 Thompson\",xp=3},{name=\"Scroll of Secrets\",xp=3},{name=\"Tennessee Sour Mash\",xp=3},{name=\"Enchanted Blade\",xp=3},{name=\"Grisly Totem\",xp=3}}\n-- bondedCards={{name=\"Hallowed Mirror\",bondedName=\"Soothing Melody\",bondedCode=05314,copies=3},{name=\"Occult Lexicon\",bondedName=\"Blood-Rite\",bondedCode=05317,copies=3}}\n privateDeck = true\n permanents = true\n\n local tileGUID = '928c8e'\n tile = getObjectFromGUID(tileGUID)\n makeText()\n makeButton()\n makeCheckboxPP()\n makeCheckboxPerms()\n\n -- Get current taboolist\n tabooList = {}\n WebRequest.get(tabooListURL, self, 'tabooListCallback')\nend\n\nfunction spawnZone()\n -- Clean up scripting zone\n if pcZone then\n pcZone.destruct()\n end\n if weaknessZone then\n weaknessZone.destruct()\n end\n deckPos = LocalPos(self,{-1.85,1.5,1.8})\n permPos = LocalPos(self,{-4.63,1.5,1.8})\n local pcZonePos = LocalPos(self,{4.75, 2.6 , 1.8})\n zoneSpawn = {position = pcZonePos\n , scale = { 10.57, 5.1, 10.47 }\n , type = 'ScriptingTrigger'\n-- , callback = 'zoneCallback'\n , callback_owner = self\n , rotation = self.getRotation() }\n pcZone = spawnObject(zoneSpawn)\n\n -- get a scripting zone at the weakness deck\n --local weaknessZonePosition = self.positionToWorld({-7.5, 2.6 , 1.8})\n local weaknessZonePosition = LocalPos(self, {-7.5, 0 , 1.8})\n weaknessZone = spawnObject({\n position = weaknessZonePosition,\n type = 'ScriptingTrigger',\n rotation = self.getRotation()\n })\n\n for i=1,1 do\n coroutine.yield(0)\n end\n\n local objectsInZone = pcZone.getObjects()\n for i,v in pairs(objectsInZone) do\n if v.tag == 'Deck' then\n playerCardDeck = v\n end\n end\n\n local objectsInZone = weaknessZone.getObjects()\n for i,v in pairs(objectsInZone) do\n if v.getName() == 'All Weaknesses' then\n weaknessDeck = v\n end\n end\n\n -- Get deck from ArkhamDB..\n local deckURL\n if privateDeck then deckURL = privateDeckURL\n else deckURL = publicDeckURL\n end\n\n WebRequest.get(deckURL .. deckID, self, 'deckReadCallback')\n\n return 1\nend\n\nfunction init()\n cardList = {}\n doneSlots = 0\n playerCardDeck = {}\n weaknessDeck = {}\n totalCards = 0\n tabooID = 0\nend\n\nfunction buttonClicked()\n -- Reset\n init()\n -- Spawn scripting zone\n startLuaCoroutine(self, \"spawnZone\")\nend\n\nfunction checkboxPPClicked()\n buttons = tile.getButtons()\n for k,v in pairs(buttons) do\n if (v.label == \"Private deck\") then\n local button_parameters = {}\n button_parameters.label = \"Public deck\"\n button_parameters.index = v.index\n tile.editButton(button_parameters)\n privateDeck = false\n else\n if (v.label == \"Public deck\") then\n local button_parameters = {}\n button_parameters.label = \"Private deck\"\n button_parameters.index = v.index\n tile.editButton(button_parameters)\n privateDeck = true\n end\n end\n end\nend\n\nfunction checkboxPermsClicked()\n buttons = tile.getButtons()\n for k,v in pairs(buttons) do\n if (v.label == \"Permanents\") then\n local button_parameters = {}\n button_parameters.label = \"No permanents\"\n button_parameters.index = v.index\n tile.editButton(button_parameters)\n permanents = false\n else\n if (v.label == \"No permanents\") then\n local button_parameters = {}\n button_parameters.label = \"Permanents\"\n button_parameters.index = v.index\n tile.editButton(button_parameters)\n permanents = true\n end\n end\n end\nend\n\nfunction deckReadCallback(req)\n -- Result check..\n if req.is_done and not req.is_error\n then\n if string.find(req.text, \"\")\n then\n broadcastToAll(\"Private deck \"..deckID..\" is not shared\", {0.5,0.5,0.5})\n return\n end\n JsonDeckRes = JSON.decode(req.text)\n else\n print (req.error)\n return\n end\n if (JsonDeckRes == nil)\n then\n broadcastToAll(\"Deck not found!\", {0.5,0.5,0.5})\n return\n else\n print(\"Found decklist: \"..JsonDeckRes.name)\n end\n -- Count number of cards in decklist\n numSlots=0\n for cardid,number in\n pairs(JsonDeckRes.slots)\n do\n numSlots = numSlots + 1\n end\n\n -- Check for taboos\n tabooID = JsonDeckRes.taboo_id\n if tabooID\n then\n print(\"Using List of Taboos from \"..tabooList[tabooID].date..\".\")\n end\n\n -- Save card id, number in table and request card info from ArkhamDB\n for cardID,number in pairs(JsonDeckRes.slots)\n do\n local row = {}\n row.cardName = \"\"\n row.cardCount = number\n cardList[cardID] = row\n WebRequest.get(cardURL .. cardID, self, 'cardReadCallback')\n totalCards = totalCards + number\n end\nend\n\nfunction cardReadCallback(req)\n -- Result check..\n if req.is_done and not req.is_error\n then\n -- Find unicode before using JSON.decode since it doesnt handle hex UTF-16\n local tmpText = string.gsub(req.text,\"\\\\u(%w%w%w%w)\", convertHexToDec)\n JsonCardRes = JSON.decode(tmpText)\n else\n print(req.error)\n return\n end\n\n -- Update card name in table\n if(JsonCardRes.xp == nil or JsonCardRes.xp == 0)\n then\n cardList[JsonCardRes.code].cardName = JsonCardRes.real_name\n else\n cardList[JsonCardRes.code].cardName = JsonCardRes.real_name .. \" (\" .. JsonCardRes.xp .. \")\"\n end\n\n -- Check for subname\n for k,v in pairs(subnameCards) do\n if (v.name == JsonCardRes.real_name and (v.xp == JsonCardRes.xp or JsonCardRes.xp == nil))\n then\n cardList[JsonCardRes.code].subName = JsonCardRes.subname\n end\n end\n\n -- Check for multiclass\n for k,v in pairs(multiClassCards) do\n if (v.name == JsonCardRes.real_name and (v.xp == JsonCardRes.xp or JsonCardRes.xp == nil))\n then\n cardList[JsonCardRes.code].subName = JsonCardRes.faction_name\n end\n end\n\n -- Check if card is permanent (if separation is selected)\n if permanents then\n if (JsonCardRes.permanent == true or extraPermanents[JsonCardRes.real_name]) then\n cardList[JsonCardRes.code].permanent = true\n else\n cardList[JsonCardRes.code].permanent = false\n end\n else\n cardList[JsonCardRes.code].permanent = false\n end\n\n ---- Check for bonded\n --for k,v in pairs(bondedCards) do\n -- if (v.name == JsonCardRes.real_name)\n -- then\n -- local row = {}\n -- row.cardName = v.bondedName\n -- row.cardCount = v.copies\n -- row.permanent = true\n -- cardList[v.bondedCode] = row\n -- end\n --end\n\n -- Check for Taboos (add \" (Taboo)\" to card name)\n if tabooID then\n for k,v in pairs(tabooList[tabooID].cards) do\n if v.code == JsonCardRes.code\n then\n cardList[JsonCardRes.code].cardName = cardList[JsonCardRes.code].cardName .. \" (Taboo)\"\n end\n end\n end\n\n -- Update number of processed slots, if complete, start building the deck\n doneSlots = doneSlots + 1\n if (doneSlots == numSlots)\n then\n createDeck()\n end\nend\n\nfunction tabooListCallback(req)\n -- Result check..\n if req.is_done and not req.is_error\n then\n -- Find unicode before using JSON.decode since it doesnt handle hex UTF-16\n local tmpText = string.gsub(req.text,\"\\\\u(%w%w%w%w)\", convertHexToDec)\n JsonTabooRes = JSON.decode(tmpText)\n else\n print(req.error)\n return\n end\n for k,v in pairs(JsonTabooRes) do\n local row = {}\n row.date = v.date_start\n row.cards = JSON.decode(v.cards)\n tabooList[v.id] = row\n end\nend\n\nfunction createDeck()\n -- Create clone of playerCardDeck to use for drawing cards\n local cloneParams = {}\n cloneParams.position = {0,0,50}\n tmpDeck = playerCardDeck.clone(cloneParams)\n\n for k,v in pairs(cardList) do\n searchForCard(v.cardName, v.subName, v.cardCount, v.permanent)\n end\n\n tmpDeck.destruct()\nend\n\nfunction searchForCard(cardName, subName, cardCount, permanent)\n if cardName == 'Random Basic Weakness' and weaknessDeck then\n -- pull a weakness card instead\n weaknessDeck.shuffle()\n local taken = weaknessDeck.takeObject({\n position = deckPos,\n index = 0,\n smooth = false,\n params = { cardName, cardCount, false }\n })\n -- just special case the one permanent for now\n if taken.getName() == 'Indebted' then\n taken.setPosition(permPos)\n end\n broadcastToAll(\"Drew random basic weakness: \" .. taken.getName())\n return\n end\n allCards = tmpDeck.getObjects()\n for k,v in pairs(allCards) do\n if (v.nickname == cardName)\n then\n if(subName == nil or v.description == subName)\n then\n tmpDeck.takeObject({\n position = {10, 0, 20},\n callback = 'cardTaken',\n callback_owner=self,\n index = v.index,\n smooth = false,\n params = { cardName, cardCount, permanent, v.guid }\n })\n print('Added '.. cardCount .. ' of ' .. cardName)\n return\n end\n end\n end\n broadcastToAll(\"Card not found: \"..cardName, {0.5,0.5,0.5})\nend\n\nfunction cardTaken(card, params)\n -- Check destination deck (permanent?)\n local destPos\n if (params[3] == true) then -- permanent card\n destPos = permPos\n else\n destPos = deckPos\n end\n\n if (card.getName() == params[1]) then\n for i=1,params[2]-1,1 do\n local cloneParams = {}\n cloneParams.position=destPos\n card.clone(cloneParams)\n end\n card.setPosition(destPos)\n else\n print('Wrong card: ' .. card.getName())\n tmpDeck.putObject(card)\n end\nend\n\nfunction makeText()\n -- Create textbox\n local input_parameters = {}\n input_parameters.input_function = \"inputTyped\"\n input_parameters.function_owner = self\n input_parameters.position = {0.7,0.2,-0.3}\n input_parameters.width = 1620\n input_parameters.scale = {0.1,0.1,0.1}\n input_parameters.height = 600\n input_parameters.font_size = 500\n input_parameters.tooltip = \"*****PLEASE USE A PRIVATE DECK IF JUST FOR TTS TO AVOID FLOODING ARKHAMDB PUBLIC DECK LISTS!*****\\nInput deck ID from ArkhamDB URL of the published version of the deck\\nExample: For the URL 'https://arkhamdb.com/decklist/view/101/knowledge-overwhelming-solo-deck-1.0', you should input '101'\"\n input_parameters.alignment = 3 -- (1 = Automatic, 2 = Left, 3 = Center, 4 = Right, 5 = Justified) –Optional\n input_parameters.value=\"\"\n tile.createInput(input_parameters)\nend\n\nfunction makeButton()\n -- Create Button\n local button_parameters = {}\n button_parameters.click_function = \"buttonClicked\"\n button_parameters.function_owner = self\n button_parameters.position = {-0.26,0.1,0.37}\n button_parameters.width = 300\n button_parameters.height = 4\n button_parameters.tooltip = \"Click to build your deck!\"\n tile.createButton(button_parameters)\nend\n\nfunction makeCheckboxPP()\n local checkbox_parameters = {}\n checkbox_parameters.click_function = \"checkboxPPClicked\"\n checkbox_parameters.function_owner = self\n checkbox_parameters.position = {-0.7,0.2,-0.3}\n checkbox_parameters.width = 2200\n checkbox_parameters.height = 500\n checkbox_parameters.tooltip = \"Click to toggle Private/Public deck ID\"\n checkbox_parameters.label = \"Private deck\"\n checkbox_parameters.font_size = 350\n checkbox_parameters.scale = {0.1,0.1,0.1}\n tile.createButton(checkbox_parameters)\nend\n\nfunction makeCheckboxPerms()\n local checkbox_parameters = {}\n checkbox_parameters.click_function = \"checkboxPermsClicked\"\n checkbox_parameters.function_owner = self\n checkbox_parameters.position = {-0.2,0.2,-0.3}\n checkbox_parameters.width = 2200\n checkbox_parameters.height = 500\n checkbox_parameters.tooltip = \"Click to toggle separate permanents\"\n checkbox_parameters.label = \"Permanents\"\n checkbox_parameters.font_size = 350\n checkbox_parameters.scale = {0.1,0.1,0.1}\n tile.createButton(checkbox_parameters)\nend\n\n-- Function to convert utf-16 hex to actual character since JSON.decode doesn't seem to handle utf-16 hex very well..\nfunction convertHexToDec(a)\n return string.char(tonumber(a,16))\nend\n--------------\n--------------\n-- Start of Dzikakulka's positioning script\n\n\n-- Return position \"position\" in \"object\"'s frame of reference\n-- (most likely the only function you want to directly access)\nfunction LocalPos(object, position)\n local rot = object.getRotation()\n local lPos = {position[1], position[2], position[3]}\n\n -- Z-X-Y extrinsic\n local zRot = RotMatrix('z', rot['z'])\n lPos = RotateVector(zRot, lPos)\n local xRot = RotMatrix('x', rot['x'])\n lPos = RotateVector(xRot, lPos)\n local yRot = RotMatrix('y', rot['y'])\n lPos = RotateVector(yRot, lPos)\n\n return Vect_Sum(lPos, object.getPosition())\nend\n\n-- Build rotation matrix\n-- 1st table = 1st row, 2nd table = 2nd row etc\nfunction RotMatrix(axis, angDeg)\n local ang = math.rad(angDeg)\n local cs = math.cos\n local sn = math.sin\n\n if axis == 'x' then\n return {\n { 1, 0, 0 },\n { 0, cs(ang), -1*sn(ang) },\n { 0, sn(ang), cs(ang) }\n }\n elseif axis == 'y' then\n return {\n { cs(ang), 0, sn(ang) },\n { 0, 1, 0 },\n { -1*sn(ang), 0, cs(ang) }\n }\n elseif axis == 'z' then\n return {\n { cs(ang), -1*sn(ang), 0 },\n { sn(ang), cs(ang), 0 },\n { 0, 0, 1 }\n }\n end\nend\n\n-- Apply given rotation matrix on given vector\n-- (multiply matrix and column vector)\nfunction RotateVector(rotMat, vect)\n local out = {0, 0, 0}\n for i=1,3,1 do\n for j=1,3,1 do\n out[i] = out[i] + rotMat[i][j]*vect[j]\n end\n end\n return out\nend\n\n-- Sum of two vectors (of any size)\nfunction Vect_Sum(vec1, vec2)\n local out = {}\n local k = 1\n while vec1[k] ~= nil and vec2[k] ~= nil do\n out[k] = vec1[k] + vec2[k]\n k = k+1\n end\n return out\nend\n\n-- End Dzikakulka's positioning script\n\n\nfunction inputTyped(objectInputTyped, playerColorTyped, input_value, selected)\n deckID = input_value\nend\n\n--[[ The onUpdate event is called once per frame. --]]\nfunction onUpdate ()\n --[[ print('onUpdate loop!') --]]\nend", "LuaScriptState": "", + "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, @@ -42903,6 +45624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -42917,12 +45640,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "-- set true to enable debug logging\nDEBUG = false\n\n-- we use this to turn off collision handling (for clue spawning)\n-- until after load is complete (probably a better way to do this)\nCOLLISION_ENABLED = false\n\n-- TODO get the log function from global instead\n-- log = Global.call('getLogFunction', this)\nfunction getLogFunction(object)\n return function (message)\n if DEBUG then\n print(message)\n end\n end\nend\n\nlog = getLogFunction(self)\n\nfunction onload(save_state)\n self.interactable = DEBUG\n local dataHelper = getObjectFromGUID('708279')\n LOCATIONS = dataHelper.getTable('LOCATIONS_DATA')\n\n TOKEN_PLAYER_ONE = Global.getTable('tokenplayerone')\n COUNTER = getObjectFromGUID('f182ee')\n log('attempting to load state: ' .. save_state)\n if save_state ~= '' then\n SPAWNED_LOCATION_GUIDS = JSON.decode(save_state)\n end\n COLLISION_ENABLED = true\nend\n\nfunction onSave()\n local spawned_locations = JSON.encode(SPAWNED_LOCATION_GUIDS)\n self.script_state = spawned_locations\nend\n\n--[[\nrecords locations we have spawned clues for, we write this to the save\nfile onsave() so we don't spawn clues again after a load\n]]\nSPAWNED_LOCATION_GUIDS = {}\n\nfunction isAlreadySpawned(object)\n return SPAWNED_LOCATION_GUIDS[object.getGUID()] ~= nil\nend\n\nfunction markSpawned(object)\n SPAWNED_LOCATION_GUIDS[object.getGUID()] = 1\nend\n\nfunction buildKey(object)\n return object.getName() .. '_' .. object.getGUID()\nend\n\n-- try the compound key then the name alone as default\nfunction getLocation(object)\n return LOCATIONS[buildKey(object)] or LOCATIONS[object.getName()]\nend\n\nfunction isLocationWithClues(object)\n return getLocation(object) ~= nil\nend\n\n--[[\nReturn the number of clues to spawn on this location\n]]\nfunction getClueCount(object, isFaceDown, playerCount)\n if not isLocationWithClues(object) then\n error('attempted to get clue for unexpected object: ' .. object.getName())\n end\n local details = getLocation(object)\n log(object.getName() .. ' : ' .. details['type'] .. ' : ' .. details['value'] .. ' : ' .. details['clueSide'])\n if ((isFaceDown and details['clueSide'] == 'back')\n or (not isFaceDown and details['clueSide'] == 'front')) then\n if details['type'] == 'fixed' then\n return details['value']\n elseif details['type'] == 'perPlayer' then\n return details['value'] * playerCount\n end\n error('unexpected location type: ' .. details['type'])\n end\n return 0\nend\n\nfunction spawnToken(position, number)\n local obj_parameters = {}\n obj_parameters.type = 'Custom_Token'\n obj_parameters.position = position\n obj_parameters.rotation = {3.87674022, -90, 0.239081308}\n local token = spawnObject(obj_parameters)\n local custom = {}\n custom.thickness = 0.1\n custom.merge_distance = 5.0\n custom.stackable = true\n if number == '1' then\n custom.image = TOKEN_PLAYER_ONE.damageone\n token.setCustomObject(custom)\n token.scale {0.17, 1, 0.17}\n return token\n end\n\n if number == '2' then\n custom.image = TOKEN_PLAYER_ONE.damagethree\n token.setCustomObject(custom)\n token.scale {0.18, 1, 0.18}\n return token\n end\n\n if number == '3' then\n custom.image = TOKEN_PLAYER_ONE.clue\n token.setCustomObject(custom)\n token.scale {0.15, 1, 0.15}\n token.use_snap_points=false\n return token\n end\n\n if number == '4' then\n custom.image = TOKEN_PLAYER_ONE.doom\n token.setCustomObject(custom)\n token.scale {0.17, 1, 0.17}\n token.use_snap_points=false\n return token\n end\nend\n\nfunction spawnCluesAtLocation(clueCount, collision_info)\n local object = collision_info.collision_object\n if isAlreadySpawned(object) then\n error('tried to spawn clue for already spawned location:' .. object.getName())\n end\n\n local obj_parameters = {}\n obj_parameters.type = 'Custom_Token'\n obj_parameters.position = {\n object.getPosition()[1],\n object.getPosition()[2] + 1,\n object.getPosition()[3]\n }\n\n log('spawning clues for ' .. object.getName() .. '_' .. object.getGUID())\n local playerCount = COUNTER.getVar('val')\n log('player count is ' .. playerCount .. ', clue count is ' .. clueCount)\n -- mark this location as spawned, can't happen again\n markSpawned(object)\n i = 0\n while i < clueCount do\n if i < 4 then\n obj_parameters.position = {\n collision_info.collision_object.getPosition()[1] + 0.3,\n collision_info.collision_object.getPosition()[2] + 0.2,\n collision_info.collision_object.getPosition()[3] - 0.8 + (0.55 * i)\n }\n elseif i < 8 then\n obj_parameters.position = {\n collision_info.collision_object.getPosition()[1] + 0.85,\n collision_info.collision_object.getPosition()[2] + 0.2,\n collision_info.collision_object.getPosition()[3] - 3 + (0.55 * i)\n }\n else\n obj_parameters.position = {\n collision_info.collision_object.getPosition()[1] + 0.575,\n collision_info.collision_object.getPosition()[2] + 0.4,\n collision_info.collision_object.getPosition()[3] - 5.2 + (0.55 * i)}\n end\n spawnToken(obj_parameters.position, '3')\n i = i + 1\n end\nend\n\nfunction onCollisionEnter(collision_info)\n -- short circuit all collision stuff until we've loaded state\n if not COLLISION_ENABLED then\n return\n end\n\n -- check if we should spawn clues here\n local object = collision_info.collision_object\n if isLocationWithClues(object) and not isAlreadySpawned(object) then\n -- this isn't an either/or as down/up here means at a relatively low angle\n -- local isFaceUp = not object.is_face_down\n -- local isFaceDown = (object.getRotation()[3] > 160 and object.getRotation()[3] < 200)\n local playerCount = COUNTER.getVar('val')\n local clueCount = getClueCount(object, object.is_face_down, playerCount)\n if clueCount > 0 then\n spawnCluesAtLocation(clueCount, collision_info)\n end\n end\nend", - "LuaScriptState": "{\"46bf2e\":1,\"4787ca\":1,\"5cc2d6\":1,\"6442b7\":1,\"64b0a5\":1,\"6d3a3b\":1,\"728f30\":1,\"7380f1\":1,\"74b3c0\":1,\"89a573\":1,\"9471f2\":1,\"9f1a49\":1,\"bdf29a\":1,\"d8bfce\":1,\"f2f951\":1,\"f71821\":1}", + "LuaScriptState": "[]", + "XmlUI": "", "GUID": "721ba2" }, { @@ -42950,6 +45674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -42976,9 +45702,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ee1f2", "AttachedSnapPoints": [ { @@ -43078,12 +45804,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 32.30036, + "posX": 32.3003731, "posY": 1.87118578, - "posZ": 0.139974609, + "posZ": 0.139974222, "rotX": 359.920135, - "rotY": 269.997, - "rotZ": 0.0168773066, + "rotY": 269.996918, + "rotZ": 0.0168772172, "scaleX": 5.0, "scaleY": 5.0, "scaleZ": 5.0 @@ -43100,6 +45826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43118,9 +45846,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -43147,6 +45875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43155,9 +45885,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Notecard", @@ -43184,15 +45914,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3dfc9" }, { @@ -43220,6 +45952,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43271,12 +46005,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -43303,6 +46038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43318,12 +46055,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e05f2" }, { @@ -43351,6 +46089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43365,12 +46105,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63bde8" }, { @@ -43398,6 +46139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43405,9 +46148,9 @@ "Hands": true, "CardID": 33002, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43436,6 +46179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43443,9 +46188,9 @@ "Hands": true, "CardID": 33003, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43474,6 +46219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43481,9 +46228,9 @@ "Hands": true, "CardID": 33004, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43512,6 +46259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43519,9 +46268,9 @@ "Hands": true, "CardID": 33005, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43550,6 +46299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43557,9 +46308,9 @@ "Hands": true, "CardID": 33006, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43588,6 +46339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43595,9 +46348,9 @@ "Hands": true, "CardID": 33007, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43626,6 +46379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43633,9 +46388,9 @@ "Hands": true, "CardID": 33008, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43664,6 +46419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43671,9 +46428,9 @@ "Hands": true, "CardID": 33009, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43702,6 +46459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43709,9 +46468,9 @@ "Hands": true, "CardID": 33010, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43740,6 +46499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43747,9 +46508,9 @@ "Hands": true, "CardID": 33011, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43778,6 +46539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43785,9 +46548,9 @@ "Hands": true, "CardID": 33012, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43816,6 +46579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43823,9 +46588,9 @@ "Hands": true, "CardID": 33013, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43854,6 +46619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43861,9 +46628,9 @@ "Hands": true, "CardID": 33014, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43892,6 +46659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43899,9 +46668,9 @@ "Hands": true, "CardID": 33015, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43930,6 +46699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43937,9 +46708,9 @@ "Hands": true, "CardID": 33016, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -43968,6 +46739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -43975,9 +46748,9 @@ "Hands": true, "CardID": 33017, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44006,6 +46779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44013,9 +46788,9 @@ "Hands": true, "CardID": 33018, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44044,6 +46819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44051,9 +46828,9 @@ "Hands": true, "CardID": 33019, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44082,6 +46859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44089,9 +46868,9 @@ "Hands": true, "CardID": 33020, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44120,6 +46899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44127,9 +46908,9 @@ "Hands": true, "CardID": 33021, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44158,6 +46939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44165,9 +46948,9 @@ "Hands": true, "CardID": 33022, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44196,6 +46979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44203,9 +46988,9 @@ "Hands": true, "CardID": 33023, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44234,6 +47019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44241,9 +47028,9 @@ "Hands": true, "CardID": 33024, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44272,6 +47059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44279,9 +47068,9 @@ "Hands": true, "CardID": 33025, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44310,6 +47099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44317,9 +47108,9 @@ "Hands": true, "CardID": 33026, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44348,6 +47139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44355,9 +47148,9 @@ "Hands": true, "CardID": 33027, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44386,6 +47179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44393,9 +47188,9 @@ "Hands": true, "CardID": 33028, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44424,6 +47219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44431,9 +47228,9 @@ "Hands": true, "CardID": 33029, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44462,6 +47259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44469,9 +47268,9 @@ "Hands": true, "CardID": 33030, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44500,6 +47299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44507,9 +47308,9 @@ "Hands": true, "CardID": 33031, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44538,6 +47339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44545,9 +47348,9 @@ "Hands": true, "CardID": 33032, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "0e05f2" }, @@ -44576,6 +47379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44590,12 +47395,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e05f2" }, { @@ -44623,6 +47429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44637,12 +47445,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9537b5" } ], @@ -44673,6 +47482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44701,12 +47512,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -44733,6 +47545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44748,12 +47562,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5249d8" }, { @@ -44781,6 +47596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44795,12 +47612,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e01c2" }, { @@ -44828,6 +47646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44842,12 +47662,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5249d8" }, { @@ -44875,6 +47696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44889,12 +47712,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5249d8" }, { @@ -44922,6 +47746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44936,12 +47762,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5249d8" }, { @@ -44969,6 +47796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -44983,12 +47812,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5249d8" }, { @@ -45016,6 +47846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45030,12 +47862,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5249d8" }, { @@ -45063,6 +47896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45077,12 +47912,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5249d8" }, { @@ -45110,6 +47946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45124,12 +47962,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5249d8" }, { @@ -45157,6 +47996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45171,12 +48012,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5249d8" }, { @@ -45204,6 +48046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45218,12 +48062,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5249d8" }, { @@ -45251,6 +48096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45265,12 +48112,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5249d8" } ], @@ -45301,15 +48149,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed4645" } ], @@ -45340,6 +48190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45358,9 +48210,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"11429d\":{\"lock\":false,\"pos\":{\"x\":9.5267,\"y\":1.2845,\"z\":4.5868},\"rot\":{\"x\":0.0799,\"y\":89.9987,\"z\":359.9831}},\"8077a1\":{\"lock\":false,\"pos\":{\"x\":9.1666,\"y\":1.2836,\"z\":-0.8205},\"rot\":{\"x\":0.0799,\"y\":89.9944,\"z\":359.9831}},\"d54710\":{\"lock\":false,\"pos\":{\"x\":-4.0215,\"y\":1.5826,\"z\":-15.2289},\"rot\":{\"x\":359.9197,\"y\":269.9984,\"z\":0.0168}},\"ddd10b\":{\"lock\":false,\"pos\":{\"x\":8.3252,\"y\":1.283,\"z\":-6.4267},\"rot\":{\"x\":0.0799,\"y\":89.996,\"z\":359.9831}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -45387,6 +48239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45395,9 +48249,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"1d9d5a\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0136,\"z\":0.0169}},\"3d7392\":{\"lock\":false,\"pos\":{\"x\":-2.6959,\"y\":1.6623,\"z\":-5.0447},\"rot\":{\"x\":359.9197,\"y\":270.084,\"z\":0.0167}},\"6712b5\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7824,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"77b535\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0035,\"z\":0.0168}},\"78e6a9\":{\"lock\":false,\"pos\":{\"x\":1.7044,\"y\":1.3982,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":224.9978,\"z\":0.0687}},\"818319\":{\"lock\":false,\"pos\":{\"x\":-10.3245,\"y\":1.5966,\"z\":2.3096},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"8a34fc\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6816,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.977,\"z\":0.0169}},\"a8dd66\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6726,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"ba0135\":{\"lock\":false,\"pos\":{\"x\":-3.9561,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0136,\"z\":0.0168}},\"e49f42\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6759,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -45424,6 +48278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45432,9 +48288,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -45461,6 +48317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45475,12 +48333,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a674c" }, { @@ -45508,6 +48367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45522,12 +48383,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ede709" }, { @@ -45555,6 +48417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45570,12 +48434,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77acb9" } ], @@ -45606,6 +48471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45654,7 +48521,8 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "121": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -45662,7 +48530,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -45670,12 +48539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -45702,6 +48572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45716,12 +48588,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ede709" }, { @@ -45749,6 +48622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45763,12 +48638,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2af598" }, { @@ -45796,6 +48672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45810,12 +48688,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f00d6" }, { @@ -45843,6 +48722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45857,12 +48738,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b67891" }, { @@ -45890,6 +48772,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45904,12 +48788,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d0f81" }, { @@ -45937,6 +48822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45951,12 +48838,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b4717" }, { @@ -45984,6 +48872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -45998,12 +48888,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d398b" }, { @@ -46031,6 +48922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46045,12 +48938,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea910e" }, { @@ -46078,6 +48972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46092,12 +48988,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7ff58" }, { @@ -46125,6 +49022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46139,12 +49038,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "865465" }, { @@ -46172,6 +49072,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46186,12 +49088,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34b911" }, { @@ -46219,6 +49122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46233,12 +49138,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e37988" }, { @@ -46266,6 +49172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46280,12 +49188,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "210f98" }, { @@ -46313,6 +49222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46327,12 +49238,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0feb6" }, { @@ -46360,6 +49272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46374,12 +49288,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f74e7f" }, { @@ -46407,6 +49322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46421,12 +49338,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5c374" }, { @@ -46454,6 +49372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46468,12 +49388,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13fae6" }, { @@ -46501,6 +49422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46515,12 +49438,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c65380" }, { @@ -46548,6 +49472,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46562,12 +49488,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82c594" }, { @@ -46595,6 +49522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46609,12 +49538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -46642,6 +49572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46656,12 +49588,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -46689,6 +49622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46703,12 +49638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -46736,6 +49672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46750,12 +49688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -46783,6 +49722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46797,12 +49738,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -46830,6 +49772,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46844,12 +49788,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -46877,6 +49822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46891,12 +49838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -46924,6 +49872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46938,12 +49888,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" }, { @@ -46971,6 +49922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -46985,12 +49938,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b7b" }, { @@ -47018,6 +49972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47032,12 +49988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df668b" }, { @@ -47065,6 +50022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47079,12 +50038,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -47112,6 +50072,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47126,12 +50088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -47159,6 +50122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47173,12 +50138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" } ], @@ -47209,6 +50175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47228,12 +50196,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -47260,6 +50229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47274,12 +50245,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "872638" }, { @@ -47307,6 +50279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47321,12 +50295,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a10cd6" }, { @@ -47354,6 +50329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47368,12 +50345,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02c421" } ], @@ -47404,6 +50382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47422,12 +50402,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -47454,6 +50435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47468,12 +50451,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec9779" }, { @@ -47501,6 +50485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47515,12 +50501,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02c421" } ], @@ -47551,6 +50538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47566,12 +50555,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba0135" }, { @@ -47599,6 +50589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47617,9 +50609,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "818319" }, { @@ -47647,6 +50639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47662,12 +50656,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a34fc" }, { @@ -47695,6 +50690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47716,12 +50713,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -47748,6 +50746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47762,12 +50762,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a8e01" }, { @@ -47795,6 +50796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47809,12 +50812,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25c2a5" }, { @@ -47842,6 +50846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47856,12 +50862,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77ce56" }, { @@ -47889,6 +50896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47903,12 +50912,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6b8a2" }, { @@ -47936,6 +50946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -47950,12 +50962,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93893d" } ], @@ -47986,6 +50999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48001,12 +51016,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8dd66" }, { @@ -48034,6 +51050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48049,12 +51067,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d9d5a" } ], @@ -48085,6 +51104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48093,9 +51114,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"10a86b\":{\"lock\":false,\"pos\":{\"x\":-10.975,\"y\":1.5973,\"z\":1.6777},\"rot\":{\"x\":359.9201,\"y\":269.9915,\"z\":0.0169}},\"78e6a9\":{\"lock\":false,\"pos\":{\"x\":1.7123,\"y\":1.3982,\"z\":14.2795},\"rot\":{\"x\":359.9551,\"y\":224.995,\"z\":0.0687}},\"7a7819\":{\"lock\":false,\"pos\":{\"x\":-3.7391,\"y\":1.6639,\"z\":-4.6163},\"rot\":{\"x\":359.9197,\"y\":270.0114,\"z\":0.0168}},\"c2daa0\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.023,\"z\":0.0168}},\"c4b865\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.023,\"z\":0.0168}},\"cdb1f6\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9873,\"z\":0.0169}},\"d0fe7b\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.7131,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0013,\"z\":180.0168}},\"f4149c\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0512,\"z\":0.0168}},\"f957fa\":{\"lock\":false,\"pos\":{\"x\":-11.5779,\"y\":1.6783,\"z\":7.1616},\"rot\":{\"x\":359.9201,\"y\":269.9909,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -48122,6 +51143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48130,9 +51153,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -48159,6 +51182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48178,12 +51203,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -48210,6 +51236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48224,12 +51252,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fa3f0" }, { @@ -48257,6 +51286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48271,12 +51302,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a6e1e" }, { @@ -48304,6 +51336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48318,12 +51352,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fb5c5" }, { @@ -48351,6 +51386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48365,12 +51402,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2849a0" } ], @@ -48401,6 +51439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48415,12 +51455,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6b469" }, { @@ -48448,6 +51489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48474,7 +51517,8 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "175": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/", @@ -48482,12 +51526,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -48514,6 +51559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48528,12 +51575,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "637fcb" }, { @@ -48561,6 +51609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48575,12 +51625,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18ef99" }, { @@ -48608,6 +51659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48622,12 +51675,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c28e3" }, { @@ -48655,6 +51709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48669,12 +51725,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d2f2d" }, { @@ -48702,6 +51759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48716,12 +51775,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb0c1a" }, { @@ -48749,6 +51809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48763,12 +51825,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "084294" }, { @@ -48796,6 +51859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48810,12 +51875,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e77752" }, { @@ -48843,6 +51909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48857,12 +51925,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6e9c8" }, { @@ -48890,6 +51959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48904,12 +51975,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a73db5" }, { @@ -48937,6 +52009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48951,12 +52025,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e22c1" }, { @@ -48984,6 +52059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -48998,12 +52075,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cb77c" } ], @@ -49034,6 +52112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49048,12 +52128,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65dc35" }, { @@ -49081,6 +52162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49100,12 +52183,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -49132,6 +52216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49146,12 +52232,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e191a3" }, { @@ -49179,6 +52266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49193,12 +52282,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a3f87" }, { @@ -49226,6 +52316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49240,12 +52332,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "805002" }, { @@ -49273,6 +52366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49287,12 +52382,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a75981" } ], @@ -49323,6 +52419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49337,12 +52435,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "840896" }, { @@ -49370,6 +52469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49388,12 +52489,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -49420,6 +52522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49434,12 +52538,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "457e6e" }, { @@ -49467,6 +52572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49481,12 +52588,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fbb95" }, { @@ -49514,6 +52622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49528,12 +52638,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bef38" } ], @@ -49564,6 +52675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49582,12 +52695,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -49614,6 +52728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49628,12 +52744,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "033d6f" }, { @@ -49661,6 +52778,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49675,12 +52794,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df9686" }, { @@ -49708,6 +52828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49722,12 +52844,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68f877" } ], @@ -49758,6 +52881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49772,12 +52897,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ff6b5" } ], @@ -49808,6 +52934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49843,7 +52971,8 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "171": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/", @@ -49851,7 +52980,8 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "201": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/", @@ -49859,7 +52989,8 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "121": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -49867,12 +52998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -49899,6 +53031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49913,12 +53047,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f6f90" }, { @@ -49946,6 +53081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -49960,12 +53097,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e761c" }, { @@ -49993,6 +53131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50007,12 +53147,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8db8e9" }, { @@ -50040,6 +53181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50054,12 +53197,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "816ecd" }, { @@ -50087,6 +53231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50101,12 +53247,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3d7ec" }, { @@ -50134,6 +53281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50148,12 +53297,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8d413" }, { @@ -50181,6 +53331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50195,12 +53347,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2bfb6d" }, { @@ -50228,6 +53381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50242,12 +53397,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92ae12" }, { @@ -50275,6 +53431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50289,12 +53447,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9966fb" }, { @@ -50322,6 +53481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50336,12 +53497,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae5e15" }, { @@ -50369,6 +53531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50383,12 +53547,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffc740" }, { @@ -50416,6 +53581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50430,12 +53597,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5c374" }, { @@ -50463,6 +53631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50477,12 +53647,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13fae6" }, { @@ -50510,6 +53681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50524,12 +53697,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c65380" }, { @@ -50557,6 +53731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50571,12 +53747,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82c594" }, { @@ -50604,6 +53781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50618,12 +53797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -50651,6 +53831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50665,12 +53847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -50698,6 +53881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50712,12 +53897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -50745,6 +53931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50759,12 +53947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" } ], @@ -50795,6 +53984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50813,12 +54004,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -50845,6 +54037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50859,12 +54053,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97ea68" }, { @@ -50892,6 +54087,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50906,12 +54103,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "395c3f" } ], @@ -50942,6 +54140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -50960,12 +54160,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -50992,6 +54193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51006,12 +54209,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d879c" }, { @@ -51039,6 +54243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51053,12 +54259,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8a6ee" } ], @@ -51089,6 +54296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51104,12 +54313,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2daa0" }, { @@ -51137,6 +54347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51155,12 +54367,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -51187,6 +54400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51201,12 +54416,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2daa0" }, { @@ -51234,6 +54450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51248,12 +54466,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de4860" } ], @@ -51284,6 +54503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51302,9 +54523,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "10a86b" }, { @@ -51332,6 +54553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51347,12 +54570,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdb1f6" }, { @@ -51380,6 +54604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51395,12 +54621,13 @@ "NumWidth": 4, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4b865" } ], @@ -51431,6 +54658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51439,9 +54668,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"00466a\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0233,\"z\":0.0168}},\"0163c6\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9936,\"z\":0.0169}},\"020079\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0004,\"z\":359.92}},\"0edbea\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7045,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.0014,\"z\":0.0169}},\"139394\":{\"lock\":false,\"pos\":{\"x\":-3.9584,\"y\":1.6557,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.018,\"z\":0.0168}},\"2757d7\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0003,\"z\":359.92}},\"2d7592\":{\"lock\":false,\"pos\":{\"x\":-11.4453,\"y\":1.6719,\"z\":13.0483},\"rot\":{\"x\":359.9201,\"y\":269.9947,\"z\":0.0169}},\"3e28fa\":{\"lock\":false,\"pos\":{\"x\":-2.7263,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0089,\"z\":0.0168}},\"4ba650\":{\"lock\":false,\"pos\":{\"x\":-11.525,\"y\":1.6802,\"z\":9.115},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":180.0169}},\"526f54\":{\"lock\":false,\"pos\":{\"x\":-33.7313,\"y\":1.6274,\"z\":-3.9543},\"rot\":{\"x\":359.9317,\"y\":315.1167,\"z\":359.9553}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-27.0091,\"y\":1.6191,\"z\":-0.1634},\"rot\":{\"x\":359.9201,\"y\":269.9944,\"z\":0.0169}},\"756064\":{\"lock\":false,\"pos\":{\"x\":-27.4634,\"y\":1.621,\"z\":4.0402},\"rot\":{\"x\":359.9554,\"y\":225,\"z\":0.0684}},\"78e6a9\":{\"lock\":false,\"pos\":{\"x\":1.706,\"y\":1.3982,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9973,\"z\":0.0687}},\"82021c\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6543,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9929,\"z\":0.0168}},\"855857\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0307,\"z\":359.92}},\"8b3862\":{\"lock\":false,\"pos\":{\"x\":-33.3959,\"y\":1.6281,\"z\":0.0204},\"rot\":{\"x\":359.9201,\"y\":269.9944,\"z\":0.0169}},\"8c90b0\":{\"lock\":false,\"pos\":{\"x\":-27.3038,\"y\":1.6218,\"z\":7.4263},\"rot\":{\"x\":359.9201,\"y\":269.9943,\"z\":0.0169}},\"942089\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9793,\"z\":0.0169}},\"9a893a\":{\"lock\":false,\"pos\":{\"x\":-3.9328,\"y\":1.6918,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0016,\"z\":180.0168}},\"ad8016\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"e6b081\":{\"lock\":false,\"pos\":{\"x\":-11.917,\"y\":1.599,\"z\":3.083},\"rot\":{\"x\":359.9201,\"y\":269.9984,\"z\":0.0169}},\"e9566b\":{\"lock\":false,\"pos\":{\"x\":-27.6083,\"y\":1.6188,\"z\":-3.9237},\"rot\":{\"x\":0.0684,\"y\":135,\"z\":0.0446}},\"ea3065\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.018,\"z\":0.0169}},\"fcf95c\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":0.0169}},\"fd47fa\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6931,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.994,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -51468,6 +54697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51476,9 +54707,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -51505,6 +54736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51526,12 +54759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -51558,6 +54792,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51572,12 +54808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -51605,6 +54842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51619,12 +54858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -51652,6 +54892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51666,12 +54908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -51699,6 +54942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51713,12 +54958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" }, { @@ -51746,6 +54992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51760,12 +55008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b7b" }, { @@ -51793,6 +55042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51807,12 +55058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df668b" } ], @@ -51843,6 +55095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51862,12 +55116,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -51894,6 +55149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51908,12 +55165,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5c374" }, { @@ -51941,6 +55199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -51955,12 +55215,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13fae6" }, { @@ -51988,6 +55249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52002,12 +55265,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c65380" }, { @@ -52035,6 +55299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52049,12 +55315,13 @@ "NumWidth": 3, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82c594" } ], @@ -52085,6 +55352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52105,12 +55374,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -52137,6 +55407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52151,12 +55423,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6851" }, { @@ -52184,6 +55457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52198,12 +55473,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91f700" }, { @@ -52231,6 +55507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52245,12 +55523,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6851" }, { @@ -52278,6 +55557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52292,12 +55573,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0ecce" }, { @@ -52325,6 +55607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52339,12 +55623,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6851" } ], @@ -52375,6 +55660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52389,12 +55676,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6851" }, { @@ -52422,6 +55710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52440,12 +55730,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -52472,6 +55763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52486,12 +55779,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c799c9" }, { @@ -52519,6 +55813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52533,12 +55829,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fac701" }, { @@ -52566,6 +55863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52580,12 +55879,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47ca73" } ], @@ -52616,6 +55916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52634,12 +55936,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -52666,6 +55969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52680,12 +55985,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c55947" }, { @@ -52713,6 +56019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52727,12 +56035,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11c986" }, { @@ -52760,6 +56069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52774,12 +56085,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "990beb" } ], @@ -52813,6 +56125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52844,7 +56158,8 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "121": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -52852,12 +56167,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -52884,6 +56200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52898,12 +56216,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad9d2b" }, { @@ -52931,6 +56250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52945,12 +56266,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6851" }, { @@ -52978,6 +56300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -52992,12 +56316,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6851" }, { @@ -53025,6 +56350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53039,12 +56366,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6851" }, { @@ -53072,6 +56400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53086,12 +56416,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6851" }, { @@ -53119,6 +56450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53133,12 +56466,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6851" }, { @@ -53166,6 +56500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53180,12 +56516,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e8741" }, { @@ -53213,6 +56550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53227,12 +56566,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6851" }, { @@ -53260,6 +56600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53274,12 +56616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -53307,6 +56650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53321,12 +56666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -53354,6 +56700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53368,12 +56716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -53401,6 +56750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53415,12 +56766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -53448,6 +56800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53462,12 +56816,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -53495,6 +56850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53509,12 +56866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbc9d1" }, { @@ -53542,6 +56900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53556,12 +56916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" } ], @@ -53592,6 +56953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53612,12 +56975,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -53644,6 +57008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53658,12 +57024,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88343d" }, { @@ -53691,6 +57058,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53705,12 +57074,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5824fb" }, { @@ -53738,6 +57108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53752,12 +57124,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "360185" }, { @@ -53785,6 +57158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53799,12 +57174,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5638b" } ], @@ -53835,6 +57211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53856,12 +57234,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -53888,6 +57267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53902,12 +57283,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88343d" }, { @@ -53935,6 +57317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53949,12 +57333,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea7ff" }, { @@ -53982,6 +57367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -53996,12 +57383,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88343d" }, { @@ -54029,6 +57417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54043,12 +57433,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a53a5b" }, { @@ -54076,6 +57467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54090,12 +57483,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88343d" } ], @@ -54126,6 +57520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54141,12 +57537,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "139394" }, { @@ -54174,6 +57571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54195,12 +57594,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -54227,6 +57627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54241,12 +57643,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b2c6d" }, { @@ -54274,6 +57677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54288,12 +57693,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "687bc6" }, { @@ -54321,6 +57727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54335,12 +57743,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b2c6d" }, { @@ -54368,6 +57777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54382,12 +57793,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a089b1" }, { @@ -54415,6 +57827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54429,12 +57843,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b2c6d" } ], @@ -54465,6 +57880,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54486,12 +57903,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -54518,6 +57936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54532,12 +57952,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6851" }, { @@ -54565,6 +57986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54579,12 +58002,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6851" }, { @@ -54612,6 +58036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54626,12 +58052,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f8bec" }, { @@ -54659,6 +58086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54673,12 +58102,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ddd1a5" }, { @@ -54706,6 +58136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54720,12 +58152,13 @@ "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c19c46" } ], @@ -54756,6 +58189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54774,9 +58209,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6b081" }, { @@ -54804,6 +58239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54819,12 +58256,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad8016" }, { @@ -54852,6 +58290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54867,12 +58307,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "942089" }, { @@ -54900,6 +58341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54918,9 +58361,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2757d7", "States": { "2": { @@ -54948,6 +58391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -54966,9 +58411,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -54996,6 +58441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55014,9 +58461,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -55046,6 +58493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55061,12 +58510,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00466a" }, { @@ -55094,6 +58544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55112,9 +58564,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c90b0", "States": { "2": { @@ -55142,6 +58594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55160,9 +58614,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -55190,6 +58644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55208,9 +58664,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -55240,6 +58696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55258,9 +58716,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "756064", "States": { "2": { @@ -55288,6 +58746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55306,9 +58766,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -55336,6 +58796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55354,9 +58816,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -55386,6 +58848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55404,9 +58868,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -55434,6 +58898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55452,9 +58918,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -55482,6 +58948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55500,9 +58968,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -55532,6 +59000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55550,9 +59020,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9566b", "States": { "2": { @@ -55580,6 +59050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55598,9 +59070,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -55628,6 +59100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55646,9 +59120,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -55678,6 +59152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55693,12 +59169,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0163c6" }, { @@ -55726,6 +59203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55744,9 +59223,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "020079", "States": { "2": { @@ -55774,6 +59253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55792,9 +59273,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -55822,6 +59303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55840,9 +59323,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -55872,6 +59355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55887,12 +59372,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcf95c" }, { @@ -55920,6 +59406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55938,9 +59426,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "855857", "States": { "2": { @@ -55968,6 +59456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -55986,9 +59476,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -56016,6 +59506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56034,9 +59526,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -56066,6 +59558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56081,12 +59575,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd47fa" }, { @@ -56114,6 +59609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56132,9 +59629,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b3862", "States": { "2": { @@ -56162,6 +59659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56180,9 +59679,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -56210,6 +59709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56228,9 +59729,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -56260,6 +59761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56278,9 +59781,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "526f54", "States": { "2": { @@ -56308,6 +59811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56326,9 +59831,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -56356,6 +59861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56374,9 +59881,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -56406,6 +59913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56421,12 +59930,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0edbea" }, { @@ -56454,6 +59964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56469,12 +59981,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea3065" } ], @@ -56505,6 +60018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56523,9 +60038,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Winter Winds'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "d54710" } ], @@ -56576,6 +60091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56594,9 +60111,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0f3e93\":{\"lock\":false,\"pos\":{\"x\":-26.9859,\"y\":1.6191,\"z\":-0.0135},\"rot\":{\"x\":359.9201,\"y\":269.994,\"z\":0.0169}},\"2261a5\":{\"lock\":false,\"pos\":{\"x\":-4.7182,\"y\":1.5837,\"z\":-14.7432},\"rot\":{\"x\":359.9197,\"y\":270.0041,\"z\":0.0168}},\"2ec534\":{\"lock\":false,\"pos\":{\"x\":-12.3654,\"y\":1.6721,\"z\":11.366},\"rot\":{\"x\":0.0799,\"y\":90,\"z\":359.9831}},\"383672\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6851,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"46b65b\":{\"lock\":false,\"pos\":{\"x\":-10.4494,\"y\":1.5959,\"z\":-0.6855},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"491279\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7131,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":180.0168}},\"51527f\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9985,\"z\":0.0169}},\"57318a\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6543,\"z\":-5.0515},\"rot\":{\"x\":0.0169,\"y\":179.9818,\"z\":0.0803}},\"5942b3\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6874,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":0.0169}},\"641bdb\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.6314,\"y\":1.6102,\"z\":-0.1048},\"rot\":{\"x\":359.9201,\"y\":269.994,\"z\":0.0169}},\"8480f8\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6585,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"98d4a2\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6952,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"c6305b\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9938,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -56623,6 +60140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56641,9 +60160,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -56670,6 +60189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56685,12 +60206,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44808e" }, { @@ -56718,6 +60240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56733,12 +60257,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "744c53" }, { @@ -56766,6 +60291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56781,12 +60308,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a82b6d" }, { @@ -56814,6 +60342,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56829,12 +60359,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f38494" }, { @@ -56862,6 +60393,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56877,12 +60410,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ffe30" }, { @@ -56910,6 +60444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56925,12 +60461,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bae9d6" }, { @@ -56958,6 +60495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -56982,7 +60521,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -56990,12 +60530,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -57022,6 +60563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57037,12 +60580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04654b" }, { @@ -57070,6 +60614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57085,12 +60631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cfa3c" }, { @@ -57118,6 +60665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57133,12 +60682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b6e36" }, { @@ -57166,6 +60716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57181,12 +60733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b07ea5" }, { @@ -57214,6 +60767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57229,12 +60784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d0044b" }, { @@ -57262,6 +60818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57277,12 +60835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f4ddf" }, { @@ -57310,6 +60869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57325,12 +60886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "401760" }, { @@ -57358,6 +60920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57373,12 +60937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" } ], @@ -57409,6 +60974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57433,12 +61000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -57465,6 +61033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57480,12 +61050,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffed5b" }, { @@ -57513,6 +61084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57528,12 +61101,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7af595" }, { @@ -57561,6 +61135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57576,12 +61152,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "700e57" }, { @@ -57609,6 +61186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57624,12 +61203,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "698b58" }, { @@ -57657,6 +61237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57672,12 +61254,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb975d" }, { @@ -57705,6 +61288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57720,12 +61305,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81e8ff" }, { @@ -57753,6 +61339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57768,12 +61356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4964b8" }, { @@ -57801,6 +61390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57816,12 +61407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02da15" } ], @@ -57852,6 +61444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57875,12 +61469,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -57907,6 +61502,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57922,12 +61519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e1776" }, { @@ -57955,6 +61553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -57970,12 +61570,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07c08d" }, { @@ -58003,6 +61604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58018,12 +61621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "569c85" }, { @@ -58051,6 +61655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58066,12 +61672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "778d50" }, { @@ -58099,6 +61706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58114,12 +61723,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc3a9e" }, { @@ -58147,6 +61757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58162,12 +61774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd5825" }, { @@ -58195,6 +61808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58210,12 +61825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2ea2b" } ], @@ -58246,6 +61862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58280,12 +61898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -58312,6 +61931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58327,12 +61948,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cd225" }, { @@ -58360,6 +61982,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58375,12 +61999,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d3322" }, { @@ -58408,6 +62033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58423,12 +62050,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e397c" }, { @@ -58456,6 +62084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58471,12 +62101,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fed3b" }, { @@ -58504,6 +62135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58519,12 +62152,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09f0b4" }, { @@ -58552,6 +62186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58567,12 +62203,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd8fc5" }, { @@ -58600,6 +62237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58615,12 +62254,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed1dce" }, { @@ -58648,6 +62288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58663,12 +62305,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3539c7" }, { @@ -58696,6 +62339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58711,12 +62356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6812f9" }, { @@ -58744,6 +62390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58759,12 +62407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f379aa" }, { @@ -58792,6 +62441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58807,12 +62458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0947d1" }, { @@ -58840,6 +62492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58855,12 +62509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8314c" }, { @@ -58888,6 +62543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58903,12 +62560,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4a18e" }, { @@ -58936,6 +62594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58951,12 +62611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e4abc" }, { @@ -58984,6 +62645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -58999,12 +62662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b67cc" }, { @@ -59032,6 +62696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59047,12 +62713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "373c08" }, { @@ -59080,6 +62747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59095,12 +62764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "626fe2" }, { @@ -59128,6 +62798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59143,12 +62815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36060d" } ], @@ -59195,6 +62868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59230,7 +62905,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -59238,12 +62914,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -59270,6 +62947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59285,12 +62964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa0e19" }, { @@ -59318,6 +62998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59333,12 +63015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "979d82" }, { @@ -59366,6 +63049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59381,12 +63066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0583" }, { @@ -59414,6 +63100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59429,12 +63117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1911ff" }, { @@ -59462,6 +63151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59477,12 +63168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eef711" }, { @@ -59510,6 +63202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59525,12 +63219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "600971" }, { @@ -59558,6 +63253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59573,12 +63270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e7d71" }, { @@ -59606,6 +63304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59621,12 +63321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27b3df" }, { @@ -59654,6 +63355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59669,12 +63372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -59702,6 +63406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59717,12 +63423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a6e43" }, { @@ -59750,6 +63457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59765,12 +63474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00151a" }, { @@ -59798,6 +63508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59813,12 +63525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "662fe6" }, { @@ -59846,6 +63559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59861,12 +63576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -59894,6 +63610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59909,12 +63627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9964b1" }, { @@ -59942,6 +63661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -59957,12 +63678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7d270" }, { @@ -59990,6 +63712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60005,12 +63729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3bf56" }, { @@ -60038,6 +63763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60053,12 +63780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dbf6e" }, { @@ -60086,6 +63814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60101,12 +63831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08985c" }, { @@ -60134,6 +63865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60149,12 +63882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6e57e" } ], @@ -60185,6 +63919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60205,12 +63941,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -60237,6 +63974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60252,12 +63991,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "966239" }, { @@ -60285,6 +64025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60300,12 +64042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76df88" }, { @@ -60333,6 +64076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60348,12 +64093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f6b28" }, { @@ -60381,6 +64127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60396,12 +64144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9d4af" } ], @@ -60432,6 +64181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60453,12 +64204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -60485,6 +64237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60500,12 +64254,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "966ffb" }, { @@ -60533,6 +64288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60548,12 +64305,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ba290" }, { @@ -60581,6 +64339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60596,12 +64356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de2d29" }, { @@ -60629,6 +64390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60644,12 +64407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95fdb2" }, { @@ -60677,6 +64441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60692,12 +64458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e145c7" } ], @@ -60728,6 +64495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60743,12 +64512,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8480f8" }, { @@ -60776,6 +64546,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60794,9 +64566,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "2261a5" }, { @@ -60824,15 +64596,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ec534" }, { @@ -60860,6 +64634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60878,9 +64654,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46b65b" }, { @@ -60908,6 +64684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60923,12 +64701,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "641bdb" }, { @@ -60956,6 +64735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -60974,9 +64755,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -61004,6 +64785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61022,9 +64805,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -61052,6 +64835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61070,9 +64855,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -61102,6 +64887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61117,12 +64904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5942b3" }, { @@ -61150,6 +64938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61165,12 +64955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "383672" }, { @@ -61198,6 +64989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61216,9 +65009,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f3e93", "States": { "2": { @@ -61246,6 +65039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61264,9 +65059,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -61294,6 +65089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61312,9 +65109,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -61344,6 +65141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61359,12 +65158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51527f" }, { @@ -61392,6 +65192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61407,12 +65209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98d4a2" } ], @@ -61463,6 +65266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61481,9 +65286,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0967ea\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9941,\"z\":0.0169}},\"1a4e64\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9746,\"z\":0.0169}},\"37ec51\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9792,\"z\":0.0169}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-33.6265,\"y\":1.6284,\"z\":0.0656},\"rot\":{\"x\":359.9201,\"y\":269.9935,\"z\":0.0169}},\"4c2b84\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}},\"5f0185\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9952,\"z\":0.0169}},\"6a72fc\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9945,\"z\":0.0169}},\"713671\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9929,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.8364,\"y\":1.6106,\"z\":0.0223},\"rot\":{\"x\":359.9201,\"y\":269.9936,\"z\":0.0169}},\"7dcc93\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6545,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":0.0687}},\"88005c\":{\"lock\":false,\"pos\":{\"x\":-27.1056,\"y\":1.6193,\"z\":0.044},\"rot\":{\"x\":359.9201,\"y\":269.9936,\"z\":0.0169}},\"963cfe\":{\"lock\":false,\"pos\":{\"x\":-10.715,\"y\":1.6678,\"z\":0.2579},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"9fac8b\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7557,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9771,\"z\":180.0169}},\"a751fe\":{\"lock\":false,\"pos\":{\"x\":-4.1944,\"y\":1.583,\"z\":-14.6164},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}},\"a8a4b1\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9951,\"z\":0.0169}},\"b11646\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9929,\"z\":0.0169}},\"b149b1\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"bbe4b0\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9937,\"z\":0.0169}},\"bc7323\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.9201}},\"c99e9d\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9824,\"z\":0.0169}},\"ca0e9b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9952,\"z\":0.0169}},\"e10b7c\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.9201}},\"f9ae22\":{\"lock\":false,\"pos\":{\"x\":-2.7251,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9198,\"y\":269.9414,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -61510,6 +65315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61529,12 +65336,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -61561,6 +65369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61575,12 +65385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37ce45" }, { @@ -61608,6 +65419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61622,12 +65435,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15a7a0" }, { @@ -61655,6 +65469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61669,12 +65485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "501977" } ], @@ -61705,6 +65522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61748,12 +65567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -61780,6 +65600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61793,12 +65615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d84de0" }, { @@ -61826,6 +65649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61839,12 +65664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d60f3b" }, { @@ -61872,6 +65698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61885,12 +65713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a13ae" }, { @@ -61918,6 +65747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61931,12 +65762,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a65f30" }, { @@ -61964,6 +65796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -61977,12 +65811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c193f" }, { @@ -62010,6 +65845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62023,12 +65860,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4218a0" }, { @@ -62056,6 +65894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62069,12 +65909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e53b0" }, { @@ -62102,6 +65943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62115,12 +65958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" }, { @@ -62148,6 +65992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62161,12 +66007,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -62194,6 +66041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62207,12 +66056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "476433" }, { @@ -62240,6 +66090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62253,12 +66105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b124ef" }, { @@ -62286,6 +66139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62299,12 +66154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd287a" }, { @@ -62332,6 +66188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62345,12 +66203,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b06ff1" }, { @@ -62378,6 +66237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62391,12 +66252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -62424,6 +66286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62437,12 +66301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -62470,6 +66335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62483,12 +66350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -62516,6 +66384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62529,12 +66399,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -62562,6 +66433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62575,12 +66448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -62608,6 +66482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62621,12 +66497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -62654,6 +66531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62667,12 +66546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -62700,6 +66580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62713,12 +66595,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -62746,6 +66629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62759,12 +66644,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -62792,6 +66678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62805,12 +66693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -62838,6 +66727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62851,12 +66742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -62884,6 +66776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62897,12 +66791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" }, { @@ -62930,6 +66825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62943,12 +66840,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -62976,6 +66874,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -62989,12 +66889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbc9d1" } ], @@ -63025,6 +66926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63044,12 +66947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -63076,6 +66980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63090,12 +66996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f50b4f" }, { @@ -63123,6 +67030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63137,12 +67046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78a018" }, { @@ -63170,6 +67080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63184,12 +67096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "292aaa" } ], @@ -63220,6 +67133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63238,12 +67153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -63270,6 +67186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63285,12 +67203,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1c954" }, { @@ -63318,6 +67237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63333,12 +67254,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "292aaa" } ], @@ -63369,6 +67291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63384,12 +67308,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -63417,6 +67342,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63435,9 +67362,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "a751fe" }, { @@ -63465,6 +67392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63484,12 +67413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -63516,6 +67446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63531,12 +67463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a8219" }, { @@ -63564,6 +67497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63579,12 +67514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80dc7c" }, { @@ -63612,6 +67548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63627,12 +67565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff7166" } ], @@ -63663,6 +67602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63678,12 +67619,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37ec51" }, { @@ -63711,6 +67653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63729,9 +67673,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -63759,6 +67703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63777,9 +67723,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -63807,6 +67753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63825,9 +67773,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -63857,6 +67805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63872,12 +67822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a4e64" }, { @@ -63905,6 +67856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63920,12 +67873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0967ea" }, { @@ -63953,6 +67907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -63971,9 +67927,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b149b1", "States": { "2": { @@ -64001,6 +67957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64019,9 +67977,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -64049,6 +68007,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64067,9 +68027,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -64099,6 +68059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64117,9 +68079,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e10b7c", "States": { "2": { @@ -64147,6 +68109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64165,9 +68129,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -64195,6 +68159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64213,9 +68179,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -64245,6 +68211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64260,12 +68228,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca0e9b" }, { @@ -64293,6 +68262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64311,9 +68282,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88005c", "States": { "2": { @@ -64341,6 +68312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64359,9 +68332,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -64389,6 +68362,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64407,9 +68382,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -64439,6 +68414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64454,12 +68431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a72fc" }, { @@ -64487,6 +68465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64505,9 +68485,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c2b84", "States": { "2": { @@ -64535,6 +68515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64553,9 +68535,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -64583,6 +68565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64601,9 +68585,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -64633,6 +68617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64648,12 +68634,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbe4b0" }, { @@ -64681,6 +68668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64699,9 +68688,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc7323", "States": { "2": { @@ -64729,6 +68718,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64747,9 +68738,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -64777,6 +68768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64795,9 +68788,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -64827,6 +68820,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64842,12 +68837,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8a4b1" }, { @@ -64875,6 +68871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64893,9 +68891,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -64923,6 +68921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64941,9 +68941,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -64971,6 +68971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -64989,9 +68991,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "814e74" } } @@ -65021,6 +69023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65036,12 +69040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f0185" }, { @@ -65069,6 +69074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65084,12 +69091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b11646" } ], @@ -65140,6 +69148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65158,9 +69168,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"1078c7\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.6699,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":180.0686}},\"22e3f2\":{\"lock\":false,\"pos\":{\"x\":-2.6904,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0118,\"z\":0.0168}},\"239c56\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.7022,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":0.0169}},\"3210d6\":{\"lock\":false,\"pos\":{\"x\":-27.0934,\"y\":1.6172,\"z\":-7.2278},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"3ba2fb\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6909,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9962,\"z\":0.0169}},\"43d027\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9807,\"z\":0.0169}},\"4595ad\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9967,\"z\":0.0169}},\"4667f1\":{\"lock\":false,\"pos\":{\"x\":-27.2752,\"y\":1.6209,\"z\":4.5605},\"rot\":{\"x\":359.9316,\"y\":315,\"z\":359.9554}},\"4f0a6b\":{\"lock\":false,\"pos\":{\"x\":-19.6594,\"y\":1.61,\"z\":3.6336},\"rot\":{\"x\":0.0446,\"y\":45,\"z\":359.9316}},\"616612\":{\"lock\":false,\"pos\":{\"x\":-33.8841,\"y\":1.6275,\"z\":-4.2381},\"rot\":{\"x\":0.0446,\"y\":45,\"z\":359.9316}},\"62b3ab\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"6950d2\":{\"lock\":false,\"pos\":{\"x\":-33.7138,\"y\":1.6263,\"z\":-7.6781},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"69c26d\":{\"lock\":false,\"pos\":{\"x\":-4.3001,\"y\":1.4068,\"z\":14.6571},\"rot\":{\"x\":359.9832,\"y\":0.0007,\"z\":359.9197}},\"6bbd29\":{\"lock\":false,\"pos\":{\"x\":-9.9085,\"y\":1.6664,\"z\":1.7308},\"rot\":{\"x\":359.9201,\"y\":269.9864,\"z\":0.0169}},\"709830\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":-0.0046,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0072,\"z\":359.92}},\"893557\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9939,\"z\":0.0169}},\"9f9e79\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7504,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":180.0168}},\"b2b842\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":0.0169}},\"b6d48a\":{\"lock\":false,\"pos\":{\"x\":-26.9756,\"y\":1.6157,\"z\":-11.6402},\"rot\":{\"x\":0.0446,\"y\":45,\"z\":359.9316}},\"bb506e\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"bc825a\":{\"lock\":false,\"pos\":{\"x\":-4.1331,\"y\":1.5829,\"z\":-14.6606},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"be6abb\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":0.0072,\"z\":359.92}},\"c210e3\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9935,\"z\":0.0169}},\"d90311\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6931,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.9952,\"z\":0.0169}},\"daef01\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.007,\"z\":359.92}},\"e22a64\":{\"lock\":false,\"pos\":{\"x\":-27.6267,\"y\":1.6188,\"z\":-4.0757},\"rot\":{\"x\":359.9316,\"y\":314.9999,\"z\":359.9554}},\"f0e2dc\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6765,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9836,\"z\":180.0169}},\"f6d6d8\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.978,\"z\":0.0169}},\"f7c15e\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":0.0169}},\"fbf157\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0072,\"z\":359.92}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -65187,6 +69197,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65210,7 +69222,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/", @@ -65218,12 +69231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -65250,6 +69264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65264,12 +69280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -65297,6 +69314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65311,12 +69330,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb506e" }, { @@ -65344,6 +69364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65358,12 +69380,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2dc2cd" }, { @@ -65391,6 +69414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65405,12 +69430,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "845455" }, { @@ -65438,6 +69464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65452,12 +69480,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc3478" }, { @@ -65485,6 +69514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65499,12 +69530,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a04f8" }, { @@ -65532,6 +69564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65546,12 +69580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3f415" } ], @@ -65582,6 +69617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65590,9 +69627,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -65619,6 +69656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65627,9 +69666,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -65656,6 +69695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65671,12 +69712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a59501" }, { @@ -65704,6 +69746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65719,12 +69763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fdd2cb" }, { @@ -65752,6 +69797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65770,12 +69817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -65802,6 +69850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65816,12 +69866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcf597" }, { @@ -65849,6 +69900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65863,12 +69916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16e19f" } ], @@ -65902,6 +69956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65910,9 +69966,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -65939,6 +69995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -65957,12 +70015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -65989,6 +70048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66003,12 +70064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01cdcc" }, { @@ -66036,6 +70098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66050,12 +70114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe1af5" } ], @@ -66086,6 +70151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66101,12 +70168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a8c86" }, { @@ -66134,6 +70202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66149,12 +70219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "debf4e" } ], @@ -66185,6 +70256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66193,9 +70266,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -66222,6 +70295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66237,12 +70312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a064e" }, { @@ -66270,6 +70346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66285,12 +70363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c538c" }, { @@ -66318,6 +70397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66336,12 +70417,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -66368,6 +70450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66383,12 +70467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3dd1b6" }, { @@ -66416,6 +70501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66431,12 +70518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fc7a2" } ], @@ -66470,6 +70558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66478,9 +70568,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -66507,6 +70597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66522,12 +70614,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c59ae6" }, { @@ -66555,6 +70648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66570,12 +70665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fa70a" }, { @@ -66603,6 +70699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66621,12 +70719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -66653,6 +70752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66667,12 +70768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44a297" }, { @@ -66700,6 +70802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66714,12 +70818,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "735d87" } ], @@ -66753,6 +70858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66761,9 +70868,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -66790,6 +70897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66810,12 +70919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -66842,6 +70952,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66856,12 +70968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "004cf5" }, { @@ -66889,6 +71002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66903,12 +71018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7de90" }, { @@ -66936,6 +71052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66950,12 +71068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "192b4b" }, { @@ -66983,6 +71102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -66997,12 +71118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc7f88" } ], @@ -67033,6 +71155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67048,12 +71172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46993c" }, { @@ -67081,6 +71206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67096,12 +71223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87050d" } ], @@ -67135,6 +71263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67177,12 +71307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -67209,6 +71340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67223,12 +71356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67256,6 +71390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67270,12 +71406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67303,6 +71440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67317,12 +71456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67350,6 +71490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67364,12 +71506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67397,6 +71540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67411,12 +71556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67444,6 +71590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67458,12 +71606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67491,6 +71640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67505,12 +71656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67538,6 +71690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67552,12 +71706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67585,6 +71740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67599,12 +71756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67632,6 +71790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67646,12 +71806,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67679,6 +71840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67693,12 +71856,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67726,6 +71890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67740,12 +71906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20316c" }, { @@ -67773,6 +71940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67787,12 +71956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67820,6 +71990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67834,12 +72006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67867,6 +72040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67881,12 +72056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67914,6 +72090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67928,12 +72106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -67961,6 +72140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -67975,12 +72156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -68008,6 +72190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68022,12 +72206,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -68055,6 +72240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68069,12 +72256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -68102,6 +72290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68116,12 +72306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -68149,6 +72340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68163,12 +72356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "596cd0" }, { @@ -68196,6 +72390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68210,12 +72406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -68243,6 +72440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68257,12 +72456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -68290,6 +72490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68304,12 +72506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -68337,6 +72540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68351,12 +72556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -68384,6 +72590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68398,12 +72606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" } ], @@ -68434,6 +72643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68453,12 +72664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -68485,6 +72697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68499,12 +72713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "312f35" }, { @@ -68532,6 +72747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68546,12 +72763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1bdc0" }, { @@ -68579,6 +72797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68593,12 +72813,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6924a0" } ], @@ -68629,6 +72850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68648,12 +72871,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -68680,6 +72904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68694,12 +72920,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "195d28" }, { @@ -68727,6 +72954,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68741,12 +72970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2fb42" }, { @@ -68774,6 +73004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68788,12 +73020,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfa65d" } ], @@ -68824,6 +73057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68839,12 +73074,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb506e" }, { @@ -68872,6 +73108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68890,9 +73128,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Stranger Things'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc825a" }, { @@ -68920,6 +73158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68941,12 +73181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -68973,6 +73214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -68987,12 +73230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb506e" }, { @@ -69020,6 +73264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69034,12 +73280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb506e" }, { @@ -69067,6 +73314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69082,12 +73331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5e3c4" }, { @@ -69115,6 +73365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69130,12 +73382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee9c79" }, { @@ -69163,6 +73416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69178,12 +73433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41aa91" } ], @@ -69214,6 +73470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69229,12 +73487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6d6d8" }, { @@ -69262,6 +73521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69287,12 +73548,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -69319,6 +73581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69333,12 +73597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -69366,6 +73631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69380,12 +73647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -69413,6 +73681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69427,12 +73697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -69460,6 +73731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69474,12 +73747,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd678d" }, { @@ -69507,6 +73781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69521,12 +73797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -69554,6 +73831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69568,12 +73847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -69601,6 +73881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69615,12 +73897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -69648,6 +73931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69662,12 +73947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" }, { @@ -69695,6 +73981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69709,12 +73997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13614f" } ], @@ -69745,6 +74034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69763,9 +74054,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f0a6b", "States": { "2": { @@ -69793,6 +74084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69811,9 +74104,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -69841,6 +74134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69859,9 +74154,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -69891,6 +74186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69906,12 +74203,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "893557" }, { @@ -69939,6 +74237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -69957,9 +74257,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbf157", "States": { "2": { @@ -69987,6 +74287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70005,9 +74307,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -70035,6 +74337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70053,9 +74357,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -70085,6 +74389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70100,12 +74406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43d027" }, { @@ -70133,6 +74440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70151,9 +74460,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -70181,6 +74490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70199,9 +74510,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -70229,6 +74540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70247,9 +74560,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -70279,6 +74592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70294,12 +74609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4595ad" }, { @@ -70327,6 +74643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70345,9 +74663,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4667f1", "States": { "2": { @@ -70375,6 +74693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70393,9 +74713,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -70423,6 +74743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70441,9 +74763,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -70473,6 +74795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70491,9 +74815,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e22a64", "States": { "2": { @@ -70521,6 +74845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70539,9 +74865,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -70569,6 +74895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70587,9 +74915,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -70619,6 +74947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70637,9 +74967,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3210d6", "States": { "2": { @@ -70667,6 +74997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70685,9 +75017,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -70715,6 +75047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70733,9 +75067,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -70765,6 +75099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70783,9 +75119,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6d48a", "States": { "2": { @@ -70813,6 +75149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70831,9 +75169,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -70861,6 +75199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70879,9 +75219,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -70911,6 +75251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70926,12 +75268,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7c15e" }, { @@ -70959,6 +75302,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -70977,9 +75322,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "daef01", "States": { "2": { @@ -71007,6 +75352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71025,9 +75372,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -71055,6 +75402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71073,9 +75422,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -71105,6 +75454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71120,12 +75471,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c210e3" }, { @@ -71153,6 +75505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71171,9 +75525,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "709830", "States": { "2": { @@ -71201,6 +75555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71219,9 +75575,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -71249,6 +75605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71267,9 +75625,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -71299,6 +75657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71314,12 +75674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d90311" }, { @@ -71347,6 +75708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71365,9 +75728,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be6abb", "States": { "2": { @@ -71395,6 +75758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71413,9 +75778,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -71443,6 +75808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71461,9 +75828,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -71493,6 +75860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71508,12 +75877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ba2fb" }, { @@ -71541,6 +75911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71559,9 +75931,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "616612", "States": { "2": { @@ -71589,6 +75961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71607,9 +75981,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -71637,6 +76011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71655,9 +76031,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -71687,6 +76063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71702,12 +76080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "239c56" }, { @@ -71735,6 +76114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71753,9 +76134,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6950d2", "States": { "2": { @@ -71783,6 +76164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71801,9 +76184,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -71831,6 +76214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71849,9 +76234,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -71881,6 +76266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71896,12 +76283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2b842" } ], @@ -71952,6 +76340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -71970,9 +76360,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"023e21\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.6752,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9987,\"z\":180.0168}},\"0a7a51\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"1d2e12\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6585,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0003,\"z\":180.0168}},\"26b589\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.658,\"z\":0.3733},\"rot\":{\"x\":359.9198,\"y\":269.9589,\"z\":0.0169}},\"469d58\":{\"lock\":false,\"pos\":{\"x\":-11.9576,\"y\":1.6717,\"z\":3.1538},\"rot\":{\"x\":359.9201,\"y\":269.9781,\"z\":0.0169}},\"64f279\":{\"lock\":false,\"pos\":{\"x\":-17.1197,\"y\":1.889,\"z\":-11.5094},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6949,\"y\":1.5583,\"z\":14.2794},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"cde2d1\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6459,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0159,\"z\":0.0168}},\"ce2091\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6778,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":0.0169}},\"d63331\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":180.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -71999,6 +76389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72017,9 +76409,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -72046,6 +76438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72061,12 +76455,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30adbd" }, { @@ -72094,6 +76489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72109,12 +76506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8038f1" }, { @@ -72142,6 +76540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72157,12 +76557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "52328e" }, { @@ -72190,6 +76591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72205,12 +76608,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06e5e4" } ], @@ -72254,6 +76658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72277,12 +76683,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -72309,6 +76716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72324,12 +76733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -72357,6 +76767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72372,12 +76784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -72405,6 +76818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72420,12 +76835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -72453,6 +76869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72468,12 +76886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -72501,6 +76920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72516,12 +76937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -72549,6 +76971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72564,12 +76988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -72597,6 +77022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72612,12 +77039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" } ], @@ -72648,6 +77076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72670,12 +77100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -72702,6 +77133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72717,12 +77150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76c93e" }, { @@ -72750,6 +77184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72765,12 +77201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f94b0e" }, { @@ -72798,6 +77235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72813,12 +77252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f88c9d" }, { @@ -72846,6 +77286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72861,12 +77303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "32bf53" }, { @@ -72894,6 +77337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72909,12 +77354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd1a1a" }, { @@ -72942,6 +77388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -72957,12 +77405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd51ee" } ], @@ -72993,6 +77442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73019,12 +77470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -73051,6 +77503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73066,12 +77520,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e80e5f" }, { @@ -73099,6 +77554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73114,12 +77571,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bf5ba" }, { @@ -73147,6 +77605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73162,12 +77622,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a36834" }, { @@ -73195,6 +77656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73210,12 +77673,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "458e59" }, { @@ -73243,6 +77707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73258,12 +77724,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49c091" }, { @@ -73291,6 +77758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73306,12 +77775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c606f3" }, { @@ -73339,6 +77809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73354,12 +77826,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d56db" }, { @@ -73387,6 +77860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73402,12 +77877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a38da7" }, { @@ -73435,6 +77911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73450,12 +77928,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2aea4" }, { @@ -73483,6 +77962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73498,12 +77979,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08e915" } ], @@ -73534,6 +78016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73549,12 +78033,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d2e12" }, { @@ -73582,6 +78067,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73604,12 +78091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -73636,6 +78124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73651,12 +78141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0300fc" }, { @@ -73684,6 +78175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73699,12 +78192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d409d" }, { @@ -73732,6 +78226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73747,12 +78243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3dca40" }, { @@ -73780,6 +78277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73795,12 +78294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7356a3" }, { @@ -73828,6 +78328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73843,12 +78345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a531f3" }, { @@ -73876,6 +78379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73891,12 +78396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff21c5" } ], @@ -73927,6 +78433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73946,12 +78454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -73978,6 +78487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -73993,12 +78504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47ad31" }, { @@ -74026,6 +78538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74041,12 +78555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02186e" }, { @@ -74074,6 +78589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74089,12 +78606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "522715" } ], @@ -74125,6 +78643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74140,12 +78660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a7a51" }, { @@ -74173,6 +78694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74182,9 +78705,9 @@ "Tablet": { "PageURL": "https://drive.google.com/file/d/1jmBwXA5imqZUKIxCo77vWT78zfLBNNbO/view" }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64f279" }, { @@ -74212,6 +78735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74227,12 +78752,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d63331" } ], @@ -74283,6 +78809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74301,9 +78829,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"1f4db7\":{\"lock\":false,\"pos\":{\"x\":-7.7139,\"y\":1.7478,\"z\":15.225},\"rot\":{\"x\":359.92,\"y\":270.0018,\"z\":180.0169}},\"7ba738\":{\"lock\":false,\"pos\":{\"x\":-3.946,\"y\":1.4062,\"z\":14.5235},\"rot\":{\"x\":359.9832,\"y\":-0.0016,\"z\":359.9197}},\"82e1ed\":{\"lock\":false,\"pos\":{\"x\":-4.1664,\"y\":1.5829,\"z\":-15.04},\"rot\":{\"x\":359.9197,\"y\":269.9994,\"z\":0.0168}},\"961940\":{\"lock\":false,\"pos\":{\"x\":8.4723,\"y\":1.2866,\"z\":6.7132},\"rot\":{\"x\":0.0799,\"y\":89.9989,\"z\":359.9831}},\"c2fe44\":{\"lock\":false,\"pos\":{\"x\":-0.4614,\"y\":1.7617,\"z\":-25.2014},\"rot\":{\"x\":359.9201,\"y\":269.9758,\"z\":0.0169}},\"eea51b\":{\"lock\":false,\"pos\":{\"x\":8.0856,\"y\":1.2853,\"z\":0.187},\"rot\":{\"x\":0.0799,\"y\":89.9983,\"z\":359.9831}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -74330,6 +78858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74338,9 +78868,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0b884f\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":11.4603},\"rot\":{\"x\":359.9201,\"y\":270.0019,\"z\":0.0169}},\"1e0371\":{\"lock\":false,\"pos\":{\"x\":-12.244,\"y\":1.6759,\"z\":7.1267},\"rot\":{\"x\":359.9201,\"y\":269.9902,\"z\":0.0169}},\"344ea1\":{\"lock\":false,\"pos\":{\"x\":-3.9235,\"y\":1.8143,\"z\":5.7408},\"rot\":{\"x\":359.9198,\"y\":269.841,\"z\":180.0171}},\"58fc2d\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"640f2c\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9974,\"z\":180.0169}},\"65073c\":{\"lock\":false,\"pos\":{\"x\":-2.7218,\"y\":1.6551,\"z\":0.3718},\"rot\":{\"x\":359.9197,\"y\":269.9921,\"z\":0.0168}},\"70c71c\":{\"lock\":false,\"pos\":{\"x\":-3.9585,\"y\":1.6585,\"z\":-10.4432},\"rot\":{\"x\":359.9197,\"y\":269.9974,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.5413,\"y\":1.61,\"z\":-0.3575},\"rot\":{\"x\":359.9201,\"y\":269.994,\"z\":0.0169}},\"87b366\":{\"lock\":false,\"pos\":{\"x\":-2.6837,\"y\":1.655,\"z\":-5.0486},\"rot\":{\"x\":359.9197,\"y\":269.9991,\"z\":0.0168}},\"9c0265\":{\"lock\":false,\"pos\":{\"x\":-11.8341,\"y\":1.6676,\"z\":10.7228},\"rot\":{\"x\":359.9201,\"y\":269.978,\"z\":0.0169}},\"cd4e99\":{\"lock\":false,\"pos\":{\"x\":1.7015,\"y\":1.5583,\"z\":14.2848},\"rot\":{\"x\":359.9552,\"y\":224.9774,\"z\":0.0687}},\"ec71af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.8737,\"z\":0.0171}},\"f79992\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.8737,\"z\":0.0171}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -74367,6 +78897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74385,9 +78917,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -74414,6 +78946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74429,12 +78963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f24e" }, { @@ -74462,6 +78997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74477,12 +79014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7be80" }, { @@ -74510,6 +79048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74525,12 +79065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f485e" } ], @@ -74574,6 +79115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74628,7 +79171,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -74636,12 +79180,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -74668,6 +79213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74683,12 +79230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20f9d0" }, { @@ -74716,6 +79264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74731,12 +79281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -74764,6 +79315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74779,12 +79332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -74812,6 +79366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74827,12 +79383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -74860,6 +79417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74875,12 +79434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -74908,6 +79468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74923,12 +79485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -74956,6 +79519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -74971,12 +79536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75004,6 +79570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75019,12 +79587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75052,6 +79621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75067,12 +79638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75100,6 +79672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75115,12 +79689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75148,6 +79723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75163,12 +79740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75196,6 +79774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75211,12 +79791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75244,6 +79825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75259,12 +79842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75292,6 +79876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75307,12 +79893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75340,6 +79927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75355,12 +79944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75388,6 +79978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75403,12 +79995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75436,6 +80029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75451,12 +80046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75484,6 +80080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75499,12 +80097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75532,6 +80131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75547,12 +80148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75580,6 +80182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75595,12 +80199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75628,6 +80233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75643,12 +80250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75676,6 +80284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75691,12 +80301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98eef9" }, { @@ -75724,6 +80335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75739,12 +80352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75772,6 +80386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75787,12 +80403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75820,6 +80437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75835,12 +80454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef2e6a" }, { @@ -75868,6 +80488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75883,12 +80505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75916,6 +80539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75931,12 +80556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -75964,6 +80590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -75979,12 +80607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79efae" }, { @@ -76012,6 +80641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76027,12 +80658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -76060,6 +80692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76075,12 +80709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -76108,6 +80743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76123,12 +80760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -76156,6 +80794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76171,12 +80811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e53b0" }, { @@ -76204,6 +80845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76219,12 +80862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4218a0" }, { @@ -76252,6 +80896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76267,12 +80913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c193f" }, { @@ -76300,6 +80947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76315,12 +80964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a13ae" }, { @@ -76348,6 +80998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76363,12 +81015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d84de0" }, { @@ -76396,6 +81049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76411,12 +81066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d60f3b" }, { @@ -76444,6 +81100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76459,12 +81117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a65f30" } ], @@ -76495,6 +81154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76515,12 +81176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -76547,6 +81209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76562,12 +81226,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8daa5" }, { @@ -76595,6 +81260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76610,12 +81277,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "189665" }, { @@ -76643,6 +81311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76658,12 +81328,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95ee0b" }, { @@ -76691,6 +81362,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76706,12 +81379,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "557e18" } ], @@ -76742,6 +81416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76761,12 +81437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -76793,6 +81470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76808,12 +81487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ddf870" }, { @@ -76841,6 +81521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76856,12 +81538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d5d1f" }, { @@ -76889,6 +81572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76904,12 +81589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0457b8" } ], @@ -76940,6 +81626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -76955,12 +81643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70c71c" }, { @@ -76988,6 +81677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77015,12 +81706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -77047,6 +81739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77062,12 +81756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f42dce" }, { @@ -77095,6 +81790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77110,12 +81807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8764da" }, { @@ -77143,6 +81841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77158,12 +81858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb4141" }, { @@ -77191,6 +81892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77206,12 +81909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9d426" }, { @@ -77239,6 +81943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77254,12 +81960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffddee" }, { @@ -77287,6 +81994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77302,12 +82011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d83b0" }, { @@ -77335,6 +82045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77350,12 +82062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3b3d2" }, { @@ -77383,6 +82096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77398,12 +82113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74032b" }, { @@ -77431,6 +82147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77446,12 +82164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb3044" }, { @@ -77479,6 +82198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77494,12 +82215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0a516" }, { @@ -77527,6 +82249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77542,12 +82266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a2418" } ], @@ -77578,6 +82303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77601,12 +82328,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -77633,6 +82361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77648,12 +82378,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18f3b1" }, { @@ -77681,6 +82412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77696,12 +82429,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c1958" }, { @@ -77729,6 +82463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77744,12 +82480,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcfce6" }, { @@ -77777,6 +82514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77792,12 +82531,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6928b9" }, { @@ -77825,6 +82565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77840,12 +82582,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a138c" }, { @@ -77873,6 +82616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77888,12 +82633,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a6c88" }, { @@ -77921,6 +82667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77936,12 +82684,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b2732" } ], @@ -77972,6 +82721,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -77993,12 +82744,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -78025,6 +82777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78040,12 +82794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf6c58" }, { @@ -78073,6 +82828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78088,12 +82845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78b70d" }, { @@ -78121,6 +82879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78136,12 +82896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b662b5" }, { @@ -78169,6 +82930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78184,12 +82947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e057b" }, { @@ -78217,6 +82981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78232,12 +82998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7de43d" } ], @@ -78268,6 +83035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78283,12 +83052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58fc2d" }, { @@ -78316,6 +83086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78331,12 +83103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec71af" }, { @@ -78364,6 +83137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78382,9 +83157,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -78412,6 +83187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78430,9 +83207,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -78460,6 +83237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78478,9 +83257,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -78510,6 +83289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78525,12 +83306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79992" }, { @@ -78558,6 +83340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78573,12 +83357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "640f2c" } ], @@ -78609,6 +83394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78617,9 +83404,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"085d1f\":{\"lock\":false,\"pos\":{\"x\":-27.116,\"y\":1.6215,\"z\":7.3989},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"197356\":{\"lock\":false,\"pos\":{\"x\":-20.5922,\"y\":1.6124,\"z\":7.5006},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"19cca9\":{\"lock\":false,\"pos\":{\"x\":-2.7179,\"y\":1.6566,\"z\":0.3656},\"rot\":{\"x\":359.9197,\"y\":270.1591,\"z\":0.0166}},\"20add9\":{\"lock\":false,\"pos\":{\"x\":-20.6375,\"y\":1.6091,\"z\":-3.8576},\"rot\":{\"x\":359.9316,\"y\":314.9999,\"z\":359.9554}},\"26c1c1\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6885,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":270.0104,\"z\":0.0169}},\"2cb49f\":{\"lock\":false,\"pos\":{\"x\":-20.4516,\"y\":1.6111,\"z\":3.7973},\"rot\":{\"x\":0.0446,\"y\":45.0001,\"z\":359.9316}},\"31c54f\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0006,\"z\":359.9201}},\"44b479\":{\"lock\":false,\"pos\":{\"x\":-12.5958,\"y\":1.6707,\"z\":-0.1204},\"rot\":{\"x\":359.9201,\"y\":269.9886,\"z\":0.0169}},\"482923\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9092,\"z\":0.017}},\"51476e\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9833,\"z\":180.0169}},\"521307\":{\"lock\":false,\"pos\":{\"x\":-12.4636,\"y\":1.6716,\"z\":3.5877},\"rot\":{\"x\":359.9201,\"y\":269.9846,\"z\":0.0169}},\"5c3018\":{\"lock\":false,\"pos\":{\"x\":-8.8049,\"y\":1.6651,\"z\":0.2464},\"rot\":{\"x\":359.9203,\"y\":270.106,\"z\":0.0168}},\"658c70\":{\"lock\":false,\"pos\":{\"x\":-3.9333,\"y\":1.6758,\"z\":5.7573},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"6ecbc4\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0088,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0007,\"z\":359.92}},\"797927\":{\"lock\":false,\"pos\":{\"x\":-8.8318,\"y\":1.6637,\"z\":-4.826},\"rot\":{\"x\":359.9199,\"y\":269.8928,\"z\":0.0167}},\"7a0fd0\":{\"lock\":false,\"pos\":{\"x\":-3.9596,\"y\":1.6557,\"z\":-10.4355},\"rot\":{\"x\":359.9198,\"y\":269.9092,\"z\":0.017}},\"83b8ac\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6907,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.0085,\"z\":0.0169}},\"8f0ac0\":{\"lock\":false,\"pos\":{\"x\":1.0563,\"y\":1.6885,\"z\":0.4213},\"rot\":{\"x\":359.9197,\"y\":269.9986,\"z\":180.0168}},\"96fc11\":{\"lock\":false,\"pos\":{\"x\":-17.1204,\"y\":1.6776,\"z\":-7.6965},\"rot\":{\"x\":359.9201,\"y\":270.0246,\"z\":180.0168}},\"97c293\":{\"lock\":false,\"pos\":{\"x\":1.6917,\"y\":1.5583,\"z\":14.283},\"rot\":{\"x\":359.9551,\"y\":224.9957,\"z\":0.0687}},\"a6e5f6\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9945,\"z\":0.0168}},\"c031d6\":{\"lock\":false,\"pos\":{\"x\":-8.1156,\"y\":1.7027,\"z\":4.8965},\"rot\":{\"x\":359.9202,\"y\":270.0161,\"z\":180.0168}},\"c1e370\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6179,\"z\":11.46},\"rot\":{\"x\":359.9831,\"y\":0.0006,\"z\":359.92}},\"deefa0\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9954,\"z\":180.0169}},\"f2879e\":{\"lock\":false,\"pos\":{\"x\":-23.6731,\"y\":1.6862,\"z\":-0.0271},\"rot\":{\"x\":359.9201,\"y\":270.0702,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -78646,6 +83433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78664,9 +83453,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -78693,6 +83482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78708,12 +83499,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b5da" }, { @@ -78741,6 +83533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78756,12 +83550,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -78789,6 +83584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78808,12 +83605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -78840,6 +83638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78855,12 +83655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bcbf39" }, { @@ -78888,6 +83689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78903,12 +83706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d7085" }, { @@ -78936,6 +83740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -78951,12 +83757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c593b0" } ], @@ -79003,6 +83810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79035,7 +83844,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2632": { "FaceURL": "https://i.imgur.com/yrcMJ0I.jpg", @@ -79043,12 +83853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -79075,6 +83886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79090,12 +83903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -79123,6 +83937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79138,12 +83954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -79171,6 +83988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79186,12 +84005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -79219,6 +84039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79234,12 +84056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -79267,6 +84090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79282,12 +84107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -79315,6 +84141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79330,12 +84158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -79363,6 +84192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79378,12 +84209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -79411,6 +84243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79426,12 +84260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb50d4" }, { @@ -79459,6 +84294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79474,12 +84311,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb50d4" }, { @@ -79507,6 +84345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79522,12 +84362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b0e3d" }, { @@ -79555,6 +84396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79570,12 +84413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb50d4" }, { @@ -79603,6 +84447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79618,12 +84464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b0f8b" }, { @@ -79651,6 +84498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79666,12 +84515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "454090" }, { @@ -79699,6 +84549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79714,12 +84566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "454090" }, { @@ -79747,6 +84600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79762,12 +84617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e08fa" }, { @@ -79795,6 +84651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79810,12 +84668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e08fa" } ], @@ -79846,6 +84705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79874,7 +84735,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -79882,12 +84744,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -79914,6 +84777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79929,12 +84794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "156781" }, { @@ -79962,6 +84828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -79977,12 +84845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb4831" }, { @@ -80010,6 +84879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80025,12 +84896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a1fee" }, { @@ -80058,6 +84930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80073,12 +84947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a1fee" }, { @@ -80106,6 +84981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80121,12 +84998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "401760" }, { @@ -80154,6 +85032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80169,12 +85049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf03e4" }, { @@ -80202,6 +85083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80217,12 +85100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66321f" }, { @@ -80250,6 +85134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80265,12 +85151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67f705" }, { @@ -80298,6 +85185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80313,12 +85202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e441a" }, { @@ -80346,6 +85236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80361,12 +85253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -80394,6 +85287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80409,12 +85304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd620f" }, { @@ -80442,6 +85338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80457,12 +85355,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d98d0d" } ], @@ -80493,6 +85392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80512,12 +85413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -80544,6 +85446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80559,12 +85463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a8ff2" }, { @@ -80592,6 +85497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80607,12 +85514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4debdd" }, { @@ -80640,6 +85548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80655,12 +85565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04a1cb" } ], @@ -80691,6 +85602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80710,12 +85623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -80742,6 +85656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80757,12 +85673,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea0974" }, { @@ -80790,6 +85707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80805,12 +85724,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff2dd8" }, { @@ -80838,6 +85758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80853,12 +85775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fd66d" } ], @@ -80889,6 +85812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80904,12 +85829,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a0fd0" }, { @@ -80937,6 +85863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -80969,7 +85897,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -80977,12 +85906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -81009,6 +85939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81024,12 +85956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d64e7f" }, { @@ -81057,6 +85990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81072,12 +86007,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7881f3" }, { @@ -81105,6 +86041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81120,12 +86058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5247c8" }, { @@ -81153,6 +86092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81168,12 +86109,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c879cd" }, { @@ -81201,6 +86143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81216,12 +86160,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48a0d8" }, { @@ -81249,6 +86194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81264,12 +86211,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00e8ee" }, { @@ -81297,6 +86245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81312,12 +86262,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df668b" }, { @@ -81345,6 +86296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81360,12 +86313,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b7b" }, { @@ -81393,6 +86347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81408,12 +86364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" }, { @@ -81441,6 +86398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81456,12 +86415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -81489,6 +86449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81504,12 +86466,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -81537,6 +86500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81552,12 +86517,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69cfc0" }, { @@ -81585,6 +86551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81600,12 +86568,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6741e7" }, { @@ -81633,6 +86602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81648,12 +86619,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "179283" }, { @@ -81681,6 +86653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81696,12 +86670,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b16a88" }, { @@ -81729,6 +86704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81744,12 +86721,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34bfac" } ], @@ -81780,6 +86758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81799,12 +86779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -81831,6 +86812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81846,12 +86829,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c04cf9" }, { @@ -81879,6 +86863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81894,12 +86880,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "898e36" }, { @@ -81927,6 +86914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81942,12 +86931,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c459f" } ], @@ -81978,6 +86968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -81997,12 +86989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -82029,6 +87022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82044,12 +87039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a556fc" }, { @@ -82077,6 +87073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82092,12 +87090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4327b" }, { @@ -82125,6 +87124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82140,12 +87141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "486908" } ], @@ -82176,6 +87178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82191,12 +87195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "521307" }, { @@ -82224,6 +87229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82239,12 +87246,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b479" }, { @@ -82272,6 +87280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82287,12 +87297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "deefa0" }, { @@ -82320,6 +87331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82338,9 +87351,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -82368,6 +87381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82386,9 +87401,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -82416,6 +87431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82434,9 +87451,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -82466,6 +87483,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82481,12 +87500,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51476e" }, { @@ -82514,6 +87534,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82529,12 +87551,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96fc11" }, { @@ -82562,6 +87585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82580,9 +87605,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "197356", "States": { "2": { @@ -82610,6 +87635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82628,9 +87655,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -82658,6 +87685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82676,9 +87705,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -82708,6 +87737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82726,9 +87757,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2cb49f", "States": { "2": { @@ -82756,6 +87787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82774,9 +87807,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -82804,6 +87837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82822,9 +87857,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -82854,6 +87889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82872,9 +87909,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20add9", "States": { "2": { @@ -82902,6 +87939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82920,9 +87959,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -82950,6 +87989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -82968,9 +88009,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -83000,6 +88041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83015,12 +88058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83b8ac" }, { @@ -83048,6 +88092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83066,9 +88112,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1e370", "States": { "2": { @@ -83096,6 +88142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83114,9 +88162,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -83144,6 +88192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83162,9 +88212,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -83194,6 +88244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83209,12 +88261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26c1c1" }, { @@ -83242,6 +88295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83260,9 +88315,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31c54f", "States": { "2": { @@ -83290,6 +88345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83308,9 +88365,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -83338,6 +88395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83356,9 +88415,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -83388,6 +88447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83403,12 +88464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2879e" }, { @@ -83436,6 +88498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83454,9 +88518,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "085d1f", "States": { "2": { @@ -83484,6 +88548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83502,9 +88568,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -83532,6 +88598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83550,9 +88618,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -83582,6 +88650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83597,12 +88667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ecbc4" }, { @@ -83630,6 +88701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83645,12 +88718,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "482923" } ], @@ -83681,6 +88755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83690,9 +88766,9 @@ "Tablet": { "PageURL": "https://drive.google.com/file/d/18kFvIlY042OBhYYP64PNAp6HftaKVl8B/view" }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2fe44" }, { @@ -83720,6 +88796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83728,9 +88806,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -83757,6 +88835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83765,9 +88845,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -83794,6 +88874,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83813,7 +88895,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2633": { "FaceURL": "https://i.imgur.com/mHJP6b1.jpg", @@ -83821,12 +88904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -83853,6 +88937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83868,12 +88954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09dad0" }, { @@ -83901,6 +88988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83916,12 +89005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e3ba7" }, { @@ -83949,6 +89039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -83964,12 +89056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44e6e0" } ], @@ -84000,6 +89093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84015,12 +89110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d2913" } ], @@ -84051,6 +89147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84059,9 +89157,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -84088,6 +89186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84107,7 +89207,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2633": { "FaceURL": "https://i.imgur.com/mHJP6b1.jpg", @@ -84115,12 +89216,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -84147,6 +89249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84162,12 +89266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7fb39" }, { @@ -84195,6 +89300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84210,12 +89317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01cad5" }, { @@ -84243,6 +89351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84258,12 +89368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "410224" } ], @@ -84294,6 +89405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84309,12 +89422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "089a45" } ], @@ -84345,6 +89459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84353,9 +89469,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -84382,6 +89498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84401,7 +89519,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2633": { "FaceURL": "https://i.imgur.com/mHJP6b1.jpg", @@ -84409,12 +89528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -84441,6 +89561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84456,12 +89578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7249c3" }, { @@ -84489,6 +89612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84504,12 +89629,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dad4e8" }, { @@ -84537,6 +89663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84552,12 +89680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68357e" } ], @@ -84588,6 +89717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84603,12 +89734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29cf64" } ], @@ -84639,6 +89771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84647,9 +89781,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -84676,6 +89810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84695,7 +89831,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2633": { "FaceURL": "https://i.imgur.com/mHJP6b1.jpg", @@ -84703,12 +89840,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -84735,6 +89873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84750,12 +89890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "822e3d" }, { @@ -84783,6 +89924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84798,12 +89941,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af6f3" }, { @@ -84831,6 +89975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84846,12 +89992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97487a" } ], @@ -84882,6 +90029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84897,12 +90046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3aa40a" } ], @@ -84933,6 +90083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84941,9 +90093,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -84970,6 +90122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -84989,7 +90143,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2633": { "FaceURL": "https://i.imgur.com/mHJP6b1.jpg", @@ -84997,12 +90152,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -85029,6 +90185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85044,12 +90202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7df3b" }, { @@ -85077,6 +90236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85092,12 +90253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "279104" }, { @@ -85125,6 +90287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85140,12 +90304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87f5a8" } ], @@ -85176,6 +90341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85191,12 +90358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23d41e" } ], @@ -85227,6 +90395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85235,9 +90405,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -85264,6 +90434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85279,12 +90451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3465a5" }, { @@ -85312,6 +90485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85331,7 +90506,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2633": { "FaceURL": "https://i.imgur.com/mHJP6b1.jpg", @@ -85339,12 +90515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -85371,6 +90548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85386,12 +90565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7249c3" }, { @@ -85419,6 +90599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85434,12 +90616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2eb168" }, { @@ -85467,6 +90650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85482,12 +90667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a26c84" } ], @@ -85524,6 +90710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85564,12 +90752,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -85596,6 +90785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85611,12 +90802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68357e" }, { @@ -85644,6 +90836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85659,12 +90853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e0d4a" }, { @@ -85692,6 +90887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85707,12 +90904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3b4cd" }, { @@ -85740,6 +90938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85755,12 +90955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e6b6a" }, { @@ -85788,6 +90989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85803,12 +91006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b107dc" }, { @@ -85836,6 +91040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85851,12 +91057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68357e" }, { @@ -85884,6 +91091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85899,12 +91108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68357e" }, { @@ -85932,6 +91142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85947,12 +91159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cda27b" }, { @@ -85980,6 +91193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -85995,12 +91210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5abbc5" }, { @@ -86028,6 +91244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86043,12 +91261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9afd5e" }, { @@ -86076,6 +91295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86091,12 +91312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b4f86" }, { @@ -86124,6 +91346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86139,12 +91363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbd712" }, { @@ -86172,6 +91397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86187,12 +91414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68357e" }, { @@ -86220,6 +91448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86235,12 +91465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "451ccf" }, { @@ -86268,6 +91499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86283,12 +91516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68357e" }, { @@ -86316,6 +91550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86331,12 +91567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68357e" }, { @@ -86364,6 +91601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86379,12 +91618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5600a" }, { @@ -86412,6 +91652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86427,12 +91669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68357e" }, { @@ -86460,6 +91703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86475,12 +91720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a40a06" }, { @@ -86508,6 +91754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86523,12 +91771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "912143" }, { @@ -86556,6 +91805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86571,12 +91822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3452f" }, { @@ -86604,6 +91856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86619,12 +91873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f2cd7" }, { @@ -86652,6 +91907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86667,12 +91924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68357e" }, { @@ -86700,6 +91958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86715,12 +91975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68357e" } ], @@ -86751,6 +92012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86769,9 +92032,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Strange Aeons'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "82e1ed" } ], @@ -86822,6 +92085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86840,9 +92105,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"00dc67\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"0e6c8c\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.6971,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"102272\":{\"lock\":false,\"pos\":{\"x\":-10.2894,\"y\":1.6717,\"z\":2.0208},\"rot\":{\"x\":359.9201,\"y\":270.0023,\"z\":0.0169}},\"33116d\":{\"lock\":false,\"pos\":{\"x\":-27.119,\"y\":1.6184,\"z\":-3.2752},\"rot\":{\"x\":0.0446,\"y\":44.9999,\"z\":359.9316}},\"40f354\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"631549\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0089,\"z\":359.92}},\"6a9431\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0034,\"z\":0.0803}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.4879,\"y\":1.61,\"z\":-0.2199},\"rot\":{\"x\":359.9201,\"y\":269.9942,\"z\":0.0169}},\"79090a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"82e02f\":{\"lock\":false,\"pos\":{\"x\":-26.575,\"y\":1.6185,\"z\":-0.1012},\"rot\":{\"x\":359.9201,\"y\":269.9947,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6952,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"af4e73\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"bf5d39\":{\"lock\":false,\"pos\":{\"x\":-5.9411,\"y\":1.5569,\"z\":-25.3389},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"cb2e63\":{\"lock\":false,\"pos\":{\"x\":-23.6775,\"y\":1.689,\"z\":-0.0357},\"rot\":{\"x\":359.92,\"y\":270.3729,\"z\":180.0163}},\"ec7a73\":{\"lock\":false,\"pos\":{\"x\":-4.9066,\"y\":1.684,\"z\":-14.5418},\"rot\":{\"x\":359.9195,\"y\":270.04,\"z\":0.0161}},\"edcae4\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6934,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}},\"f305a2\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9978,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -86869,6 +92134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86887,9 +92154,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -86916,6 +92183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86931,12 +92200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "908abd" }, { @@ -86964,6 +92234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -86979,12 +92251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "220f53" }, { @@ -87012,6 +92285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87027,12 +92302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abd634" }, { @@ -87060,6 +92336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87079,12 +92357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -87111,6 +92390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87126,12 +92407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df5859" }, { @@ -87159,6 +92441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87174,12 +92458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edd17e" }, { @@ -87207,6 +92492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87222,12 +92509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "142ccd" } ], @@ -87258,6 +92546,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87282,12 +92572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -87314,6 +92605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87329,12 +92622,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81caf3" }, { @@ -87362,6 +92656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87377,12 +92673,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53bf80" }, { @@ -87410,6 +92707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87425,12 +92724,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0eade2" }, { @@ -87458,6 +92758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87473,12 +92775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8898a0" }, { @@ -87506,6 +92809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87521,12 +92826,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2aef7f" }, { @@ -87554,6 +92860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87569,12 +92877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5436be" }, { @@ -87602,6 +92911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87617,12 +92928,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af19f7" }, { @@ -87650,6 +92962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87665,12 +92979,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1a74f" } ], @@ -87701,6 +93016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87725,12 +93042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -87757,6 +93075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87772,12 +93092,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "191eb8" }, { @@ -87805,6 +93126,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87820,12 +93143,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fc69d" }, { @@ -87853,6 +93177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87868,12 +93194,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f229f3" }, { @@ -87901,6 +93228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87916,12 +93245,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8ac4a" }, { @@ -87949,6 +93279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -87964,12 +93296,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d70c9" }, { @@ -87997,6 +93330,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88012,12 +93347,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47d8aa" }, { @@ -88045,6 +93381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88060,12 +93398,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a20bc" }, { @@ -88093,6 +93432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88108,12 +93449,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb5d54" } ], @@ -88160,6 +93502,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88192,7 +93536,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "37": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -88200,12 +93545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -88232,6 +93578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88247,12 +93595,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -88280,6 +93629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88295,12 +93646,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -88328,6 +93680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88343,12 +93697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -88376,6 +93731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88391,12 +93748,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -88424,6 +93782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88439,12 +93799,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -88472,6 +93833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88487,12 +93850,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -88520,6 +93884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88535,12 +93901,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -88568,6 +93935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88583,12 +93952,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -88616,6 +93986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88631,12 +94003,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -88664,6 +94037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88679,12 +94054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" }, { @@ -88712,6 +94088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88727,12 +94105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a814c" }, { @@ -88760,6 +94139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88775,12 +94156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "754870" }, { @@ -88808,6 +94190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88823,12 +94207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f11672" }, { @@ -88856,6 +94241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88871,12 +94258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85da91" }, { @@ -88904,6 +94292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88919,12 +94309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98fea7" }, { @@ -88952,6 +94343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -88967,12 +94360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cbb71e" } ], @@ -89003,6 +94397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89021,12 +94417,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -89053,6 +94450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89068,12 +94467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c96242" }, { @@ -89101,6 +94501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89116,12 +94518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6df58" } ], @@ -89152,6 +94555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89172,12 +94577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -89204,6 +94610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89219,12 +94627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a36717" }, { @@ -89252,6 +94661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89267,12 +94678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6b5b0" }, { @@ -89300,6 +94712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89315,12 +94729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd0b63" }, { @@ -89348,6 +94763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89363,12 +94780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2db53e" } ], @@ -89399,6 +94817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89414,12 +94834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00dc67" }, { @@ -89447,6 +94868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89465,9 +94888,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec7a73" }, { @@ -89495,6 +94918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89518,12 +94943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -89550,6 +94976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89565,12 +94993,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89ac1b" }, { @@ -89598,6 +95027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89613,12 +95044,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58ff5b" }, { @@ -89646,6 +95078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89661,12 +95095,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22a242" }, { @@ -89694,6 +95129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89709,12 +95146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00dc67" }, { @@ -89742,6 +95180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89757,12 +95197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85cca8" }, { @@ -89790,6 +95231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89805,12 +95248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "992806" }, { @@ -89838,6 +95282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89853,12 +95299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82cbc4" } ], @@ -89889,6 +95336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89904,12 +95353,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40f354" }, { @@ -89937,6 +95387,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -89955,9 +95407,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -89985,6 +95437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90003,9 +95457,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -90033,6 +95487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90051,9 +95507,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -90083,6 +95539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90098,12 +95556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb2e63" }, { @@ -90131,6 +95590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90149,9 +95610,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "631549", "States": { "2": { @@ -90179,6 +95640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90197,9 +95660,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -90227,6 +95690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90245,9 +95710,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -90277,6 +95742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90295,9 +95762,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79090a", "States": { "2": { @@ -90325,6 +95792,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90343,9 +95812,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -90373,6 +95842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90391,9 +95862,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -90423,6 +95894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90441,9 +95914,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82e02f", "States": { "2": { @@ -90471,6 +95944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90489,9 +95964,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -90519,6 +95994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90537,9 +96014,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -90569,6 +96046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90587,9 +96066,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33116d", "States": { "2": { @@ -90617,6 +96096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90635,9 +96116,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -90665,6 +96146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90683,9 +96166,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -90715,6 +96198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90735,12 +96220,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -90767,6 +96253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90782,12 +96270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dac7e2" }, { @@ -90815,6 +96304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90830,12 +96321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "54de25" }, { @@ -90863,6 +96355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90878,12 +96372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b62323" }, { @@ -90911,6 +96406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90926,12 +96423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "716aba" } ], @@ -90962,6 +96460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -90977,12 +96477,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af4e73" }, { @@ -91010,6 +96511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91025,12 +96528,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf5d39", "States": { "2": { @@ -91058,6 +96562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91073,12 +96579,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f11669" }, "3": { @@ -91106,6 +96613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91121,12 +96630,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a009c" }, "4": { @@ -91154,6 +96664,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91169,12 +96681,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5b5b8" }, "5": { @@ -91202,6 +96715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91217,12 +96732,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f1bff" } } @@ -91275,6 +96791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91293,9 +96811,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"56a08b\":{\"lock\":false,\"pos\":{\"x\":-3.8679,\"y\":1.5824,\"z\":-15.4044},\"rot\":{\"x\":359.9197,\"y\":270.0026,\"z\":0.0168}},\"6ca52c\":{\"lock\":false,\"pos\":{\"x\":10.1258,\"y\":1.283,\"z\":1.8531},\"rot\":{\"x\":0.0799,\"y\":89.9977,\"z\":359.9831}},\"8578ad\":{\"lock\":false,\"pos\":{\"x\":-4.4263,\"y\":1.6455,\"z\":14.8008},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"b4cf5a\":{\"lock\":false,\"pos\":{\"x\":3.9877,\"y\":1.4679,\"z\":-27.2649},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":0.0169}},\"c0897e\":{\"lock\":false,\"pos\":{\"x\":10.4203,\"y\":1.2811,\"z\":-2.9799},\"rot\":{\"x\":0.0799,\"y\":89.9995,\"z\":359.9831}},\"f39e68\":{\"lock\":false,\"pos\":{\"x\":10.161,\"y\":1.2842,\"z\":6.4667},\"rot\":{\"x\":0.0799,\"y\":89.9954,\"z\":359.9831}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -91322,6 +96840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91330,9 +96850,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"082fa1\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6585,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9958,\"z\":180.0168}},\"144d2b\":{\"lock\":false,\"pos\":{\"x\":-11.0623,\"y\":1.6722,\"z\":11.9812},\"rot\":{\"x\":359.9201,\"y\":269.9939,\"z\":0.0169}},\"1a927c\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9962,\"z\":180.0169}},\"232875\":{\"lock\":false,\"pos\":{\"x\":-23.675,\"y\":1.6913,\"z\":7.5701},\"rot\":{\"x\":359.9201,\"y\":269.9802,\"z\":180.0169}},\"311a3a\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"65e2c3\":{\"lock\":false,\"pos\":{\"x\":-10.6924,\"y\":1.4894,\"z\":-23.761},\"rot\":{\"x\":359.9201,\"y\":269.9842,\"z\":0.0169}},\"69fec9\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.0169}},\"721d8d\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.7993,\"y\":1.6127,\"z\":7.4483},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":0.0169}},\"7d48cf\":{\"lock\":false,\"pos\":{\"x\":-20.8111,\"y\":1.6117,\"z\":3.8534},\"rot\":{\"x\":359.9316,\"y\":315,\"z\":359.9554}},\"994a74\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9959,\"z\":180.0169}},\"abf334\":{\"lock\":false,\"pos\":{\"x\":-2.6924,\"y\":1.6555,\"z\":-5.0416},\"rot\":{\"x\":359.9832,\"y\":0.0098,\"z\":359.9197}},\"c68778\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9974,\"z\":180.0169}},\"c80dc6\":{\"lock\":false,\"pos\":{\"x\":-3.9283,\"y\":1.7717,\"z\":5.7416},\"rot\":{\"x\":359.9197,\"y\":269.9996,\"z\":180.0168}},\"e65038\":{\"lock\":false,\"pos\":{\"x\":-10.8501,\"y\":1.6703,\"z\":8.4854},\"rot\":{\"x\":359.9201,\"y\":269.9908,\"z\":180.0169}},\"f76027\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":0.0169,\"y\":179.9852,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "DeckCustom", @@ -91359,6 +96879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91405,12 +96927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -91437,6 +96960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91451,12 +96976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b69e83" }, { @@ -91484,6 +97010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91491,9 +97019,9 @@ "Hands": true, "CardID": 401, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -91522,6 +97050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91529,9 +97059,9 @@ "Hands": true, "CardID": 402, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -91560,6 +97090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91567,9 +97099,9 @@ "Hands": true, "CardID": 403, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -91598,6 +97130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91605,9 +97139,9 @@ "Hands": true, "CardID": 404, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -91636,6 +97170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91643,9 +97179,9 @@ "Hands": true, "CardID": 405, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -91674,6 +97210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91681,9 +97219,9 @@ "Hands": true, "CardID": 406, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -91712,6 +97250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91719,9 +97259,9 @@ "Hands": true, "CardID": 407, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -91750,6 +97290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91757,9 +97299,9 @@ "Hands": true, "CardID": 408, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -91788,6 +97330,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91795,9 +97339,9 @@ "Hands": true, "CardID": 409, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -91826,6 +97370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91833,9 +97379,9 @@ "Hands": true, "CardID": 410, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -91864,6 +97410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91871,9 +97419,9 @@ "Hands": true, "CardID": 411, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -91902,6 +97450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91909,9 +97459,9 @@ "Hands": true, "CardID": 412, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -91940,6 +97490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91947,9 +97499,9 @@ "Hands": true, "CardID": 413, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -91978,6 +97530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -91985,9 +97539,9 @@ "Hands": true, "CardID": 414, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92016,6 +97570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92023,9 +97579,9 @@ "Hands": true, "CardID": 415, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92054,6 +97610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92061,9 +97619,9 @@ "Hands": true, "CardID": 416, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92092,6 +97650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92099,9 +97659,9 @@ "Hands": true, "CardID": 417, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92130,6 +97690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92137,9 +97699,9 @@ "Hands": true, "CardID": 418, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92168,6 +97730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92175,9 +97739,9 @@ "Hands": true, "CardID": 419, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92206,6 +97770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92213,9 +97779,9 @@ "Hands": true, "CardID": 420, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92244,6 +97810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92251,9 +97819,9 @@ "Hands": true, "CardID": 421, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92282,6 +97850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92289,9 +97859,9 @@ "Hands": true, "CardID": 422, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92320,6 +97890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92327,9 +97899,9 @@ "Hands": true, "CardID": 423, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92358,6 +97930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92365,9 +97939,9 @@ "Hands": true, "CardID": 424, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92396,6 +97970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92403,9 +97979,9 @@ "Hands": true, "CardID": 425, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92434,6 +98010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92441,9 +98019,9 @@ "Hands": true, "CardID": 426, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92472,6 +98050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92479,9 +98059,9 @@ "Hands": true, "CardID": 427, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92510,6 +98090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92517,9 +98099,9 @@ "Hands": true, "CardID": 428, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "544f1c" }, @@ -92548,6 +98130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92562,12 +98146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b31c80" } ], @@ -92598,6 +98183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92613,12 +98200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f76027" }, { @@ -92646,6 +98234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92661,12 +98251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abf334" }, { @@ -92694,6 +98285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92709,12 +98302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "082fa1" }, { @@ -92742,6 +98336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92760,9 +98356,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65e2c3" }, { @@ -92790,6 +98386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92805,12 +98403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "144d2b" }, { @@ -92838,6 +98437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92863,12 +98464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -92895,6 +98497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92910,12 +98514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "558449" }, { @@ -92943,6 +98548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -92958,12 +98565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf5335" }, { @@ -92991,6 +98599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93005,12 +98615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48cb77" }, { @@ -93038,6 +98649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93052,12 +98665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "082fa1" }, { @@ -93085,6 +98699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93099,12 +98715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "082fa1" }, { @@ -93132,6 +98749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93146,12 +98765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "082fa1" }, { @@ -93179,6 +98799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93193,12 +98815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "082fa1" }, { @@ -93226,6 +98849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93240,12 +98865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "082fa1" }, { @@ -93273,6 +98899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93287,12 +98915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "082fa1" } ], @@ -93323,6 +98952,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93338,12 +98969,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "994a74" }, { @@ -93371,6 +99003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93386,12 +99020,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a927c" }, { @@ -93419,6 +99054,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93437,9 +99074,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -93467,6 +99104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93485,9 +99124,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -93515,6 +99154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93533,9 +99174,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -93565,6 +99206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93583,9 +99226,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d48cf", "States": { "2": { @@ -93613,6 +99256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93631,9 +99276,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -93661,6 +99306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93679,9 +99326,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -93711,6 +99358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93726,12 +99375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "232875" }, { @@ -93759,6 +99409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93777,9 +99429,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "311a3a", "States": { "2": { @@ -93807,6 +99459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93825,9 +99479,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -93855,6 +99509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93873,9 +99529,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -93905,6 +99561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93920,12 +99578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c68778" }, { @@ -93953,6 +99612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -93971,9 +99632,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "721d8d", "States": { "2": { @@ -94001,6 +99662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94019,9 +99682,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -94049,6 +99712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94067,9 +99732,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -94099,6 +99764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94114,12 +99781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69fec9" } ], @@ -94150,6 +99818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94158,9 +99828,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"080bb7\":{\"lock\":false,\"pos\":{\"x\":-12.1512,\"y\":1.6635,\"z\":9.8782},\"rot\":{\"x\":359.9201,\"y\":269.9885,\"z\":0.0169}},\"082fa1\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"0ba5cb\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9906,\"z\":0.0803}},\"17dea8\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9954,\"z\":180.0169}},\"18487b\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9955,\"z\":180.0169}},\"1df3f1\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.6651,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.992,\"z\":180.0168}},\"3443db\":{\"lock\":false,\"pos\":{\"x\":-9.0945,\"y\":1.4862,\"z\":-27.1621},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"7e4091\":{\"lock\":false,\"pos\":{\"x\":-11.4489,\"y\":1.6642,\"z\":-11.1337},\"rot\":{\"x\":0.0799,\"y\":90.0101,\"z\":359.9832}},\"a76062\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6835,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0041,\"z\":180.0169}},\"a94d87\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6782,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"b0fd83\":{\"lock\":false,\"pos\":{\"x\":-20.7619,\"y\":1.7148,\"z\":14.8183},\"rot\":{\"x\":359.9201,\"y\":269.9963,\"z\":0.0169}},\"d2ee66\":{\"lock\":false,\"pos\":{\"x\":-12.5845,\"y\":1.7084,\"z\":13.4058},\"rot\":{\"x\":359.9201,\"y\":270.0015,\"z\":0.0169}},\"f4709f\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0169,\"y\":179.9892,\"z\":0.0803}},\"fccb6c\":{\"lock\":false,\"pos\":{\"x\":-20.0094,\"y\":1.6927,\"z\":11.4949},\"rot\":{\"x\":359.9832,\"y\":0.0397,\"z\":179.9201}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -94187,6 +99857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94213,7 +99885,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "12": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/", @@ -94221,12 +99894,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -94253,6 +99927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94267,12 +99943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de113d" }, { @@ -94300,6 +99977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94314,12 +99993,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cb27d" }, { @@ -94347,6 +100027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94361,12 +100043,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31e187" }, { @@ -94394,6 +100077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94408,12 +100093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a02546" }, { @@ -94441,6 +100127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94455,12 +100143,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "612cac" }, { @@ -94488,6 +100177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94502,12 +100193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68f7e7" }, { @@ -94535,6 +100227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94549,12 +100243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21ee79" }, { @@ -94582,6 +100277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94596,12 +100293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa12b9" }, { @@ -94629,6 +100327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94643,12 +100343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "912508" }, { @@ -94676,6 +100377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94690,12 +100393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "493754" } ], @@ -94726,6 +100430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94746,12 +100452,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -94778,6 +100485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94785,9 +100494,9 @@ "Hands": true, "CardID": 104, "SidewaysCard": true, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "741dba" }, @@ -94816,6 +100525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94823,9 +100534,9 @@ "Hands": true, "CardID": 105, "SidewaysCard": true, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "741dba" }, @@ -94854,6 +100565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94861,9 +100574,9 @@ "Hands": true, "CardID": 106, "SidewaysCard": true, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "741dba" }, @@ -94892,6 +100605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94906,12 +100621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "741dba" } ], @@ -94942,6 +100658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -94962,12 +100680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -94994,6 +100713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95008,12 +100729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "741dba" }, { @@ -95041,6 +100763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95055,12 +100779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "741dba" }, { @@ -95088,6 +100813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95102,12 +100829,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3707e9" }, { @@ -95135,6 +100863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95149,12 +100879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "741dba" } ], @@ -95185,6 +100916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95200,12 +100933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "082fa1" }, { @@ -95233,15 +100967,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e4091" }, { @@ -95269,6 +101005,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95287,9 +101025,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3443db" }, { @@ -95317,6 +101055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95353,7 +101093,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "9": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/", @@ -95361,12 +101102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -95393,6 +101135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95407,12 +101151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1983c4" }, { @@ -95440,6 +101185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95454,12 +101201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31a9e3" }, { @@ -95487,6 +101235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95501,12 +101251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f37124" }, { @@ -95534,6 +101285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95548,12 +101301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "544f1c" }, { @@ -95581,6 +101335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95595,12 +101351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d43b01" }, { @@ -95628,6 +101385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95642,12 +101401,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1349cf" }, { @@ -95675,6 +101435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95689,12 +101451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fa012" }, { @@ -95722,6 +101485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95736,12 +101501,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5d732" }, { @@ -95769,6 +101535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95783,12 +101551,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2edaba" }, { @@ -95816,6 +101585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95830,12 +101601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84c693" }, { @@ -95863,6 +101635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95877,12 +101651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a8eea" }, { @@ -95910,6 +101685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95924,12 +101701,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25a0af" }, { @@ -95957,6 +101735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -95971,12 +101751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c882c" }, { @@ -96004,6 +101785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96018,12 +101801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14683e" }, { @@ -96051,6 +101835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96065,12 +101851,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c407db" }, { @@ -96098,6 +101885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96112,12 +101901,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a3125" }, { @@ -96145,6 +101935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96159,12 +101951,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "daff54" }, { @@ -96192,6 +101985,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96206,12 +102001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d67ed2" }, { @@ -96239,6 +102035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96253,12 +102051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcbaf3" }, { @@ -96286,6 +102085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96301,12 +102102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3bc4a" } ], @@ -96337,6 +102139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96363,12 +102167,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -96395,6 +102200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96409,12 +102216,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "262b38" }, { @@ -96442,6 +102250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96456,12 +102266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9db071" }, { @@ -96489,6 +102300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96503,12 +102316,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67879e" }, { @@ -96536,6 +102350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96550,12 +102366,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82d94f" }, { @@ -96583,6 +102400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96597,12 +102416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c5795" }, { @@ -96630,6 +102450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96644,12 +102466,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d6bf7" }, { @@ -96677,6 +102500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96691,12 +102516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "283396" }, { @@ -96724,6 +102550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96738,12 +102566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "053be2" }, { @@ -96771,6 +102600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96785,12 +102616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0cb75" }, { @@ -96818,6 +102650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96832,12 +102666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b2ac4" } ], @@ -96868,6 +102703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96883,12 +102720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a94d87" }, { @@ -96916,6 +102754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96936,7 +102776,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "11": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/", @@ -96944,12 +102785,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -96976,6 +102818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -96991,12 +102835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01ba02" }, { @@ -97024,6 +102869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97039,12 +102886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eaa991" }, { @@ -97072,6 +102920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97087,12 +102937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fda8f3" }, { @@ -97120,6 +102971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97135,12 +102988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af6f67" } ], @@ -97171,6 +103025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97186,12 +103042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18487b" }, { @@ -97219,6 +103076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97234,12 +103093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17dea8" }, { @@ -97267,6 +103127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97281,12 +103143,13 @@ "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0fd83" }, { @@ -97314,6 +103177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97335,7 +103200,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "12": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/", @@ -97343,7 +103209,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "9": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/", @@ -97351,12 +103218,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -97383,6 +103251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97398,12 +103268,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29368e" }, { @@ -97431,6 +103302,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97445,12 +103318,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0800c7" }, { @@ -97478,6 +103352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97492,12 +103368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "337d91" }, { @@ -97525,6 +103402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97539,12 +103418,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2af2ca" }, { @@ -97572,6 +103452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97586,12 +103468,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0efb9" } ], @@ -97625,6 +103508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97633,9 +103518,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"2c45d7\":{\"lock\":false,\"pos\":{\"x\":-3.9522,\"y\":1.6556,\"z\":-10.434},\"rot\":{\"x\":359.9197,\"y\":270.0851,\"z\":0.0167}},\"502900\":{\"lock\":false,\"pos\":{\"x\":-11.76,\"y\":1.6768,\"z\":15.2618},\"rot\":{\"x\":359.9201,\"y\":269.9885,\"z\":0.2598}},\"54af2a\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.6758,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0072,\"z\":180.0168}},\"5aa9de\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"9189f7\":{\"lock\":false,\"pos\":{\"x\":-12.8378,\"y\":1.6835,\"z\":4.1605},\"rot\":{\"x\":359.9201,\"y\":270.0199,\"z\":180.0168}},\"9265a9\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6555,\"z\":-5.0485},\"rot\":{\"x\":359.9832,\"y\":0.0003,\"z\":359.9197}},\"9b6393\":{\"lock\":false,\"pos\":{\"x\":-11.6607,\"y\":1.6717,\"z\":11.3885},\"rot\":{\"x\":359.9201,\"y\":269.9916,\"z\":0.0169}},\"9fde32\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0851,\"z\":0.0168}},\"c8d06a\":{\"lock\":false,\"pos\":{\"x\":-9.326,\"y\":1.5869,\"z\":-25.7325},\"rot\":{\"x\":359.9201,\"y\":270.0097,\"z\":180.0168}},\"cf55fb\":{\"lock\":false,\"pos\":{\"x\":-11.5779,\"y\":1.6718,\"z\":8.2088},\"rot\":{\"x\":359.9201,\"y\":269.9921,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -97662,6 +103547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97690,12 +103577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -97722,6 +103610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97736,12 +103626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0255d" }, { @@ -97769,6 +103660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97783,12 +103676,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "171eb5" }, { @@ -97816,6 +103710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97830,12 +103726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c16182" }, { @@ -97863,6 +103760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97877,12 +103776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4caa6" }, { @@ -97910,6 +103810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97924,12 +103826,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12952c" }, { @@ -97957,6 +103860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -97971,12 +103876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6fe01" }, { @@ -98004,6 +103910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98018,12 +103926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30ef4c" }, { @@ -98051,6 +103960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98065,12 +103976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cc3f5" }, { @@ -98098,6 +104010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98112,12 +104026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79b77a" }, { @@ -98145,6 +104060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98159,12 +104076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95f5b5" }, { @@ -98192,6 +104110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98206,12 +104126,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fad81" }, { @@ -98239,6 +104160,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98253,12 +104176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86a74e" } ], @@ -98289,6 +104213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98304,12 +104230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5aa9de" }, { @@ -98337,6 +104264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98352,12 +104281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9265a9" }, { @@ -98385,6 +104315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98400,12 +104332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c45d7" }, { @@ -98433,6 +104366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98451,9 +104386,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8d06a" }, { @@ -98481,6 +104416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98501,12 +104438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -98533,6 +104471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98547,12 +104487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a0de9" }, { @@ -98580,6 +104521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98594,12 +104537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a80fea" }, { @@ -98627,6 +104571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98641,12 +104587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4be88" }, { @@ -98674,6 +104621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98688,12 +104637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59ee91" } ], @@ -98724,6 +104674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98745,12 +104697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -98777,6 +104730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98791,12 +104746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "558d17" }, { @@ -98824,6 +104780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98838,12 +104796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2501cc" }, { @@ -98871,6 +104830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98885,12 +104846,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4b3b0" }, { @@ -98918,6 +104880,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98932,12 +104896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dad37d" }, { @@ -98965,6 +104930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -98979,12 +104946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83bb07" } ], @@ -99015,6 +104983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99030,12 +105000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf55fb" }, { @@ -99063,6 +105034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99085,12 +105058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -99117,6 +105091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99132,12 +105108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6277e8" }, { @@ -99165,6 +105142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99180,12 +105159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1bf952" }, { @@ -99213,6 +105193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99228,12 +105210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e51da5" }, { @@ -99261,6 +105244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99276,12 +105261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "064d5e" }, { @@ -99309,6 +105295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99324,12 +105312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "446aef" }, { @@ -99357,6 +105346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99372,12 +105363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0538a" } ], @@ -99408,6 +105400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99423,12 +105417,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fde32" } ], @@ -99459,6 +105454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99483,7 +105480,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/", @@ -99491,12 +105489,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -99523,6 +105522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99538,12 +105539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01ba02" }, { @@ -99571,6 +105573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99586,12 +105590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27d28d" }, { @@ -99619,6 +105624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99634,12 +105641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4de3ab" }, { @@ -99667,6 +105675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99682,12 +105692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3acbaf" }, { @@ -99715,6 +105726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99730,12 +105743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51e559" }, { @@ -99763,6 +105777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99778,12 +105794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "570879" }, { @@ -99811,6 +105828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99826,12 +105845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58e49f" }, { @@ -99859,6 +105879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99874,12 +105896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fac9c5" } ], @@ -99910,6 +105933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99928,9 +105953,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "56a08b" }, { @@ -99958,6 +105983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -99976,9 +106003,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4cf5a", "States": { "2": { @@ -100006,6 +106033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100024,9 +106053,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65e2c3" }, "3": { @@ -100054,6 +106083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100072,9 +106103,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23eba0" }, "4": { @@ -100102,6 +106133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100120,9 +106153,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4badf1" } } @@ -100175,6 +106208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100193,9 +106228,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0251e6\":{\"lock\":false,\"pos\":{\"x\":-58.7691,\"y\":1.7417,\"z\":22.2313},\"rot\":{\"x\":359.9201,\"y\":269.9973,\"z\":0.0169}},\"04fdb8\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0046,\"z\":0.0168}},\"07bfca\":{\"lock\":false,\"pos\":{\"x\":-11.1535,\"y\":1.6509,\"z\":1.3602},\"rot\":{\"x\":359.9201,\"y\":269.9977,\"z\":0.0169}},\"1ae75c\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":0.0169}},\"22cf16\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9969,\"z\":0.0168}},\"336335\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6828,\"z\":-11.51},\"rot\":{\"x\":359.9201,\"y\":269.9848,\"z\":0.0169}},\"3cf9b8\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9969,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.5194,\"y\":1.6101,\"z\":-0.0446},\"rot\":{\"x\":359.9201,\"y\":270.0053,\"z\":0.0169}},\"909b6f\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0029,\"z\":0.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6951,\"y\":1.5583,\"z\":14.2794},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"afc427\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6874,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9971,\"z\":0.0169}},\"b93ec9\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9976,\"z\":0.0169}},\"c606a1\":{\"lock\":false,\"pos\":{\"x\":-4.0681,\"y\":1.5827,\"z\":-15.3226},\"rot\":{\"x\":359.9197,\"y\":270.0012,\"z\":0.0168}},\"d37670\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.6705,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0103,\"z\":180.0168}},\"e28e5b\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6782,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9969,\"z\":0.0169}},\"eb6cf0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9966,\"z\":0.0169}},\"f0dbb0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0155,\"z\":359.92}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -100222,6 +106257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100237,12 +106274,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0251e6" }, { @@ -100270,6 +106308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100290,12 +106330,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -100322,6 +106363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100337,12 +106380,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9601e6" }, { @@ -100370,6 +106414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100385,12 +106431,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b798d2" }, { @@ -100418,6 +106465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100433,12 +106482,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d4fdd" }, { @@ -100466,6 +106516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100481,12 +106533,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbcb1d" } ], @@ -100517,6 +106570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100541,12 +106596,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -100573,6 +106629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100588,12 +106646,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "743487" }, { @@ -100621,6 +106680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100636,12 +106697,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53e3bb" }, { @@ -100669,6 +106731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100684,12 +106748,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f044e" }, { @@ -100717,6 +106782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100732,12 +106799,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3946e" }, { @@ -100765,6 +106833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100780,12 +106850,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba0c93" }, { @@ -100813,6 +106884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100828,12 +106901,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4b75a" }, { @@ -100861,6 +106935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100876,12 +106952,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "918810" }, { @@ -100909,6 +106986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100924,12 +107003,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25836b" } ], @@ -100960,6 +107040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -100975,12 +107057,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ae75c" }, { @@ -101008,6 +107091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101023,12 +107108,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22cf16" }, { @@ -101056,6 +107142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101071,12 +107159,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "336335" }, { @@ -101104,6 +107193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101119,12 +107210,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cf9b8" }, { @@ -101152,6 +107244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101170,9 +107264,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -101200,6 +107294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101218,9 +107314,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -101248,6 +107344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101266,9 +107364,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -101298,6 +107396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101318,12 +107418,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -101350,6 +107451,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101365,12 +107468,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1da86a" }, { @@ -101398,6 +107502,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101413,12 +107519,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "529efd" }, { @@ -101446,6 +107553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101461,12 +107570,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d305a1" }, { @@ -101494,6 +107604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101509,12 +107621,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbcb1d" } ], @@ -101545,6 +107658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101563,9 +107678,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -101592,6 +107707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101607,12 +107724,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16a8e0" }, { @@ -101640,6 +107758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101655,12 +107775,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e998cb" }, { @@ -101688,6 +107809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101703,12 +107826,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "debae4" }, { @@ -101736,6 +107860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101751,12 +107877,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b170f" }, { @@ -101784,6 +107911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101799,12 +107928,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "743487" }, { @@ -101832,6 +107962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101847,12 +107979,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5b3a4" }, { @@ -101880,6 +108013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101895,12 +108030,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f0d2d" }, { @@ -101928,6 +108064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101948,12 +108086,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -101980,6 +108119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -101995,12 +108136,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "832d74" }, { @@ -102028,6 +108170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102043,12 +108187,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "018a1f" }, { @@ -102076,6 +108221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102091,12 +108238,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd3996" }, { @@ -102124,6 +108272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102139,12 +108289,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ca949" } ], @@ -102175,6 +108326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102199,12 +108352,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -102231,6 +108385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102246,12 +108402,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2238e7" }, { @@ -102279,6 +108436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102294,12 +108453,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ccc67" }, { @@ -102327,6 +108487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102342,12 +108504,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2238e7" }, { @@ -102375,6 +108538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102390,12 +108555,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d65c6b" }, { @@ -102423,6 +108589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102438,12 +108606,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d65c6b" }, { @@ -102471,6 +108640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102486,12 +108657,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d65c6b" }, { @@ -102519,6 +108691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102534,12 +108708,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5fdcb" }, { @@ -102567,6 +108742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102582,12 +108759,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5fdcb" } ], @@ -102618,6 +108796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102643,12 +108823,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -102675,6 +108856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102690,12 +108873,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45a468" }, { @@ -102723,6 +108907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102738,12 +108924,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aad824" }, { @@ -102771,6 +108958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102786,12 +108975,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17a913" }, { @@ -102819,6 +109009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102834,12 +109026,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c915dc" }, { @@ -102867,6 +109060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102882,12 +109077,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c915dc" }, { @@ -102915,6 +109111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102930,12 +109128,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c915dc" }, { @@ -102963,6 +109162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -102978,12 +109179,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f46880" }, { @@ -103011,6 +109213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103026,12 +109230,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ce81a" }, { @@ -103059,6 +109264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103074,12 +109281,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df854c" } ], @@ -103110,6 +109318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103129,12 +109339,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -103161,6 +109372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103174,12 +109387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" }, { @@ -103207,6 +109421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103220,12 +109436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -103253,6 +109470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103266,12 +109485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbc9d1" } ], @@ -103318,6 +109538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103333,12 +109555,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "afc427" }, { @@ -103366,6 +109589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103381,12 +109606,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b93ec9" }, { @@ -103414,6 +109640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103432,9 +109660,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Pensher Wyrm'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "c606a1" }, { @@ -103462,6 +109690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103489,7 +109719,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2742": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -103497,12 +109728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -103529,6 +109761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103542,12 +109776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -103575,6 +109810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103588,12 +109825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -103621,6 +109859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103636,12 +109876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f8c7a" }, { @@ -103669,6 +109910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103682,12 +109925,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -103715,6 +109959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103730,12 +109976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87710e" }, { @@ -103763,6 +110010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103776,12 +110025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -103809,6 +110059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103824,12 +110076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e44cc" }, { @@ -103857,6 +110110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103870,12 +110125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -103903,6 +110159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103918,12 +110176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b1c28" }, { @@ -103951,6 +110210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -103966,12 +110227,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -103999,6 +110261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104012,12 +110276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" } ], @@ -104048,6 +110313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104063,12 +110330,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e28e5b" }, { @@ -104096,6 +110364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104111,12 +110381,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb6cf0" }, { @@ -104144,6 +110415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104162,9 +110435,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0dbb0", "States": { "2": { @@ -104192,6 +110465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104210,9 +110485,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -104240,6 +110515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104258,9 +110535,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -104313,6 +110590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104331,9 +110610,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"526ff9\":{\"lock\":false,\"pos\":{\"x\":9.7361,\"y\":1.2851,\"z\":7.604},\"rot\":{\"x\":0.0799,\"y\":89.999,\"z\":359.9831}},\"5b3ac7\":{\"lock\":false,\"pos\":{\"x\":9.9267,\"y\":1.2833,\"z\":1.7477},\"rot\":{\"x\":0.0799,\"y\":89.9971,\"z\":359.9831}},\"d166f2\":{\"lock\":false,\"pos\":{\"x\":9.8646,\"y\":1.2814,\"z\":-4.5878},\"rot\":{\"x\":0.0799,\"y\":89.9959,\"z\":359.9831}},\"d5b06c\":{\"lock\":false,\"pos\":{\"x\":-4.3545,\"y\":1.5833,\"z\":-14.5586},\"rot\":{\"x\":359.9197,\"y\":270.0016,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -104360,6 +110639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104368,9 +110649,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"1bf221\":{\"lock\":false,\"pos\":{\"x\":-11.0752,\"y\":1.6688,\"z\":0.4465},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":0.0169}},\"3ac9dc\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9896,\"z\":0.0169}},\"47720a\":{\"lock\":false,\"pos\":{\"x\":-50.9854,\"y\":1.7267,\"z\":8.1774},\"rot\":{\"x\":359.9201,\"y\":270.0225,\"z\":0.0168}},\"66bd6a\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0303,\"z\":0.0168}},\"68cf11\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9871,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.3105,\"y\":1.6098,\"z\":0.0068},\"rot\":{\"x\":359.9201,\"y\":269.9943,\"z\":0.0169}},\"74c0a6\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0225,\"z\":0.0168}},\"7778b2\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7024,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9848,\"z\":180.0168}},\"8bf28c\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":180.0169}},\"bfa819\":{\"lock\":false,\"pos\":{\"x\":-12.6228,\"y\":1.6843,\"z\":7.6789},\"rot\":{\"x\":359.9201,\"y\":270.0172,\"z\":180.0168}},\"c7985e\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6368,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":0.0687}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -104397,6 +110678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104421,7 +110704,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "1499": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/", @@ -104429,12 +110713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -104461,6 +110746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104474,12 +110761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d84de0" }, { @@ -104507,6 +110795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104520,12 +110810,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d60f3b" }, { @@ -104553,6 +110844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104566,12 +110859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a13ae" }, { @@ -104599,6 +110893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104612,12 +110908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c193f" }, { @@ -104645,6 +110942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104658,12 +110957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4218a0" }, { @@ -104691,6 +110991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104705,12 +111007,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad42fd" }, { @@ -104738,6 +111041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104751,12 +111056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a65f30" }, { @@ -104784,6 +111090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104797,12 +111105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e53b0" } ], @@ -104833,6 +111142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104866,12 +111177,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -104898,6 +111210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104911,12 +111225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" }, { @@ -104944,6 +111259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -104957,12 +111274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -104990,6 +111308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105003,12 +111323,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -105036,6 +111357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105049,12 +111372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -105082,6 +111406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105095,12 +111421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbc9d1" }, { @@ -105128,6 +111455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105141,12 +111470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -105174,6 +111504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105187,12 +111519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -105220,6 +111553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105233,12 +111568,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -105266,6 +111602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105279,12 +111617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -105312,6 +111651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105327,12 +111668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" }, { @@ -105360,6 +111702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105373,12 +111717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -105406,6 +111751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105419,12 +111766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -105452,6 +111800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105465,12 +111815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -105498,6 +111849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105511,12 +111864,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -105544,6 +111898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105557,12 +111913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -105590,6 +111947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105603,12 +111962,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -105636,6 +111996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105649,12 +112011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" } ], @@ -105685,6 +112048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105704,12 +112069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -105736,6 +112102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105750,12 +112118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44f61b" }, { @@ -105783,6 +112152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105797,12 +112168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67c64d" }, { @@ -105830,6 +112202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105844,12 +112218,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e4ebf" } ], @@ -105880,6 +112255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105899,12 +112276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -105931,6 +112309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105945,12 +112325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57b83a" }, { @@ -105978,6 +112359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -105992,12 +112375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c24256" }, { @@ -106025,6 +112409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106039,12 +112425,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd6371" } ], @@ -106075,6 +112462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106090,12 +112479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74c0a6" }, { @@ -106123,6 +112513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106145,12 +112537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -106177,6 +112570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106192,12 +112587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3d1dc" }, { @@ -106225,6 +112621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106240,12 +112638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a249f" }, { @@ -106273,6 +112672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106288,12 +112689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02a509" }, { @@ -106321,6 +112723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106336,12 +112740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc43d7" }, { @@ -106369,6 +112774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106384,12 +112791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd3ad8" }, { @@ -106417,6 +112825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106432,12 +112842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f46a4" } ], @@ -106468,6 +112879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106483,12 +112896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1bf221" }, { @@ -106516,6 +112930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106531,12 +112947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66bd6a" }, { @@ -106564,6 +112981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106582,9 +113001,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -106612,6 +113031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106630,9 +113051,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -106660,6 +113081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106678,9 +113101,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -106710,6 +113133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106725,12 +113150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bf28c" }, { @@ -106758,6 +113184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106773,12 +113201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47720a" } ], @@ -106809,6 +113238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106817,9 +113248,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"069c0e\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0486},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":0.0169}},\"15aea9\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.664,\"z\":0.3752},\"rot\":{\"x\":359.9197,\"y\":269.9871,\"z\":0.0169}},\"1a5389\":{\"lock\":false,\"pos\":{\"x\":-12.2377,\"y\":1.6868,\"z\":5.5191},\"rot\":{\"x\":359.9201,\"y\":269.9902,\"z\":180.0169}},\"22d44e\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.655,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":0.0687}},\"39f252\":{\"lock\":false,\"pos\":{\"x\":-11.2701,\"y\":1.6729,\"z\":13.4063},\"rot\":{\"x\":359.9201,\"y\":269.9742,\"z\":0.0169}},\"6abf04\":{\"lock\":false,\"pos\":{\"x\":-12.0712,\"y\":1.6706,\"z\":1.9793},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"732e77\":{\"lock\":false,\"pos\":{\"x\":-3.8398,\"y\":1.6625,\"z\":14.8495},\"rot\":{\"x\":359.9197,\"y\":269.9346,\"z\":0.0169}},\"74c0a6\":{\"lock\":false,\"pos\":{\"x\":-3.9564,\"y\":1.6557,\"z\":-10.4355},\"rot\":{\"x\":359.9198,\"y\":269.693,\"z\":0.0173}},\"a17577\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9972,\"z\":180.0169}},\"b8835d\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7131,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":180.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -106846,6 +113277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106861,12 +113294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22d44e" }, { @@ -106894,6 +113328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106913,12 +113349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -106945,6 +113382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -106959,12 +113398,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "189e30" }, { @@ -106992,6 +113432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107006,12 +113448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3238c5" }, { @@ -107039,6 +113482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107053,12 +113498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37b85f" } ], @@ -107089,6 +113535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107104,12 +113552,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "39f252" }, { @@ -107137,6 +113586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107172,12 +113623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -107204,6 +113656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107218,12 +113672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fdfed" }, { @@ -107251,6 +113706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107265,12 +113722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce1094" }, { @@ -107298,6 +113756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107312,12 +113772,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "603fa3" }, { @@ -107345,6 +113806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107359,12 +113822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "521af8" }, { @@ -107392,6 +113856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107406,12 +113872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "662b90" }, { @@ -107439,6 +113906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107453,12 +113922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6c2e0" }, { @@ -107486,6 +113956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107500,12 +113972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3127cd" }, { @@ -107533,6 +114006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107547,12 +114022,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4160c3" }, { @@ -107580,6 +114056,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107594,12 +114072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3db0c2" }, { @@ -107627,6 +114106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107641,12 +114122,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f50738" }, { @@ -107674,6 +114156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107688,12 +114172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8584b" }, { @@ -107721,6 +114206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107735,12 +114222,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2b550" }, { @@ -107768,6 +114256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107782,12 +114272,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76b30a" }, { @@ -107815,6 +114306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107829,12 +114322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3c140" }, { @@ -107862,6 +114356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107876,12 +114372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a573bf" }, { @@ -107909,6 +114406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107923,12 +114422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00c573" }, { @@ -107956,6 +114456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -107970,12 +114472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2811f" }, { @@ -108003,6 +114506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108017,12 +114522,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93c906" }, { @@ -108050,6 +114556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108064,12 +114572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e63c5" } ], @@ -108100,6 +114609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108123,12 +114634,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -108155,6 +114667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108169,12 +114683,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4cb45" }, { @@ -108202,6 +114717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108216,12 +114733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b0672" }, { @@ -108249,6 +114767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108263,12 +114783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e6ef1" }, { @@ -108296,6 +114817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108310,12 +114833,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d1c5a" }, { @@ -108343,6 +114867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108357,12 +114883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7f55b" }, { @@ -108390,6 +114917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108404,12 +114933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d189a" }, { @@ -108437,6 +114967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108451,12 +114983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b5860" } ], @@ -108487,6 +115020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108502,12 +115037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6abf04" }, { @@ -108535,6 +115071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108553,12 +115091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -108585,6 +115124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108599,12 +115140,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e4ebf" }, { @@ -108632,6 +115174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108646,12 +115190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdbd74" } ], @@ -108682,6 +115227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108701,12 +115248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -108733,6 +115281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108747,12 +115297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31de6b" }, { @@ -108780,6 +115331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108794,12 +115347,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b5db5" }, { @@ -108827,6 +115381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108841,12 +115397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15d75c" } ], @@ -108877,6 +115434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108892,12 +115451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74c0a6" }, { @@ -108925,6 +115485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108940,12 +115502,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a17577" } ], @@ -108976,6 +115539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -108984,9 +115549,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0c7cb7\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9853,\"z\":0.0169}},\"0f1ac9\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.0299},\"rot\":{\"x\":359.9201,\"y\":269.9959,\"z\":180.0169}},\"17db9c\":{\"lock\":false,\"pos\":{\"x\":-2.6887,\"y\":1.655,\"z\":-5.0534},\"rot\":{\"x\":359.9197,\"y\":269.988,\"z\":0.0169}},\"1c6fa6\":{\"lock\":false,\"pos\":{\"x\":-20.4923,\"y\":1.6078,\"z\":-7.5955},\"rot\":{\"x\":359.9201,\"y\":269.9947,\"z\":0.0169}},\"259cf3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.0298},\"rot\":{\"x\":359.9201,\"y\":269.9853,\"z\":180.0169}},\"3c4916\":{\"lock\":false,\"pos\":{\"x\":-24.6779,\"y\":1.6169,\"z\":3.3941},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.92}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-27.1403,\"y\":1.6227,\"z\":11.4079},\"rot\":{\"x\":0.0253,\"y\":29.9999,\"z\":359.9224}},\"48182d\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6913,\"z\":7.5701},\"rot\":{\"x\":359.9201,\"y\":269.998,\"z\":180.0169}},\"49a48d\":{\"lock\":false,\"pos\":{\"x\":-20.456,\"y\":1.6133,\"z\":11.0039},\"rot\":{\"x\":359.9454,\"y\":330.0001,\"z\":359.9392}},\"4c90c4\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.7004,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9832,\"z\":180.0169}},\"4ffff6\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.9201}},\"5b6a3e\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9971,\"z\":180.0169}},\"60479c\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9853,\"z\":0.0169}},\"712716\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.983,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.2757,\"y\":1.6097,\"z\":-0.1469},\"rot\":{\"x\":359.9201,\"y\":269.9946,\"z\":0.0169}},\"81cfd0\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7344,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9904,\"z\":180.0168}},\"85162c\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.376},\"rot\":{\"x\":359.9197,\"y\":269.9747,\"z\":0.0169}},\"87ca77\":{\"lock\":false,\"pos\":{\"x\":-19.4346,\"y\":1.6074,\"z\":-3.9882},\"rot\":{\"x\":0.0446,\"y\":44.9998,\"z\":359.9316}},\"958ae4\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9962,\"z\":180.0169}},\"9bf7f7\":{\"lock\":false,\"pos\":{\"x\":-4.5813,\"y\":1.6639,\"z\":14.6068},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":0.0169}},\"9ee9b3\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6935,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9973,\"z\":180.0169}},\"a890ff\":{\"lock\":false,\"pos\":{\"x\":1.6971,\"y\":1.6545,\"z\":14.2909},\"rot\":{\"x\":359.9551,\"y\":225.0642,\"z\":0.0686}},\"c98d4d\":{\"lock\":false,\"pos\":{\"x\":-27.175,\"y\":1.6216,\"z\":7.4327},\"rot\":{\"x\":0.0799,\"y\":89.9678,\"z\":359.9831}},\"d21dcc\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}},\"dd44d6\":{\"lock\":false,\"pos\":{\"x\":-28.2992,\"y\":1.6219,\"z\":3.0842},\"rot\":{\"x\":359.9316,\"y\":315.0104,\"z\":359.9554}},\"e37679\":{\"lock\":false,\"pos\":{\"x\":-20.8988,\"y\":1.6128,\"z\":7.3295},\"rot\":{\"x\":359.9201,\"y\":270.0333,\"z\":0.0169}},\"e98e39\":{\"lock\":false,\"pos\":{\"x\":-21.6665,\"y\":1.6108,\"z\":-2.9587},\"rot\":{\"x\":359.9316,\"y\":315.0323,\"z\":359.9554}},\"f56146\":{\"lock\":false,\"pos\":{\"x\":-12.3746,\"y\":1.6693,\"z\":2.5663},\"rot\":{\"x\":359.9201,\"y\":269.9806,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -109013,6 +115578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109028,12 +115595,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bf7f7" }, { @@ -109061,6 +115629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109080,7 +115650,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/", @@ -109088,12 +115659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -109120,6 +115692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109134,12 +115708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad42fd" }, { @@ -109167,6 +115742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109181,12 +115758,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f86072" }, { @@ -109214,6 +115792,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109228,12 +115808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c306c0" } ], @@ -109264,6 +115845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109303,12 +115886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -109335,6 +115919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109342,9 +115928,9 @@ "Hands": true, "CardID": 154626, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109373,6 +115959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109380,9 +115968,9 @@ "Hands": true, "CardID": 154627, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109411,6 +115999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109418,9 +116008,9 @@ "Hands": true, "CardID": 154628, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109449,6 +116039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109456,9 +116048,9 @@ "Hands": true, "CardID": 154629, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109487,6 +116079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109494,9 +116088,9 @@ "Hands": true, "CardID": 154630, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109525,6 +116119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109532,9 +116128,9 @@ "Hands": true, "CardID": 154631, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109563,6 +116159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109570,9 +116168,9 @@ "Hands": true, "CardID": 154632, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109601,6 +116199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109608,9 +116208,9 @@ "Hands": true, "CardID": 154633, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109639,6 +116239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109646,9 +116248,9 @@ "Hands": true, "CardID": 154634, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109677,6 +116279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109684,9 +116288,9 @@ "Hands": true, "CardID": 154635, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109715,6 +116319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109722,9 +116328,9 @@ "Hands": true, "CardID": 154636, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109753,6 +116359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109760,9 +116368,9 @@ "Hands": true, "CardID": 154637, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109791,6 +116399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109798,9 +116408,9 @@ "Hands": true, "CardID": 154638, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109829,6 +116439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109836,9 +116448,9 @@ "Hands": true, "CardID": 154639, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109867,6 +116479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109874,9 +116488,9 @@ "Hands": true, "CardID": 154640, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109905,6 +116519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109912,9 +116528,9 @@ "Hands": true, "CardID": 154641, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109943,6 +116559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109950,9 +116568,9 @@ "Hands": true, "CardID": 154642, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -109981,6 +116599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -109988,9 +116608,9 @@ "Hands": true, "CardID": 154643, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -110019,6 +116639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110026,9 +116648,9 @@ "Hands": true, "CardID": 154644, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -110057,6 +116679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110064,9 +116688,9 @@ "Hands": true, "CardID": 154645, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -110095,6 +116719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110102,9 +116728,9 @@ "Hands": true, "CardID": 154646, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -110133,6 +116759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110140,9 +116768,9 @@ "Hands": true, "CardID": 154647, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" }, @@ -110171,6 +116799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110178,9 +116808,9 @@ "Hands": true, "CardID": 154648, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "ad42fd" } @@ -110212,6 +116842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110231,12 +116863,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -110263,6 +116896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110277,12 +116912,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e4ebf" }, { @@ -110310,6 +116946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110324,12 +116962,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a75dc" }, { @@ -110357,6 +116996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110371,12 +117012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e4ebf" } ], @@ -110407,6 +117049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110426,12 +117070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -110458,6 +117103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110472,12 +117119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e4ebf" }, { @@ -110505,6 +117153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110519,12 +117169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56cb67" }, { @@ -110552,6 +117203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110566,12 +117219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c2c5c" } ], @@ -110602,6 +117256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110617,12 +117273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c7cb7" }, { @@ -110650,6 +117307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110670,7 +117329,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "1545": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/", @@ -110678,7 +117338,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/", @@ -110686,12 +117347,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -110718,6 +117380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110733,12 +117397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f47c0d" }, { @@ -110766,6 +117431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110781,12 +117448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c39c6" }, { @@ -110814,6 +117482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110829,12 +117499,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d78a6c" }, { @@ -110862,6 +117533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110877,12 +117550,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74c0a6" } ], @@ -110913,6 +117587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110928,12 +117604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ee9b3" }, { @@ -110961,6 +117638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -110979,9 +117658,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49a48d", "States": { "2": { @@ -111009,6 +117688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111027,9 +117708,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -111057,6 +117738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111075,9 +117758,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -111107,6 +117790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111122,12 +117807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b6a3e" }, { @@ -111155,6 +117841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111170,12 +117858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f1ac9" }, { @@ -111203,6 +117892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111221,9 +117912,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d21dcc", "States": { "2": { @@ -111251,6 +117942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111269,9 +117962,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -111299,6 +117992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111317,9 +118012,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -111349,6 +118044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111364,12 +118061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "712716" }, { @@ -111397,6 +118095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111415,9 +118115,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e37679", "States": { "2": { @@ -111445,6 +118145,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111463,9 +118165,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -111493,6 +118195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111511,9 +118215,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -111543,6 +118247,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111561,9 +118267,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -111591,6 +118297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111609,9 +118317,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -111639,6 +118347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111657,9 +118367,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -111689,6 +118399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111707,9 +118419,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87ca77", "States": { "2": { @@ -111737,6 +118449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111755,9 +118469,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -111785,6 +118499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111803,9 +118519,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -111835,6 +118551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111853,9 +118571,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c6fa6", "States": { "2": { @@ -111883,6 +118601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111901,9 +118621,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -111931,6 +118651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111949,9 +118671,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -111981,6 +118703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -111999,9 +118723,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e98e39", "States": { "2": { @@ -112029,6 +118753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112047,9 +118773,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -112077,6 +118803,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112095,9 +118823,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -112127,6 +118855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112142,12 +118872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48182d" }, { @@ -112175,6 +118906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112193,9 +118926,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c4916", "States": { "3": { @@ -112223,6 +118956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112241,9 +118976,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -112271,6 +119006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112289,9 +119026,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d72fce" } } @@ -112321,6 +119058,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112336,12 +119075,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "259cf3" }, { @@ -112369,6 +119109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112387,9 +119129,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ffff6", "States": { "2": { @@ -112417,6 +119159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112435,9 +119179,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -112465,6 +119209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112483,9 +119229,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -112515,6 +119261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112530,12 +119278,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "958ae4" }, { @@ -112563,6 +119312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112581,9 +119332,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -112611,6 +119362,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112629,9 +119382,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -112659,6 +119412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112677,9 +119432,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21db6a" } } @@ -112709,6 +119464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112727,9 +119484,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c98d4d", "States": { "2": { @@ -112757,6 +119514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112775,9 +119534,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -112805,6 +119564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112823,9 +119584,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -112855,6 +119616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112873,9 +119636,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd44d6", "States": { "2": { @@ -112903,6 +119666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112921,9 +119686,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -112951,6 +119716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -112969,9 +119736,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -113001,6 +119768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113016,12 +119785,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c90c4" }, { @@ -113049,6 +119819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113064,12 +119836,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60479c" } ], @@ -113100,6 +119873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113118,9 +119893,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Outsider'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5b06c" } ], @@ -113171,6 +119946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113189,9 +119966,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"56a08b\":{\"lock\":false,\"pos\":{\"x\":-4.1,\"y\":1.5829,\"z\":-14.7352},\"rot\":{\"x\":359.9197,\"y\":270.0026,\"z\":0.0168}},\"6d8dad\":{\"lock\":false,\"pos\":{\"x\":9.7158,\"y\":1.2818,\"z\":-4.1308},\"rot\":{\"x\":0.0799,\"y\":89.9964,\"z\":359.9831}},\"6e0236\":{\"lock\":false,\"pos\":{\"x\":9.3625,\"y\":1.284,\"z\":1.3791},\"rot\":{\"x\":0.0799,\"y\":89.9956,\"z\":359.9831}},\"e54f2a\":{\"lock\":false,\"pos\":{\"x\":9.5041,\"y\":1.2855,\"z\":7.3849},\"rot\":{\"x\":0.0799,\"y\":89.9936,\"z\":359.9831}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -113218,6 +119995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113226,9 +120005,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"023888\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"142ed1\":{\"lock\":false,\"pos\":{\"x\":-2.6824,\"y\":1.6535,\"z\":-5.0497},\"rot\":{\"x\":0.0168,\"y\":180.029,\"z\":0.0803}},\"25ee3d\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6796,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9985,\"z\":0.0169}},\"2c8619\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.7004,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"2feec4\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":180.0169}},\"403576\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0018,\"z\":0.0169}},\"426d50\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"5d139e\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0095,\"z\":0.0803}},\"657e92\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.68,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":270.0193,\"z\":0.0168}},\"6cd4db\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0018,\"z\":0.0168}},\"70ed2b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.389,\"y\":1.6089,\"z\":-3.5856},\"rot\":{\"x\":359.9555,\"y\":224.9709,\"z\":0.0684}},\"84e8a4\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6982,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":180.0169}},\"946192\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7344,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0004,\"z\":180.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6949,\"y\":1.5583,\"z\":14.2794},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"a813b4\":{\"lock\":false,\"pos\":{\"x\":-26.9936,\"y\":1.6213,\"z\":7.4831},\"rot\":{\"x\":359.9201,\"y\":269.9943,\"z\":0.0169}},\"b23e87\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"b53ca8\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6828,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0226,\"z\":0.0168}},\"d374d4\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.9201}},\"ebb2a1\":{\"lock\":false,\"pos\":{\"x\":-11.7716,\"y\":1.6716,\"z\":3.6782},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"f3e8ca\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":180.0169}},\"f57bf9\":{\"lock\":false,\"pos\":{\"x\":-9.9008,\"y\":1.4136,\"z\":11.1571},\"rot\":{\"x\":359.9831,\"y\":0.0006,\"z\":359.92}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -113255,6 +120034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113273,9 +120054,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -113302,6 +120083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113317,12 +120100,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d36b0" }, { @@ -113350,6 +120134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113365,12 +120151,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1006bb" }, { @@ -113398,6 +120185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113413,12 +120202,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "94eab6" }, { @@ -113446,6 +120236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113466,12 +120258,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -113498,6 +120291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113513,12 +120308,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "320511" }, { @@ -113546,6 +120342,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113561,12 +120359,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "798ffc" }, { @@ -113594,6 +120393,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113609,12 +120410,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "740459" }, { @@ -113642,6 +120444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113657,12 +120461,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63386b" } ], @@ -113693,6 +120498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113708,12 +120515,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92a835" }, { @@ -113741,6 +120549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113759,12 +120569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -113791,6 +120602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113806,12 +120619,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" }, { @@ -113839,6 +120653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113854,12 +120670,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fa28a" } ], @@ -113890,6 +120707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113905,12 +120724,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1e62c" }, { @@ -113938,6 +120758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -113956,12 +120778,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -113988,6 +120811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114003,12 +120828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c5c91" }, { @@ -114036,6 +120862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114051,12 +120879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "153bb1" } ], @@ -114087,6 +120916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114113,12 +120944,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -114145,6 +120977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114160,12 +120994,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e33fb2" }, { @@ -114193,6 +121028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114208,12 +121045,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "620205" }, { @@ -114241,6 +121079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114256,12 +121096,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4aa17f" }, { @@ -114289,6 +121130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114304,12 +121147,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7386ae" }, { @@ -114337,6 +121181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114352,12 +121198,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "177510" }, { @@ -114385,6 +121232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114400,12 +121249,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e13df4" }, { @@ -114433,6 +121283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114448,12 +121300,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "392fb0" }, { @@ -114481,6 +121334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114496,12 +121351,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72bb26" }, { @@ -114529,6 +121385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114544,12 +121402,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f59a2f" }, { @@ -114577,6 +121436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114592,12 +121453,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08ffb2" } ], @@ -114644,6 +121506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114683,7 +121547,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2626": { "FaceURL": "https://i.imgur.com/JEtquWD.jpg", @@ -114691,12 +121556,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -114723,6 +121589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114738,12 +121606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcc9d9" }, { @@ -114771,6 +121640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114786,12 +121657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -114819,6 +121691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114834,12 +121708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -114867,6 +121742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114882,12 +121759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -114915,6 +121793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114930,12 +121810,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c954ae" }, { @@ -114963,6 +121844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -114978,12 +121861,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abc714" }, { @@ -115011,6 +121895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115026,12 +121912,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "351d7c" }, { @@ -115059,6 +121946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115074,12 +121963,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96bd0c" }, { @@ -115107,6 +121997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115122,12 +122014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -115155,6 +122048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115170,12 +122065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -115203,6 +122099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115218,12 +122116,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb4b7c" }, { @@ -115251,6 +122150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115266,12 +122167,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b284b" }, { @@ -115299,6 +122201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115314,12 +122218,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ced46a" }, { @@ -115347,6 +122252,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115362,12 +122269,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13e217" }, { @@ -115395,6 +122303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115410,12 +122320,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9499a" }, { @@ -115443,6 +122354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115458,12 +122371,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fd145" }, { @@ -115491,6 +122405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115506,12 +122422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" }, { @@ -115539,6 +122456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115554,12 +122473,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -115587,6 +122507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115602,12 +122524,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "828550" }, { @@ -115635,6 +122558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115650,12 +122575,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d54280" }, { @@ -115683,6 +122609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115698,12 +122626,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f2995" }, { @@ -115731,6 +122660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115746,12 +122677,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01f33d" }, { @@ -115779,6 +122711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115794,12 +122728,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ab2de" } ], @@ -115830,6 +122765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115849,12 +122786,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -115881,6 +122819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115896,12 +122836,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec6cea" }, { @@ -115929,6 +122870,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115944,12 +122887,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cf91f" }, { @@ -115977,6 +122921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -115992,12 +122938,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33fb33" } ], @@ -116028,6 +122975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116048,12 +122997,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -116080,6 +123030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116095,12 +123047,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4755b" }, { @@ -116128,6 +123081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116143,12 +123098,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f332e" }, { @@ -116176,6 +123132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116191,12 +123149,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20ed1a" }, { @@ -116224,6 +123183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116239,12 +123200,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2256b6" } ], @@ -116275,6 +123237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116290,12 +123254,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6cd4db" }, { @@ -116323,6 +123288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116331,9 +123298,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -116360,6 +123327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116374,12 +123343,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "faa501" }, { @@ -116407,6 +123377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116421,12 +123393,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "094fe6" }, { @@ -116454,6 +123427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116468,12 +123443,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b33801" }, { @@ -116501,6 +123477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116515,12 +123493,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b01ca" }, { @@ -116548,6 +123527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116562,12 +123543,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e3086" }, { @@ -116595,6 +123577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116609,12 +123593,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c53e47" }, { @@ -116642,6 +123627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116656,12 +123643,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5089d7" }, { @@ -116689,6 +123677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116703,12 +123693,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "923b89" }, { @@ -116736,6 +123727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116750,12 +123743,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fdc8b" }, { @@ -116783,6 +123777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116797,12 +123793,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f03c51" }, { @@ -116830,6 +123827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116844,12 +123843,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "309114" }, { @@ -116877,6 +123877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116891,12 +123893,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "072074" }, { @@ -116924,6 +123927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116938,12 +123943,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22d293" }, { @@ -116971,6 +123977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -116985,12 +123993,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce40fa" }, { @@ -117018,6 +124027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117032,12 +124043,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5c29c" } ], @@ -117068,6 +124080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117090,12 +124104,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -117122,6 +124137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117137,12 +124154,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08835c" }, { @@ -117170,6 +124188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117185,12 +124205,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aaeb8c" }, { @@ -117218,6 +124239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117233,12 +124256,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7f160" }, { @@ -117266,6 +124290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117281,12 +124307,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ceb51" }, { @@ -117314,6 +124341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117329,12 +124358,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "459f7b" }, { @@ -117362,6 +124392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117377,12 +124409,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "250024" } ], @@ -117413,6 +124446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117433,12 +124468,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -117465,6 +124501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117480,12 +124518,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4dc632" }, { @@ -117513,6 +124552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117528,12 +124569,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49517e" }, { @@ -117561,6 +124603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117576,12 +124620,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f500d" }, { @@ -117609,6 +124654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117624,12 +124671,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04da50" } ], @@ -117660,6 +124708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117679,12 +124729,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -117711,6 +124762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117726,12 +124779,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a2b01" }, { @@ -117759,6 +124813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117774,12 +124830,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a62de" }, { @@ -117807,6 +124864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117822,12 +124881,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b3649" } ], @@ -117858,6 +124918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117881,12 +124943,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -117913,6 +124976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117928,12 +124993,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d77e06" }, { @@ -117961,6 +125027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -117976,12 +125044,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "757a47" }, { @@ -118009,6 +125078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118024,12 +125095,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ef39a" }, { @@ -118057,6 +125129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118072,12 +125146,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c39f0" }, { @@ -118105,6 +125180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118120,12 +125197,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24cea1" }, { @@ -118153,6 +125231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118168,12 +125248,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f4a33" }, { @@ -118201,6 +125282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118216,12 +125299,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf6157" } ], @@ -118252,6 +125336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118267,12 +125353,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "426d50" }, { @@ -118300,6 +125387,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118318,9 +125407,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -118348,6 +125437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118366,9 +125457,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -118396,6 +125487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118414,9 +125507,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -118446,6 +125539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118461,12 +125556,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2feec4" }, { @@ -118494,6 +125590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118512,9 +125610,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "023888", "States": { "2": { @@ -118542,6 +125640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118560,9 +125660,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -118590,6 +125690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118608,9 +125710,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -118640,6 +125742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118655,12 +125759,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3e8ca" }, { @@ -118688,6 +125793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118706,9 +125813,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b23e87", "States": { "2": { @@ -118736,6 +125843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118754,9 +125863,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -118784,6 +125893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118802,9 +125913,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -118834,6 +125945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118849,12 +125962,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70ed2b" }, { @@ -118882,6 +125996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118900,9 +126016,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a813b4", "States": { "2": { @@ -118930,6 +126046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118948,9 +126066,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -118978,6 +126096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -118996,9 +126116,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -119028,6 +126148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119043,12 +126165,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c8619" }, { @@ -119076,6 +126199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119094,9 +126219,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d374d4", "States": { "2": { @@ -119124,6 +126249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119142,9 +126269,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -119172,6 +126299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119190,9 +126319,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -119222,6 +126351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119237,12 +126368,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84e8a4" }, { @@ -119270,6 +126402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119285,12 +126419,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "403576" } ], @@ -119321,6 +126456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119329,9 +126466,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"1a9793\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0349,\"z\":0.0803}},\"6695ea\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9665,\"z\":0.0169}},\"881cd5\":{\"lock\":false,\"pos\":{\"x\":-11.2634,\"y\":1.6798,\"z\":13.587},\"rot\":{\"x\":359.9201,\"y\":270.0985,\"z\":0.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6944,\"y\":1.5583,\"z\":14.2805},\"rot\":{\"x\":359.955,\"y\":225.0656,\"z\":0.0686}},\"be2521\":{\"lock\":false,\"pos\":{\"x\":-11.2689,\"y\":1.4148,\"z\":8.8425},\"rot\":{\"x\":359.9831,\"y\":-0.0028,\"z\":359.92}},\"ce95f2\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.6971,\"z\":5.757},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"cee816\":{\"lock\":false,\"pos\":{\"x\":-10.7755,\"y\":1.6678,\"z\":2.35},\"rot\":{\"x\":359.9201,\"y\":269.9819,\"z\":0.0169}},\"e57331\":{\"lock\":false,\"pos\":{\"x\":-2.686,\"y\":1.6535,\"z\":-5.0525},\"rot\":{\"x\":0.0168,\"y\":180.0057,\"z\":0.0803}},\"e68cf1\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0947,\"z\":0.0167}},\"feafd1\":{\"lock\":false,\"pos\":{\"x\":-3.9505,\"y\":1.6556,\"z\":-10.433},\"rot\":{\"x\":359.9197,\"y\":270.0947,\"z\":0.0167}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -119358,6 +126495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119376,9 +126515,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -119405,6 +126544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119420,12 +126561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6d601" }, { @@ -119453,6 +126595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119468,12 +126612,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdcb0a" }, { @@ -119501,6 +126646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119516,12 +126663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53fbaa" }, { @@ -119549,6 +126697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119573,12 +126723,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -119605,6 +126756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119620,12 +126773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23cb5c" }, { @@ -119653,6 +126807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119668,12 +126824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5ba9f" }, { @@ -119701,6 +126858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119716,12 +126875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17d3f3" }, { @@ -119749,6 +126909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119764,12 +126926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "932972" }, { @@ -119797,6 +126960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119812,12 +126977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17aac8" }, { @@ -119845,6 +127011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119860,12 +127028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09db9e" }, { @@ -119893,6 +127062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119908,12 +127079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc3437" }, { @@ -119941,6 +127113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -119956,12 +127130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6d601" } ], @@ -119992,6 +127167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120015,12 +127192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -120047,6 +127225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120062,12 +127242,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5143f8" }, { @@ -120095,6 +127276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120110,12 +127293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f16cc5" }, { @@ -120143,6 +127327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120158,12 +127344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "219cb2" }, { @@ -120191,6 +127378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120206,12 +127395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17bd2c" }, { @@ -120239,6 +127429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120254,12 +127446,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "979768" }, { @@ -120287,6 +127480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120302,12 +127497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eac36a" }, { @@ -120335,6 +127531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120350,12 +127548,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84afda" } ], @@ -120386,6 +127585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120417,7 +127618,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -120425,12 +127627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -120457,6 +127660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120472,12 +127677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef4ed0" }, { @@ -120505,6 +127711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120520,12 +127728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6d25c" }, { @@ -120553,6 +127762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120568,12 +127779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87ee8e" }, { @@ -120601,6 +127813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120616,12 +127830,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c35d0" }, { @@ -120649,6 +127864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120664,12 +127881,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c507f4" }, { @@ -120697,6 +127915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120712,12 +127932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fca4f" }, { @@ -120745,6 +127966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120760,12 +127983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bcac16" }, { @@ -120793,6 +128017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120808,12 +128034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7e06a" }, { @@ -120841,6 +128068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120856,12 +128085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "efec6c" }, { @@ -120889,6 +128119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120904,12 +128136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6d853" }, { @@ -120937,6 +128170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -120952,12 +128187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2d87b" }, { @@ -120985,6 +128221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121000,12 +128238,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96e1d7" }, { @@ -121033,6 +128272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121048,12 +128289,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82e5f4" }, { @@ -121081,6 +128323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121096,12 +128340,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -121129,6 +128374,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121144,12 +128391,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" } ], @@ -121180,6 +128428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121198,9 +128448,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d04e11" }, { @@ -121228,6 +128478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121257,12 +128509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -121289,6 +128542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121304,12 +128559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "857f8e" }, { @@ -121337,6 +128593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121352,12 +128610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bab9d" }, { @@ -121385,6 +128644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121400,12 +128661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d68d4" }, { @@ -121433,6 +128695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121448,12 +128712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9e143" }, { @@ -121481,6 +128746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121496,12 +128763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e41a05" }, { @@ -121529,6 +128797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121544,12 +128814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3cae2" }, { @@ -121577,6 +128848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121592,12 +128865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9662b" }, { @@ -121625,6 +128899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121640,12 +128916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7c1fc" }, { @@ -121673,6 +128950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121688,12 +128967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7f02e" }, { @@ -121721,6 +129001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121736,12 +129018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be9bef" }, { @@ -121769,6 +129052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121784,12 +129069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b53e15" }, { @@ -121817,6 +129103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121832,12 +129120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5111b" }, { @@ -121865,6 +129154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121880,12 +129171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da584e" } ], @@ -121932,6 +129224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -121964,7 +129258,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2626": { "FaceURL": "https://i.imgur.com/yPQiViH.jpg", @@ -121972,12 +129267,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -122004,6 +129300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122019,12 +129317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c80fc" }, { @@ -122052,6 +129351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122067,12 +129368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -122100,6 +129402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122115,12 +129419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -122148,6 +129453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122163,12 +129470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16a534" }, { @@ -122196,6 +129504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122211,12 +129521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "902941" }, { @@ -122244,6 +129555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122259,12 +129572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7490fc" }, { @@ -122292,6 +129606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122307,12 +129623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96e214" }, { @@ -122340,6 +129657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122355,12 +129674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3aef5d" }, { @@ -122388,6 +129708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122403,12 +129725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -122436,6 +129759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122451,12 +129776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -122484,6 +129810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122499,12 +129827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ba642" }, { @@ -122532,6 +129861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122547,12 +129878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c5c91" }, { @@ -122580,6 +129912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122595,12 +129929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "153bb1" }, { @@ -122628,6 +129963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122643,12 +129980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d0c13c" }, { @@ -122676,6 +130014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122691,12 +130031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db400f" }, { @@ -122724,6 +130065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122739,12 +130082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60f423" } ], @@ -122775,6 +130119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122795,12 +130141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -122827,6 +130174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122842,12 +130191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "026f94" }, { @@ -122875,6 +130225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122890,12 +130242,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7720b4" }, { @@ -122923,6 +130276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122938,12 +130293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f7daa" }, { @@ -122971,6 +130327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -122986,12 +130344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25f89e" } ], @@ -123022,6 +130381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123042,12 +130403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -123074,6 +130436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123089,12 +130453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d0e79" }, { @@ -123122,6 +130487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123137,12 +130504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb15d5" }, { @@ -123170,6 +130538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123185,12 +130555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90447a" }, { @@ -123218,6 +130589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123233,12 +130606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ec0d3" } ], @@ -123269,6 +130643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123284,12 +130660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "feafd1" }, { @@ -123317,6 +130694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123335,12 +130714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -123367,6 +130747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123382,12 +130764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a03a0b" }, { @@ -123415,6 +130798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123430,12 +130815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f085a" } ], @@ -123466,6 +130852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123474,9 +130862,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -123503,6 +130891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123521,9 +130911,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90df18" }, { @@ -123551,6 +130941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123569,9 +130961,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e02457" }, { @@ -123599,6 +130991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123617,9 +131011,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c52136" }, { @@ -123647,6 +131041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123665,9 +131061,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d38ae" }, { @@ -123695,6 +131091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123713,9 +131111,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd18ab" }, { @@ -123743,6 +131141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123761,9 +131161,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b12e0" }, { @@ -123791,6 +131191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123809,9 +131211,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e78f19" }, { @@ -123839,6 +131241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123857,9 +131261,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e672b" }, { @@ -123887,6 +131291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123905,9 +131311,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a2f1c" }, { @@ -123935,6 +131341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -123953,9 +131361,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a79177" }, { @@ -123983,6 +131391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124001,9 +131411,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04fba0" }, { @@ -124031,6 +131441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124049,9 +131461,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "045c19" }, { @@ -124079,6 +131491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124097,9 +131511,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dbf6b2" }, { @@ -124127,6 +131541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124145,9 +131561,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa5356" }, { @@ -124175,6 +131591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124193,9 +131611,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b16be" }, { @@ -124223,6 +131641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124241,9 +131661,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f149bb" }, { @@ -124271,6 +131691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124289,9 +131711,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3304b3" }, { @@ -124319,6 +131741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124337,9 +131761,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "941a94" }, { @@ -124367,6 +131791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124385,9 +131811,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c4564" }, { @@ -124415,6 +131841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124433,9 +131861,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "724707" }, { @@ -124463,6 +131891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124481,9 +131911,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bca554" }, { @@ -124511,6 +131941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124533,12 +131965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -124565,6 +131998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124580,12 +132015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97ae52" }, { @@ -124613,6 +132049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124628,12 +132066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72ed0e" }, { @@ -124661,6 +132100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124676,12 +132117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cc5ad" }, { @@ -124709,6 +132151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124724,12 +132168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a0a6a" }, { @@ -124757,6 +132202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124772,12 +132219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a8729" }, { @@ -124805,6 +132253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124820,12 +132270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fae581" } ], @@ -124859,6 +132310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124880,12 +132333,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -124912,6 +132366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124927,12 +132383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d4a76" }, { @@ -124960,6 +132417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -124975,12 +132434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4dc307" }, { @@ -125008,6 +132468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125023,12 +132485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42b163" }, { @@ -125056,6 +132519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125071,12 +132536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6bf90" }, { @@ -125104,6 +132570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125119,12 +132587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93ed31" } ], @@ -125155,6 +132624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125170,12 +132641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6695ea" }, { @@ -125203,6 +132675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125218,12 +132692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e68cf1" } ], @@ -125254,6 +132729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125262,9 +132739,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0326fd\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"1a5ecd\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9995,\"z\":0.0799}},\"1d2252\":{\"lock\":false,\"pos\":{\"x\":-3.9269,\"y\":1.6758,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"1ee5f3\":{\"lock\":false,\"pos\":{\"x\":-0.1734,\"y\":1.6546,\"z\":5.7045},\"rot\":{\"x\":359.9197,\"y\":269.9971,\"z\":0.0168}},\"230ebd\":{\"lock\":false,\"pos\":{\"x\":-23.6749,\"y\":1.689,\"z\":-0.0308},\"rot\":{\"x\":359.9201,\"y\":269.9879,\"z\":180.0169}},\"299828\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9997,\"z\":0.0799}},\"2aa44a\":{\"lock\":false,\"pos\":{\"x\":-11.9955,\"y\":1.668,\"z\":-6.5877},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"3f7366\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0422,\"z\":180.0168}},\"4ffecc\":{\"lock\":false,\"pos\":{\"x\":-13.921,\"y\":1.6726,\"z\":-0.0212},\"rot\":{\"x\":359.9201,\"y\":269.9763,\"z\":0.0169}},\"568894\":{\"lock\":false,\"pos\":{\"x\":-20.1649,\"y\":1.6085,\"z\":-3.8296},\"rot\":{\"x\":0.0684,\"y\":135,\"z\":0.0446}},\"56a08b\":{\"lock\":false,\"pos\":{\"x\":-4.1,\"y\":1.5829,\"z\":-14.7352},\"rot\":{\"x\":359.9197,\"y\":270.0026,\"z\":0.0168}},\"5b9483\":{\"lock\":false,\"pos\":{\"x\":-12.0094,\"y\":1.6665,\"z\":-11.6612},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.369,\"y\":1.6099,\"z\":-0.0081},\"rot\":{\"x\":359.9201,\"y\":269.9935,\"z\":0.0169}},\"750180\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0076,\"z\":180.0168}},\"992398\":{\"lock\":false,\"pos\":{\"x\":-11.8613,\"y\":1.6783,\"z\":7.3205},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"a236db\":{\"lock\":false,\"pos\":{\"x\":-20.473,\"y\":1.6078,\"z\":-7.7204},\"rot\":{\"x\":359.9201,\"y\":269.9932,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6881,\"y\":1.5583,\"z\":14.2775},\"rot\":{\"x\":359.9552,\"y\":224.9438,\"z\":0.0687}},\"a82558\":{\"lock\":false,\"pos\":{\"x\":-17.1197,\"y\":1.6799,\"z\":-0.0302},\"rot\":{\"x\":359.9201,\"y\":270.0011,\"z\":180.0169}},\"b5b54e\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9998,\"z\":0.0799}},\"bbee77\":{\"lock\":false,\"pos\":{\"x\":-2.718,\"y\":1.6566,\"z\":0.3736},\"rot\":{\"x\":0.0169,\"y\":179.9435,\"z\":0.0802}},\"c432f1\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0093,\"z\":180.0168}},\"c76bb3\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":269.999,\"z\":0.0168}},\"cc188f\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9694,\"z\":0.0802}},\"efb2d6\":{\"lock\":false,\"pos\":{\"x\":-12.0062,\"y\":1.6673,\"z\":-9.1242},\"rot\":{\"x\":359.9201,\"y\":269.8791,\"z\":0.017}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -125291,6 +132768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125309,9 +132788,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -125338,6 +132817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125377,7 +132858,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2687": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/", @@ -125385,7 +132867,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/", @@ -125393,12 +132876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -125425,6 +132909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125440,12 +132926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "492e5e" }, { @@ -125473,6 +132960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125488,12 +132977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -125521,6 +133011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125536,12 +133028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -125569,6 +133062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125584,12 +133079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1d81e" }, { @@ -125617,6 +133113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125632,12 +133130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7add9" }, { @@ -125665,6 +133164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125680,12 +133181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d4a92" }, { @@ -125713,6 +133215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125728,12 +133232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "218170" }, { @@ -125761,6 +133266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125776,12 +133283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f5da0" }, { @@ -125809,6 +133317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125824,12 +133334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -125857,6 +133368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125872,12 +133385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -125905,6 +133419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125920,12 +133436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -125953,6 +133470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -125968,12 +133487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -126001,6 +133521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126016,12 +133538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dae684" }, { @@ -126049,6 +133572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126064,12 +133589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a95cf6" }, { @@ -126097,6 +133623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126112,12 +133640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -126145,6 +133674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126160,12 +133691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -126193,6 +133725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126208,12 +133742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c5c91" }, { @@ -126241,6 +133776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126256,12 +133793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a6deb" }, { @@ -126289,6 +133827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126304,12 +133844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -126337,6 +133878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126352,12 +133895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" }, { @@ -126385,6 +133929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126400,12 +133946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b7b" }, { @@ -126433,6 +133980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126448,12 +133997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df668b" }, { @@ -126481,6 +134031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126496,12 +134048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "153bb1" } ], @@ -126532,6 +134085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126552,12 +134107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -126584,6 +134140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126599,12 +134157,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99eb99" }, { @@ -126632,6 +134191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126647,12 +134208,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "631a02" }, { @@ -126680,6 +134242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126695,12 +134259,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82fed2" }, { @@ -126728,6 +134293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126743,12 +134310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82fed2" } ], @@ -126779,6 +134347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126794,12 +134364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1fc4a" }, { @@ -126827,6 +134398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126847,12 +134420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -126879,6 +134453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126894,12 +134470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aeb84b" }, { @@ -126927,6 +134504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126942,12 +134521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78a9cb" }, { @@ -126975,6 +134555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -126990,12 +134572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b0a2d" }, { @@ -127023,6 +134606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127038,12 +134623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09f211" } ], @@ -127090,6 +134676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127109,12 +134697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -127141,6 +134730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127156,12 +134747,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a32abd" }, { @@ -127189,6 +134781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127204,12 +134798,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "131243" }, { @@ -127237,6 +134832,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127252,12 +134849,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41525b" } ], @@ -127288,6 +134886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127316,7 +134916,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2685": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/", @@ -127324,7 +134925,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2676": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/", @@ -127332,12 +134934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -127364,6 +134967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127379,12 +134984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de1cd2" }, { @@ -127412,6 +135018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127427,12 +135035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8db13e" }, { @@ -127460,6 +135069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127473,12 +135084,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbc9d1" }, { @@ -127506,6 +135118,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127521,12 +135135,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1401db" }, { @@ -127554,6 +135169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127569,12 +135186,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6793f" }, { @@ -127602,6 +135220,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127615,12 +135235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -127648,6 +135269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127661,12 +135284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" }, { @@ -127694,6 +135318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127709,12 +135335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "354db3" }, { @@ -127742,6 +135369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127757,12 +135386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f639f7" }, { @@ -127790,6 +135420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127805,12 +135437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "762f4d" }, { @@ -127838,6 +135471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127853,12 +135488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5493ec" }, { @@ -127886,6 +135522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127901,12 +135539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dfa0f" } ], @@ -127937,6 +135576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -127956,12 +135597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -127988,6 +135630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128003,12 +135647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69c791" }, { @@ -128036,6 +135681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128051,12 +135698,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11792b" }, { @@ -128084,6 +135732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128099,12 +135749,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3332f3" } ], @@ -128135,6 +135786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128154,12 +135807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -128186,6 +135840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128201,12 +135857,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bf59b" }, { @@ -128234,6 +135891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128249,12 +135908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edcfb1" }, { @@ -128282,6 +135942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128297,12 +135959,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "198315" } ], @@ -128333,6 +135996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128348,12 +136013,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c76bb3" }, { @@ -128381,6 +136047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128399,9 +136067,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Of Sphinx'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "56a08b" }, { @@ -128429,6 +136097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128444,12 +136114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b9483" }, { @@ -128477,6 +136148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128492,12 +136165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "efb2d6" }, { @@ -128525,6 +136199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128540,12 +136216,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2aa44a" }, { @@ -128573,6 +136250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128591,9 +136270,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "299828", "States": { "2": { @@ -128621,6 +136300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128639,9 +136320,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -128669,6 +136350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128687,9 +136370,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -128719,6 +136402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128734,12 +136419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "750180" }, { @@ -128767,6 +136453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128782,12 +136470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a82558" }, { @@ -128815,6 +136504,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128830,12 +136521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ffecc" }, { @@ -128863,6 +136555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128881,9 +136575,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a5ecd", "States": { "2": { @@ -128911,6 +136605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128929,9 +136625,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -128959,6 +136655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -128977,9 +136675,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -129009,6 +136707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129024,12 +136724,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c432f1" }, { @@ -129057,6 +136758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129077,12 +136780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -129109,6 +136813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129124,12 +136830,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "484266" }, { @@ -129157,6 +136864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129172,12 +136881,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "080482" }, { @@ -129205,6 +136915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129220,12 +136932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f729ac" }, { @@ -129253,6 +136966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129268,12 +136983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02093a" } ], @@ -129304,6 +137020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129319,12 +137037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0326fd" }, { @@ -129352,6 +137071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129370,9 +137091,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5b54e", "States": { "2": { @@ -129400,6 +137121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129418,9 +137141,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -129448,6 +137171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129466,9 +137191,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -129498,6 +137223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129513,12 +137240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "230ebd" }, { @@ -129546,6 +137274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129564,9 +137294,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -129594,6 +137324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129612,9 +137344,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -129642,6 +137374,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129660,9 +137394,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -129692,6 +137426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129710,9 +137446,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "568894", "States": { "2": { @@ -129740,6 +137476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129758,9 +137496,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -129788,6 +137526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129806,9 +137546,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -129838,6 +137578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129856,9 +137598,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a236db", "States": { "2": { @@ -129886,6 +137628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129904,9 +137648,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -129934,6 +137678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129952,9 +137698,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -129984,6 +137730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -129999,12 +137747,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f7366" } ], @@ -130058,6 +137807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130076,9 +137827,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0f2ffc\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6555,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9837,\"z\":0.0803}},\"256aa6\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"4e3390\":{\"lock\":false,\"pos\":{\"x\":-13.0308,\"y\":1.6899,\"z\":7.2677},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":0.0169}},\"515e9e\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6368,\"z\":14.2789},\"rot\":{\"x\":359.9552,\"y\":224.9984,\"z\":0.0687}},\"8f0718\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7504,\"z\":5.757},\"rot\":{\"x\":359.9197,\"y\":269.9868,\"z\":180.0168}},\"aae2b1\":{\"lock\":false,\"pos\":{\"x\":-3.566,\"y\":1.582,\"z\":-15.0714},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}},\"fed65c\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":0.0169,\"y\":179.9893,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -130105,6 +137856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130129,7 +137882,8 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/", @@ -130137,7 +137891,8 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", @@ -130145,12 +137900,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -130177,6 +137933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130191,12 +137949,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "711d14" }, { @@ -130224,6 +137983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130238,12 +137999,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b9721" }, { @@ -130271,6 +138033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130285,12 +138049,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83fdcb" }, { @@ -130318,6 +138083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130332,12 +138099,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9035ea" }, { @@ -130365,6 +138133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130379,12 +138149,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b8563" }, { @@ -130412,6 +138183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130426,12 +138199,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "109526" }, { @@ -130459,6 +138233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130473,12 +138249,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bba01d" }, { @@ -130506,6 +138283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130520,12 +138299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f51822" } ], @@ -130556,6 +138336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130598,7 +138380,8 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/", @@ -130606,12 +138389,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -130638,6 +138422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130652,12 +138438,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d565cc" }, { @@ -130685,6 +138472,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130698,12 +138487,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b4f8d" }, { @@ -130731,6 +138521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130744,12 +138536,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "adc5e2" }, { @@ -130777,6 +138570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130790,12 +138585,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "287c80" }, { @@ -130823,6 +138619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130836,12 +138634,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "109526" }, { @@ -130869,6 +138668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130882,12 +138683,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18713c" }, { @@ -130915,6 +138717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130928,12 +138732,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90d2be" }, { @@ -130961,6 +138766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -130974,12 +138781,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "336bb3" }, { @@ -131007,6 +138815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131020,12 +138830,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45009b" }, { @@ -131053,6 +138864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131066,12 +138879,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "336bb3" }, { @@ -131099,6 +138913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131112,12 +138928,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e3723" }, { @@ -131145,6 +138962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131158,12 +138977,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41b7b0" }, { @@ -131191,6 +139011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131204,12 +139026,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ca836" }, { @@ -131237,6 +139060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131250,12 +139075,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d35c3c" }, { @@ -131283,6 +139109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131296,12 +139124,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce2dd2" }, { @@ -131329,6 +139158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131342,12 +139173,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "adc5e2" }, { @@ -131375,6 +139207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131388,12 +139222,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9fb36" }, { @@ -131421,6 +139256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131434,12 +139271,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1ae06" }, { @@ -131467,6 +139305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131480,12 +139320,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d64b13" }, { @@ -131513,6 +139354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131526,12 +139369,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b8359" }, { @@ -131559,6 +139403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131572,12 +139418,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e553d5" }, { @@ -131605,6 +139452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131618,12 +139467,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "623f88" }, { @@ -131651,6 +139501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131664,12 +139516,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "109526" }, { @@ -131697,6 +139550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131710,12 +139565,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1da52" }, { @@ -131743,6 +139599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131756,12 +139614,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "287c80" }, { @@ -131789,6 +139648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131802,12 +139663,13 @@ "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fca5db" } ], @@ -131838,6 +139700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131853,12 +139717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fed65c" }, { @@ -131886,6 +139751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131901,12 +139768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f2ffc" }, { @@ -131934,6 +139802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -131949,12 +139819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "256aa6" }, { @@ -131982,6 +139853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132000,9 +139873,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "aae2b1" }, { @@ -132030,6 +139903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132062,12 +139937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -132094,6 +139970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132108,12 +139986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d15e9" }, { @@ -132141,6 +140020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132155,12 +140036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd71f0" }, { @@ -132188,6 +140070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132202,12 +140086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06f09c" }, { @@ -132235,6 +140120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132249,12 +140136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b07a6" }, { @@ -132282,6 +140170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132296,12 +140186,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6913d" }, { @@ -132329,6 +140220,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132343,12 +140236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6b99e" }, { @@ -132376,6 +140270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132390,12 +140286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d32a2" }, { @@ -132423,6 +140320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132437,12 +140336,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c96a80" }, { @@ -132470,6 +140370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132484,12 +140386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69858a" }, { @@ -132517,6 +140420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132531,12 +140436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0ca08" }, { @@ -132564,6 +140470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132578,12 +140486,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23bbfe" }, { @@ -132611,6 +140520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132625,12 +140536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ee8d8" }, { @@ -132658,6 +140570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132672,12 +140586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ca809" }, { @@ -132705,6 +140620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132719,12 +140636,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "706cfc" }, { @@ -132752,6 +140670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132766,12 +140686,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb4aa3" }, { @@ -132799,6 +140720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132813,12 +140736,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7bdddd" } ], @@ -132872,6 +140796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132890,9 +140816,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"147dea\":{\"lock\":false,\"pos\":{\"x\":9.4431,\"y\":1.2854,\"z\":7.085},\"rot\":{\"x\":0.0799,\"y\":89.9987,\"z\":359.9831}},\"7f9f0d\":{\"lock\":false,\"pos\":{\"x\":9.3077,\"y\":1.2837,\"z\":0.2819},\"rot\":{\"x\":0.0799,\"y\":89.9984,\"z\":359.9831}},\"df5156\":{\"lock\":false,\"pos\":{\"x\":9.2722,\"y\":1.2819,\"z\":-6.0997},\"rot\":{\"x\":0.0799,\"y\":89.9909,\"z\":359.9831}},\"ea0896\":{\"lock\":false,\"pos\":{\"x\":-3.3332,\"y\":1.5816,\"z\":-15.257},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -132919,6 +140845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132927,9 +140855,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"087128\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9955,\"z\":0.0799}},\"0d7742\":{\"lock\":false,\"pos\":{\"x\":-3.9555,\"y\":1.6557,\"z\":-10.4316},\"rot\":{\"x\":359.9197,\"y\":270.0036,\"z\":0.0168}},\"2d4c2b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6179,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":179.9954,\"z\":0.0799}},\"4066d9\":{\"lock\":false,\"pos\":{\"x\":-20.0611,\"y\":1.6128,\"z\":11.1353},\"rot\":{\"x\":359.9556,\"y\":224.8917,\"z\":0.0685}},\"4875a0\":{\"lock\":false,\"pos\":{\"x\":-18.9809,\"y\":1.6781,\"z\":-15.0786},\"rot\":{\"x\":359.9204,\"y\":270.0449,\"z\":180.0171}},\"6af68f\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9954,\"z\":0.0799}},\"6ca432\":{\"lock\":false,\"pos\":{\"x\":-20.2002,\"y\":1.6063,\"z\":-11.4403},\"rot\":{\"x\":0.0684,\"y\":135.0001,\"z\":0.0446}},\"711660\":{\"lock\":false,\"pos\":{\"x\":-17.1142,\"y\":1.7976,\"z\":-15.2786},\"rot\":{\"x\":355.4229,\"y\":270.0488,\"z\":180.0205}},\"71801c\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9832,\"z\":0.0169}},\"718835\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9954,\"z\":0.0799}},\"89295c\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9964,\"z\":180.0169}},\"94329c\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9604,\"z\":0.0169}},\"afbae6\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7611,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0192,\"z\":180.0168}},\"b14575\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0036,\"z\":0.0169}},\"b238b0\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6844,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9956,\"z\":180.0171}},\"b60f07\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.997,\"z\":180.0169}},\"bd8df8\":{\"lock\":false,\"pos\":{\"x\":-13.2068,\"y\":1.6705,\"z\":2.7927},\"rot\":{\"x\":359.9201,\"y\":269.9949,\"z\":0.0169}},\"cd26a2\":{\"lock\":false,\"pos\":{\"x\":-18.5006,\"y\":1.7343,\"z\":14.8658},\"rot\":{\"x\":359.9212,\"y\":269.9879,\"z\":180.0177}},\"f7e2c9\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.6619,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":180.0686}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -132956,6 +140884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -132975,7 +140905,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/", @@ -132983,12 +140914,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -133015,6 +140947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133029,12 +140963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92a42c" }, { @@ -133062,6 +140997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133076,12 +141013,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dc0cc" }, { @@ -133109,6 +141047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133123,12 +141063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d0aa7b" } ], @@ -133159,6 +141100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133203,12 +141146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -133235,6 +141179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133249,12 +141195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92a42c" }, { @@ -133282,6 +141229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133289,9 +141238,9 @@ "Hands": true, "CardID": 501, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133320,6 +141269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133327,9 +141278,9 @@ "Hands": true, "CardID": 502, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133358,6 +141309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133365,9 +141318,9 @@ "Hands": true, "CardID": 503, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133396,6 +141349,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133403,9 +141358,9 @@ "Hands": true, "CardID": 504, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133434,6 +141389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133441,9 +141398,9 @@ "Hands": true, "CardID": 505, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133472,6 +141429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133479,9 +141438,9 @@ "Hands": true, "CardID": 506, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133510,6 +141469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133517,9 +141478,9 @@ "Hands": true, "CardID": 507, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133548,6 +141509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133555,9 +141518,9 @@ "Hands": true, "CardID": 508, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133586,6 +141549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133593,9 +141558,9 @@ "Hands": true, "CardID": 509, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133624,6 +141589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133631,9 +141598,9 @@ "Hands": true, "CardID": 510, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133662,6 +141629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133669,9 +141638,9 @@ "Hands": true, "CardID": 511, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133700,6 +141669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133707,9 +141678,9 @@ "Hands": true, "CardID": 512, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133738,6 +141709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133745,9 +141718,9 @@ "Hands": true, "CardID": 513, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133776,6 +141749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133783,9 +141758,9 @@ "Hands": true, "CardID": 514, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133814,6 +141789,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133821,9 +141798,9 @@ "Hands": true, "CardID": 515, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133852,6 +141829,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133859,9 +141838,9 @@ "Hands": true, "CardID": 516, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133890,6 +141869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133897,9 +141878,9 @@ "Hands": true, "CardID": 517, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133928,6 +141909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133935,9 +141918,9 @@ "Hands": true, "CardID": 518, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -133966,6 +141949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -133973,9 +141958,9 @@ "Hands": true, "CardID": 519, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -134004,6 +141989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134011,9 +141998,9 @@ "Hands": true, "CardID": 521, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -134042,6 +142029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134049,9 +142038,9 @@ "Hands": true, "CardID": 522, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -134080,6 +142069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134087,9 +142078,9 @@ "Hands": true, "CardID": 523, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -134118,6 +142109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134125,9 +142118,9 @@ "Hands": true, "CardID": 524, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -134156,6 +142149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134163,9 +142158,9 @@ "Hands": true, "CardID": 525, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -134194,6 +142189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134201,9 +142198,9 @@ "Hands": true, "CardID": 526, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -134232,6 +142229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134239,9 +142238,9 @@ "Hands": true, "CardID": 527, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" }, @@ -134270,6 +142269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134277,9 +142278,9 @@ "Hands": true, "CardID": 528, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "92a42c" } @@ -134311,6 +142312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134329,12 +142332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -134361,6 +142365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134375,12 +142381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf3614" }, { @@ -134408,6 +142415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134422,12 +142431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "292aaa" } ], @@ -134458,6 +142468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134476,12 +142488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -134508,6 +142521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134522,12 +142537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78171e" }, { @@ -134555,6 +142571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134569,12 +142587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "292aaa" } ], @@ -134605,6 +142624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134620,12 +142641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d7742" }, { @@ -134653,6 +142675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134673,12 +142697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -134705,6 +142730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134719,12 +142746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -134752,6 +142780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134766,12 +142796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b69778" }, { @@ -134799,6 +142830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134814,12 +142847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cc9ad" }, { @@ -134847,6 +142881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134862,12 +142898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa733d" } ], @@ -134898,6 +142935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134913,12 +142952,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd26a2" }, { @@ -134946,6 +142986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -134961,12 +143003,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b238b0" }, { @@ -134994,6 +143037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135012,9 +143057,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4066d9", "States": { "2": { @@ -135042,6 +143087,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135060,9 +143107,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -135090,6 +143137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135108,9 +143157,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -135140,6 +143189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135158,9 +143209,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d4c2b", "States": { "2": { @@ -135188,6 +143239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135206,9 +143259,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -135236,6 +143289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135254,9 +143309,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -135286,6 +143341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135301,12 +143358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b60f07" }, { @@ -135334,6 +143392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135352,9 +143412,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -135382,6 +143442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135400,9 +143462,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -135430,6 +143492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135448,9 +143512,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -135480,6 +143544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135495,12 +143561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "718835" }, { @@ -135528,6 +143595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135546,9 +143615,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "087128", "States": { "2": { @@ -135576,6 +143645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135594,9 +143665,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -135624,6 +143695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135642,9 +143715,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -135674,6 +143747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135689,12 +143764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89295c" }, { @@ -135722,6 +143798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135740,9 +143818,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6af68f", "States": { "2": { @@ -135770,6 +143848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135788,9 +143868,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -135818,6 +143898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135836,9 +143918,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -135868,6 +143950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135886,9 +143970,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ca432", "States": { "2": { @@ -135916,6 +144000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135934,9 +144020,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -135964,6 +144050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -135982,9 +144070,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -136014,6 +144102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136029,12 +144119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4875a0" }, { @@ -136062,6 +144153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136077,12 +144170,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "711660" }, { @@ -136110,6 +144204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136125,12 +144221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b14575" } ], @@ -136161,6 +144258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136169,9 +144268,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"17aa19\":{\"lock\":false,\"pos\":{\"x\":-11.9634,\"y\":1.6696,\"z\":2.7802},\"rot\":{\"x\":359.9201,\"y\":269.9858,\"z\":0.0169}},\"19742b\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":0.0169}},\"2119d3\":{\"lock\":false,\"pos\":{\"x\":-11.5241,\"y\":1.6887,\"z\":13.6405},\"rot\":{\"x\":359.9201,\"y\":269.9809,\"z\":180.0169}},\"2f7a8d\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9971,\"z\":180.0169}},\"374846\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0058,\"z\":359.92}},\"3c18b1\":{\"lock\":false,\"pos\":{\"x\":-2.6871,\"y\":1.655,\"z\":-5.0463},\"rot\":{\"x\":359.9197,\"y\":269.9698,\"z\":0.0169}},\"40482a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9971,\"z\":180.0169}},\"4230c1\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9965,\"z\":180.0169}},\"453607\":{\"lock\":false,\"pos\":{\"x\":-26.7745,\"y\":1.6198,\"z\":3.4345},\"rot\":{\"x\":359.9315,\"y\":315.0001,\"z\":359.9554}},\"552ae9\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0058,\"z\":359.92}},\"66e655\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9863,\"z\":180.0169}},\"6ceb58\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0058,\"z\":359.9201}},\"713671\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0057,\"z\":359.92}},\"77e04b\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0058,\"z\":359.92}},\"7bc8af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9971,\"z\":180.0169}},\"8fb673\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7024,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":180.0168}},\"9a31a2\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":0.0169}},\"aa51bd\":{\"lock\":false,\"pos\":{\"x\":-20.4906,\"y\":1.61,\"z\":-0.2397},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"b3fc0c\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.0169}},\"b7b0af\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6545,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.9978,\"z\":0.0687}},\"c11875\":{\"lock\":false,\"pos\":{\"x\":-27.044,\"y\":1.6214,\"z\":7.421},\"rot\":{\"x\":0.0799,\"y\":90.0002,\"z\":359.9831}},\"d46ad3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9957,\"z\":180.0169}},\"e5f61a\":{\"lock\":false,\"pos\":{\"x\":-27.0874,\"y\":1.6183,\"z\":-3.4055},\"rot\":{\"x\":0.0446,\"y\":45,\"z\":359.9316}},\"e9bc3d\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6982,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9972,\"z\":180.0169}},\"ed1fa4\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.7004,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9964,\"z\":180.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -136198,6 +144297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136217,7 +144318,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/", @@ -136225,12 +144327,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -136257,6 +144360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136271,12 +144376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -136304,6 +144410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136318,12 +144426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b54e44" }, { @@ -136351,6 +144460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136365,12 +144476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92a42c" } ], @@ -136401,6 +144513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136434,12 +144548,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -136466,6 +144581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136480,12 +144597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "626d66" }, { @@ -136513,6 +144631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136527,12 +144647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "284c5d" }, { @@ -136560,6 +144681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136574,12 +144697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2cb2b" }, { @@ -136607,6 +144731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136621,12 +144747,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc433e" }, { @@ -136654,6 +144781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136668,12 +144797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "315b46" }, { @@ -136701,6 +144831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136715,12 +144847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d069e" }, { @@ -136748,6 +144881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136762,12 +144897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5aad6" }, { @@ -136795,6 +144931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136809,12 +144947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d263e5" }, { @@ -136842,6 +144981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136856,12 +144997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86476d" }, { @@ -136889,6 +145031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136903,12 +145047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e574c3" }, { @@ -136936,6 +145081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136950,12 +145097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e367b5" }, { @@ -136983,6 +145131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -136997,12 +145147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "412b34" }, { @@ -137030,6 +145181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137044,12 +145197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "770eda" }, { @@ -137077,6 +145231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137091,12 +145247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb4050" }, { @@ -137124,6 +145281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137138,12 +145297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "784fca" }, { @@ -137171,6 +145331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137185,12 +145347,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d3401" }, { @@ -137218,6 +145381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137232,12 +145397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "259dd2" } ], @@ -137268,6 +145434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137283,12 +145451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a31a2" }, { @@ -137316,6 +145485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137335,12 +145506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -137367,6 +145539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137381,12 +145555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c2126" }, { @@ -137414,6 +145589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137428,12 +145605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5121a9" }, { @@ -137461,6 +145639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137475,12 +145655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "292aaa" } ], @@ -137511,6 +145692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137526,12 +145709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -137559,6 +145743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137587,12 +145773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -137619,6 +145806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137633,12 +145822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -137666,6 +145856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137680,12 +145872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -137713,6 +145906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137727,12 +145922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -137760,6 +145956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137774,12 +145972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -137807,6 +146006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137821,12 +146022,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -137854,6 +146056,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137868,12 +146072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -137901,6 +146106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137915,12 +146122,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -137948,6 +146156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -137962,12 +146172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -137995,6 +146206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138009,12 +146222,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -138042,6 +146256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138056,12 +146272,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -138089,6 +146306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138103,12 +146322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5dda44" }, { @@ -138136,6 +146356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138150,12 +146372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" } ], @@ -138186,6 +146409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138207,12 +146432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -138239,6 +146465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138253,12 +146481,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "713671" }, { @@ -138286,6 +146515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138300,12 +146531,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4ab48" }, { @@ -138333,6 +146565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138347,12 +146581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d76441" }, { @@ -138380,6 +146615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138395,12 +146632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce5873" }, { @@ -138428,6 +146666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138443,12 +146683,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f97ef" } ], @@ -138479,6 +146720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138494,12 +146737,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3fc0c" }, { @@ -138527,6 +146771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138545,9 +146791,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -138575,6 +146821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138593,9 +146841,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -138623,6 +146871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138641,9 +146891,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -138673,6 +146923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138688,12 +146940,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f7a8d" }, { @@ -138721,6 +146974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138739,9 +146994,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ceb58", "States": { "2": { @@ -138769,6 +147024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138787,9 +147044,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -138817,6 +147074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138835,9 +147094,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -138867,6 +147126,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138882,12 +147143,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7bc8af" }, { @@ -138915,6 +147177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138933,9 +147197,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa51bd", "States": { "2": { @@ -138963,6 +147227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -138981,9 +147247,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -139011,6 +147277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139029,9 +147297,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -139061,6 +147329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139076,12 +147346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40482a" }, { @@ -139109,6 +147380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139124,12 +147397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d46ad3" }, { @@ -139157,6 +147431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139175,9 +147451,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "552ae9", "States": { "2": { @@ -139205,6 +147481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139223,9 +147501,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -139253,6 +147531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139271,9 +147551,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -139303,6 +147583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139318,12 +147600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4230c1" }, { @@ -139351,6 +147634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139369,9 +147654,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c11875", "States": { "2": { @@ -139399,6 +147684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139417,9 +147704,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -139447,6 +147734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139465,9 +147754,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -139497,6 +147786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139515,9 +147806,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "453607", "States": { "2": { @@ -139545,6 +147836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139563,9 +147856,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -139593,6 +147886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139611,9 +147906,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -139643,6 +147938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139661,9 +147958,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5f61a", "States": { "2": { @@ -139691,6 +147988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139709,9 +148008,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -139739,6 +148038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139757,9 +148058,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -139789,6 +148090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139804,12 +148107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed1fa4" }, { @@ -139837,6 +148141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139855,9 +148161,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77e04b", "States": { "2": { @@ -139885,6 +148191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139903,9 +148211,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -139933,6 +148241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139951,9 +148261,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -139983,6 +148293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -139998,12 +148310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9bc3d" }, { @@ -140031,6 +148344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140049,9 +148364,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "374846", "States": { "2": { @@ -140079,6 +148394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140097,9 +148414,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -140127,6 +148444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140145,9 +148464,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -140177,6 +148496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140192,12 +148513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66e655" }, { @@ -140225,6 +148547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140240,12 +148564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19742b" } ], @@ -140276,6 +148601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140284,9 +148611,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"2afe31\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":0.0169}},\"35f5a8\":{\"lock\":false,\"pos\":{\"x\":-12.002,\"y\":1.6806,\"z\":8.2252},\"rot\":{\"x\":359.9201,\"y\":269.986,\"z\":180.0169}},\"4e1347\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9965,\"z\":180.0169}},\"53eed4\":{\"lock\":false,\"pos\":{\"x\":-11.5286,\"y\":1.6728,\"z\":13.9432},\"rot\":{\"x\":359.9201,\"y\":269.9856,\"z\":180.0169}},\"72cb29\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":180.0168}},\"a4069d\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6619,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.9981,\"z\":0.0687}},\"ae5aa8\":{\"lock\":false,\"pos\":{\"x\":-12.0755,\"y\":1.6717,\"z\":2.8225},\"rot\":{\"x\":359.9201,\"y\":269.971,\"z\":0.0169}},\"c21348\":{\"lock\":false,\"pos\":{\"x\":-2.6908,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9837,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -140313,6 +148640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140331,12 +148660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -140363,6 +148693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140377,12 +148709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf2458" }, { @@ -140410,6 +148743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140424,12 +148759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9d642" } ], @@ -140460,6 +148796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140500,12 +148838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -140532,6 +148871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140539,9 +148880,9 @@ "Hands": true, "CardID": 322, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -140570,6 +148911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140577,9 +148920,9 @@ "Hands": true, "CardID": 323, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -140608,6 +148951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140615,9 +148960,9 @@ "Hands": true, "CardID": 324, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -140646,6 +148991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140653,9 +149000,9 @@ "Hands": true, "CardID": 325, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -140684,6 +149031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140691,9 +149040,9 @@ "Hands": true, "CardID": 326, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -140722,6 +149071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140729,9 +149080,9 @@ "Hands": true, "CardID": 327, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -140760,6 +149111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140767,9 +149120,9 @@ "Hands": true, "CardID": 328, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -140798,6 +149151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140805,9 +149160,9 @@ "Hands": true, "CardID": 329, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -140836,6 +149191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140843,9 +149200,9 @@ "Hands": true, "CardID": 330, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -140874,6 +149231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140881,9 +149240,9 @@ "Hands": true, "CardID": 331, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -140912,6 +149271,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140919,9 +149280,9 @@ "Hands": true, "CardID": 332, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -140950,6 +149311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140957,9 +149320,9 @@ "Hands": true, "CardID": 333, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -140988,6 +149351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -140995,9 +149360,9 @@ "Hands": true, "CardID": 334, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -141026,6 +149391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141033,9 +149400,9 @@ "Hands": true, "CardID": 335, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -141064,6 +149431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141071,9 +149440,9 @@ "Hands": true, "CardID": 336, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -141102,6 +149471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141109,9 +149480,9 @@ "Hands": true, "CardID": 337, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -141140,6 +149511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141147,9 +149520,9 @@ "Hands": true, "CardID": 338, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -141178,6 +149551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141185,9 +149560,9 @@ "Hands": true, "CardID": 339, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -141216,6 +149591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141223,9 +149600,9 @@ "Hands": true, "CardID": 340, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -141254,6 +149631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141261,9 +149640,9 @@ "Hands": true, "CardID": 341, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -141292,6 +149671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141299,9 +149680,9 @@ "Hands": true, "CardID": 342, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -141330,6 +149711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141337,9 +149720,9 @@ "Hands": true, "CardID": 343, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -141368,6 +149751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141375,9 +149760,9 @@ "Hands": true, "CardID": 344, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" }, @@ -141406,6 +149791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141413,9 +149800,9 @@ "Hands": true, "CardID": 345, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "cf2458" } @@ -141447,6 +149834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141465,12 +149854,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -141497,6 +149887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141511,12 +149903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "462a52" }, { @@ -141544,6 +149937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141558,12 +149953,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc7bcd" } ], @@ -141594,6 +149990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141612,7 +150010,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "1545": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/", @@ -141620,12 +150019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -141652,6 +150052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141666,12 +150068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc7bcd" }, { @@ -141699,6 +150102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141713,12 +150118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f7e06" } ], @@ -141749,6 +150155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141774,12 +150182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -141806,6 +150215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141820,12 +150231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5db699" }, { @@ -141853,6 +150265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141867,12 +150281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce2c1c" }, { @@ -141900,6 +150315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141914,12 +150331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "012dd2" }, { @@ -141947,6 +150365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -141961,12 +150381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "115cd4" }, { @@ -141994,6 +150415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142008,12 +150431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b0c04" }, { @@ -142041,6 +150465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142055,12 +150481,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5a157" }, { @@ -142088,6 +150515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142102,12 +150531,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e19885" }, { @@ -142135,6 +150565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142149,12 +150581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0e41c" }, { @@ -142182,6 +150615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142196,12 +150631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72ad85" } ], @@ -142232,6 +150668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142253,12 +150691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -142285,6 +150724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142299,12 +150740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79c9a9" }, { @@ -142332,6 +150774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142346,12 +150790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7378a3" }, { @@ -142379,6 +150824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142393,12 +150840,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a659ab" }, { @@ -142426,6 +150874,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142440,12 +150890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65eb43" }, { @@ -142473,6 +150924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142487,12 +150940,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5211eb" } ], @@ -142523,6 +150977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142545,12 +151001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -142577,6 +151034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142591,12 +151050,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf2458" }, { @@ -142624,6 +151084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142638,12 +151100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ca085" }, { @@ -142671,6 +151134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142685,12 +151150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a3cbc" }, { @@ -142718,6 +151184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142732,12 +151200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a21282" }, { @@ -142765,6 +151234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142780,12 +151251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "789887" }, { @@ -142813,6 +151285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142828,12 +151302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5fd5f" } ], @@ -142864,6 +151339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142879,12 +151356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e1347" } ], @@ -142915,6 +151393,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -142933,9 +151413,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea0896" } ], @@ -142986,6 +151466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143004,9 +151486,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"2e8f0a\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9843,\"z\":0.0169}},\"3c18ed\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0482},\"rot\":{\"x\":359.9197,\"y\":269.9865,\"z\":0.0169}},\"4369ca\":{\"lock\":false,\"pos\":{\"x\":-20.9201,\"y\":1.6118,\"z\":3.8653},\"rot\":{\"x\":359.9747,\"y\":210,\"z\":0.0776}},\"4ed173\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7237,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9888,\"z\":180.0168}},\"4fa9f9\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"54707a\":{\"lock\":false,\"pos\":{\"x\":-4.0348,\"y\":1.5826,\"z\":-15.3238},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}},\"5ca1a9\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9848,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.5116,\"y\":1.6101,\"z\":-0.1741},\"rot\":{\"x\":359.9201,\"y\":269.9943,\"z\":0.0169}},\"7b5228\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"9e9bdd\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"a41e13\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"a8f47c\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6368,\"z\":14.2789},\"rot\":{\"x\":359.9552,\"y\":224.9986,\"z\":0.0687}},\"a9c518\":{\"lock\":false,\"pos\":{\"x\":-11.5089,\"y\":1.6766,\"z\":1.4197},\"rot\":{\"x\":359.9201,\"y\":269.999,\"z\":0.0169}},\"b874a8\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9998,\"z\":0.0799}},\"db443b\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"e67855\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9982,\"z\":180.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -143033,6 +151515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143057,12 +151541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -143089,6 +151574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143103,12 +151590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19a0bd" }, { @@ -143136,6 +151624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143150,12 +151640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a41e13" }, { @@ -143183,6 +151674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143197,12 +151690,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5fee6" }, { @@ -143230,6 +151724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143244,12 +151740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6eae64" }, { @@ -143277,6 +151774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143291,12 +151790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "680101" }, { @@ -143324,6 +151824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143338,12 +151840,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a91e9a" }, { @@ -143371,6 +151874,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143385,12 +151890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1054a6" }, { @@ -143418,6 +151924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143432,12 +151940,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a41e13" } ], @@ -143468,6 +151977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143505,12 +152016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -143537,6 +152049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143551,12 +152065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a41e13" }, { @@ -143584,6 +152099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143598,12 +152115,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9eec39" }, { @@ -143631,6 +152149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143645,12 +152165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "10a7af" }, { @@ -143678,6 +152199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143692,12 +152215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "322e08" }, { @@ -143725,6 +152249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143739,12 +152265,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dff5bb" }, { @@ -143772,6 +152299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143786,12 +152315,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ea87f" }, { @@ -143819,6 +152349,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143833,12 +152365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea7f95" }, { @@ -143866,6 +152399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143880,12 +152415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "450c70" }, { @@ -143913,6 +152449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143927,12 +152465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc9758" }, { @@ -143960,6 +152499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -143974,12 +152515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "525c1c" }, { @@ -144007,6 +152549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144021,12 +152565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "820770" }, { @@ -144054,6 +152599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144068,12 +152615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff614b" }, { @@ -144101,6 +152649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144115,12 +152665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44771e" }, { @@ -144148,6 +152699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144162,12 +152715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "94b9a5" }, { @@ -144195,6 +152749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144209,12 +152765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21cb1f" }, { @@ -144242,6 +152799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144256,12 +152815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ddfbb" }, { @@ -144289,6 +152849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144303,12 +152865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60b9d1" }, { @@ -144336,6 +152899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144350,12 +152915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01468c" }, { @@ -144383,6 +152949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144397,12 +152965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "164494" }, { @@ -144430,6 +152999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144444,12 +153015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63c4ec" }, { @@ -144477,6 +153049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144491,12 +153065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b76479" } ], @@ -144527,6 +153102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144546,12 +153123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -144578,6 +153156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144592,12 +153172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06645d" }, { @@ -144625,6 +153206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144639,12 +153222,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f217a" }, { @@ -144672,6 +153256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144686,12 +153272,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06645d" } ], @@ -144722,6 +153309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144741,12 +153330,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -144773,6 +153363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144787,12 +153379,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06645d" }, { @@ -144820,6 +153413,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144834,12 +153429,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec0834" }, { @@ -144867,6 +153463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144881,12 +153479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d45786" } ], @@ -144917,6 +153516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144932,12 +153533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db443b" }, { @@ -144965,6 +153567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -144983,9 +153587,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Nephew Calls'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "54707a" }, { @@ -145013,6 +153617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145031,12 +153637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -145063,6 +153670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145078,12 +153687,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b11b23" }, { @@ -145111,6 +153721,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145126,12 +153738,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "714913" } ], @@ -145162,6 +153775,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145177,12 +153792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b5228" }, { @@ -145210,6 +153826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145225,12 +153843,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e9bdd" }, { @@ -145258,6 +153877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145276,9 +153897,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ca1a9", "States": { "2": { @@ -145306,6 +153927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145324,9 +153947,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -145354,6 +153977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145372,9 +153997,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -145404,6 +154029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145422,9 +154049,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b874a8", "States": { "2": { @@ -145452,6 +154079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145470,9 +154099,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -145500,6 +154129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145518,9 +154149,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -145550,6 +154181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145565,12 +154198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e67855" }, { @@ -145598,6 +154232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145616,9 +154252,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4369ca", "States": { "2": { @@ -145646,6 +154282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145664,9 +154302,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -145694,6 +154332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145712,9 +154352,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -145744,6 +154384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145762,9 +154404,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -145792,6 +154434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145810,9 +154454,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -145840,6 +154484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145858,9 +154504,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -145890,6 +154536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145905,12 +154553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a41e13" }, { @@ -145938,6 +154587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -145953,12 +154604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa9f9" } ], @@ -146009,6 +154661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146027,9 +154681,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"4c5c55\":{\"lock\":false,\"pos\":{\"x\":8.0489,\"y\":1.2874,\"z\":7.1029},\"rot\":{\"x\":0.0799,\"y\":89.9962,\"z\":359.9831}},\"905ad3\":{\"lock\":false,\"pos\":{\"x\":8.4268,\"y\":1.2838,\"z\":-3.1101},\"rot\":{\"x\":0.0799,\"y\":89.9894,\"z\":359.9831}},\"c56f66\":{\"lock\":false,\"pos\":{\"x\":8.2949,\"y\":1.2857,\"z\":2.5561},\"rot\":{\"x\":0.0799,\"y\":89.9962,\"z\":359.9831}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -146056,6 +154710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146064,9 +154720,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"011eb3\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.9992,\"z\":0.0169}},\"0de6ae\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.999,\"z\":0.0169}},\"107646\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6885,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9969,\"z\":0.0169}},\"1cb460\":{\"lock\":false,\"pos\":{\"x\":-11.4245,\"y\":1.6759,\"z\":11.019},\"rot\":{\"x\":359.9201,\"y\":269.9897,\"z\":0.0169}},\"2b5207\":{\"lock\":false,\"pos\":{\"x\":-10.4261,\"y\":1.6714,\"z\":0.2753},\"rot\":{\"x\":359.9201,\"y\":270.0288,\"z\":0.0168}},\"4a6c2e\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"60c42d\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"6b5785\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-19.9096,\"y\":1.6093,\"z\":0.17},\"rot\":{\"x\":359.9201,\"y\":269.9955,\"z\":0.0169}},\"8bfbdf\":{\"lock\":false,\"pos\":{\"x\":-27.0339,\"y\":1.6192,\"z\":0.1143},\"rot\":{\"x\":359.9201,\"y\":269.9955,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6909,\"y\":1.5583,\"z\":14.2757},\"rot\":{\"x\":359.9551,\"y\":224.9793,\"z\":0.0687}},\"ae2582\":{\"lock\":false,\"pos\":{\"x\":-20.6953,\"y\":1.6124,\"z\":7.0916},\"rot\":{\"x\":359.9201,\"y\":269.9955,\"z\":0.0169}},\"afb02d\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":0.0169}},\"b5432c\":{\"lock\":false,\"pos\":{\"x\":-11.1725,\"y\":1.6779,\"z\":7.6917},\"rot\":{\"x\":359.9201,\"y\":269.9934,\"z\":0.0169}},\"bef698\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9648,\"z\":0.0169}},\"c1b848\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.6918,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":180.0168}},\"c53e86\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"c8c57a\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9835,\"z\":0.08}},\"ce7d99\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9977,\"z\":0.0169}},\"ea41d9\":{\"lock\":false,\"pos\":{\"x\":-4.1758,\"y\":1.5829,\"z\":-15.1198},\"rot\":{\"x\":359.9197,\"y\":269.9853,\"z\":0.0169}},\"ea8e80\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -146093,6 +154749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146111,9 +154769,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -146140,6 +154798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146155,12 +154815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4ee7f" }, { @@ -146188,6 +154849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146208,12 +154871,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -146240,6 +154904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146255,12 +154921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5085bd" }, { @@ -146288,6 +154955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146303,12 +154972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a771d6" }, { @@ -146336,6 +155006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146351,12 +155023,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9899ce" }, { @@ -146384,6 +155057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146399,12 +155074,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "261ab2" } ], @@ -146435,6 +155111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146456,7 +155134,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -146464,12 +155143,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -146496,6 +155176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146511,12 +155193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" }, { @@ -146544,6 +155227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146559,12 +155244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbc9d1" }, { @@ -146592,6 +155278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146607,12 +155295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -146640,6 +155329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146655,12 +155346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -146688,6 +155380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146703,12 +155397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" } ], @@ -146755,6 +155450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146786,7 +155483,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/", @@ -146794,12 +155492,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -146826,6 +155525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146841,12 +155542,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -146874,6 +155576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146889,12 +155593,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27fb6f" }, { @@ -146922,6 +155627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146937,12 +155644,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29b321" }, { @@ -146970,6 +155678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -146985,12 +155695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "644a25" }, { @@ -147018,6 +155729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147033,12 +155746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "238e38" }, { @@ -147066,6 +155780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147081,12 +155797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e87984" }, { @@ -147114,6 +155831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147129,12 +155848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa0e4d" }, { @@ -147162,6 +155882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147177,12 +155899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9b913" }, { @@ -147210,6 +155933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147225,12 +155950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "822d49" }, { @@ -147258,6 +155984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147273,12 +156001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -147306,6 +156035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147321,12 +156052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -147354,6 +156086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147369,12 +156103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -147402,6 +156137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147417,12 +156154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -147450,6 +156188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147465,12 +156205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" }, { @@ -147498,6 +156239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147513,12 +156256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" } ], @@ -147549,6 +156293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147568,12 +156314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -147600,6 +156347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147615,12 +156364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b66bbb" }, { @@ -147648,6 +156398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147663,12 +156415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d26b53" }, { @@ -147696,6 +156449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147711,12 +156466,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d19c4" } ], @@ -147747,6 +156503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147766,12 +156524,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -147798,6 +156557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147813,12 +156574,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "169085" }, { @@ -147846,6 +156608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147861,12 +156625,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4a1b3" }, { @@ -147894,6 +156659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147909,12 +156676,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1bdbb" } ], @@ -147945,6 +156713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -147963,9 +156733,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'London Set 1'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea41d9" }, { @@ -147993,6 +156763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148016,7 +156788,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/", @@ -148024,12 +156797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -148056,6 +156830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148071,12 +156847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "261ab2" }, { @@ -148104,6 +156881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148119,12 +156898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c0de31" }, { @@ -148152,6 +156932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148167,12 +156949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "261ab2" }, { @@ -148200,6 +156983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148215,12 +157000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "261ab2" }, { @@ -148248,6 +157034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148263,12 +157051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "261ab2" }, { @@ -148296,6 +157085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148311,12 +157102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "261ab2" }, { @@ -148344,6 +157136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148359,12 +157153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdc26d" } ], @@ -148395,6 +157190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148413,12 +157210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -148445,6 +157243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148460,12 +157260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "261ab2" }, { @@ -148493,6 +157294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148508,12 +157311,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5e422" } ], @@ -148544,6 +157348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148567,12 +157373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -148599,6 +157406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148614,12 +157423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "011eb3" }, { @@ -148647,6 +157457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148662,12 +157474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d5763" }, { @@ -148695,6 +157508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148710,12 +157525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0569c7" }, { @@ -148743,6 +157559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148758,12 +157576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b40021" }, { @@ -148791,6 +157610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148806,12 +157627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "858b8d" }, { @@ -148839,6 +157661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148854,12 +157678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65bbe0" }, { @@ -148887,6 +157712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148902,12 +157729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "635281" } ], @@ -148938,6 +157766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -148953,12 +157783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "afb02d" }, { @@ -148986,6 +157817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149001,12 +157834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b5785" }, { @@ -149034,6 +157868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149052,9 +157888,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae2582", "States": { "2": { @@ -149082,6 +157918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149100,9 +157938,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -149130,6 +157968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149148,9 +157988,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -149180,6 +158020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149198,9 +158040,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -149228,6 +158070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149246,9 +158090,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -149276,6 +158120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149294,9 +158140,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -149326,6 +158172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149344,9 +158192,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c53e86", "States": { "2": { @@ -149374,6 +158222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149392,9 +158242,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -149422,6 +158272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149440,9 +158292,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -149472,6 +158324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149487,12 +158341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce7d99" }, { @@ -149520,6 +158375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149538,9 +158395,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bfbdf", "States": { "2": { @@ -149568,6 +158425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149586,9 +158445,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -149616,6 +158475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149634,9 +158495,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -149666,6 +158527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149681,12 +158544,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a6c2e" }, { @@ -149714,6 +158578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149732,9 +158598,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60c42d", "States": { "2": { @@ -149762,6 +158628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149780,9 +158648,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -149810,6 +158678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149828,9 +158698,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -149860,6 +158730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149875,12 +158747,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0de6ae" }, { @@ -149908,6 +158781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149926,9 +158801,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8c57a", "States": { "2": { @@ -149956,6 +158831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -149974,9 +158851,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -150004,6 +158881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150022,9 +158901,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -150054,6 +158933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150069,12 +158950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "011eb3" }, { @@ -150102,6 +158984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150117,12 +159001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "107646" } ], @@ -150153,6 +159038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150161,9 +159048,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"011eb3\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6909,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9946,\"z\":0.0169}},\"0ae91a\":{\"lock\":false,\"pos\":{\"x\":-3.7523,\"y\":1.5824,\"z\":-14.8086},\"rot\":{\"x\":359.9197,\"y\":270.0077,\"z\":0.0168}},\"0cd4b6\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7237,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"0de6ae\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9933,\"z\":0.0169}},\"107646\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9932,\"z\":0.0169}},\"115cf0\":{\"lock\":false,\"pos\":{\"x\":-26.9022,\"y\":1.6212,\"z\":7.5617},\"rot\":{\"x\":359.9201,\"y\":269.9945,\"z\":0.0169}},\"28f641\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9941,\"z\":0.0169}},\"293045\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9734,\"z\":0.0169}},\"2fe44c\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6179,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"33cfb9\":{\"lock\":false,\"pos\":{\"x\":-10.7528,\"y\":1.668,\"z\":0.8496},\"rot\":{\"x\":359.9201,\"y\":270.0762,\"z\":0.0168}},\"386975\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9669,\"z\":0.0169}},\"3cde65\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180.0062,\"z\":0.0799}},\"4a6c2e\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9936,\"z\":0.0169}},\"5309ba\":{\"lock\":false,\"pos\":{\"x\":1.6948,\"y\":1.5583,\"z\":14.2792},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"6b5785\":{\"lock\":false,\"pos\":{\"x\":-13.3231,\"y\":1.6733,\"z\":4.9753},\"rot\":{\"x\":359.9201,\"y\":269.9731,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.6527,\"y\":1.6079,\"z\":-8.0711},\"rot\":{\"x\":359.9201,\"y\":269.9945,\"z\":0.0169}},\"79e8f6\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":-0.0001,\"z\":359.92}},\"7a19e5\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9804,\"z\":0.08}},\"84b8e4\":{\"lock\":false,\"pos\":{\"x\":-27.37,\"y\":1.6196,\"z\":-0.0822},\"rot\":{\"x\":359.9201,\"y\":269.9945,\"z\":0.0169}},\"9e0519\":{\"lock\":false,\"pos\":{\"x\":-11.8029,\"y\":1.6805,\"z\":13.582},\"rot\":{\"x\":359.9201,\"y\":269.9985,\"z\":0.0169}},\"a4066f\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"afb02d\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9933,\"z\":0.0169}},\"b05277\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6907,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9927,\"z\":0.0169}},\"c83d0d\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}},\"ce7d99\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9923,\"z\":0.0169}},\"d2e2cb\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"db2f11\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9928,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -150190,6 +159077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150208,9 +159097,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -150237,6 +159126,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150261,12 +159152,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -150293,6 +159185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150308,12 +159202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -150341,6 +159236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150356,12 +159253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "401760" }, { @@ -150389,6 +159287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150404,12 +159304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d98d0d" }, { @@ -150437,6 +159338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150452,12 +159355,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd620f" }, { @@ -150485,6 +159389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150500,12 +159406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b124ef" }, { @@ -150533,6 +159440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150548,12 +159457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "476433" }, { @@ -150581,6 +159491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150596,12 +159508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b06ff1" }, { @@ -150629,6 +159542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150644,12 +159559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd287a" } ], @@ -150680,6 +159596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150695,12 +159613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "261ab2" } ], @@ -150744,6 +159663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150781,7 +159702,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/", @@ -150789,12 +159711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -150821,6 +159744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150836,12 +159761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -150869,6 +159795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150884,12 +159812,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -150917,6 +159846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150932,12 +159863,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -150965,6 +159897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -150980,12 +159914,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -151013,6 +159948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151028,12 +159965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -151061,6 +159999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151076,12 +160016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -151109,6 +160050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151124,12 +160067,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -151157,6 +160101,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151172,12 +160118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -151205,6 +160152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151220,12 +160169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -151253,6 +160203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151268,12 +160220,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" }, { @@ -151301,6 +160254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151316,12 +160271,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbc9d1" }, { @@ -151349,6 +160305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151364,12 +160322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" }, { @@ -151397,6 +160356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151412,12 +160373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -151445,6 +160407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151460,12 +160424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27fb6f" }, { @@ -151493,6 +160458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151508,12 +160475,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "238e38" }, { @@ -151541,6 +160509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151556,12 +160526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e87984" }, { @@ -151589,6 +160560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151604,12 +160577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29b321" }, { @@ -151637,6 +160611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151652,12 +160628,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9b913" }, { @@ -151685,6 +160662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151700,12 +160679,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa0e4d" }, { @@ -151733,6 +160713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151748,12 +160730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "644a25" }, { @@ -151781,6 +160764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151796,12 +160781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "822d49" } ], @@ -151832,6 +160818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151850,12 +160838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -151882,6 +160871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151897,12 +160888,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cc30c" }, { @@ -151930,6 +160922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151945,12 +160939,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37fa58" } ], @@ -151981,6 +160976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -151999,12 +160996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -152031,6 +161029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152046,12 +161046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e20eb6" }, { @@ -152079,6 +161080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152094,12 +161097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6294d9" } ], @@ -152130,6 +161134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152148,9 +161154,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'London Set 2'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ae91a" }, { @@ -152178,6 +161184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152196,12 +161204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -152228,6 +161237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152243,12 +161254,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "003bab" }, { @@ -152276,6 +161288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152291,12 +161305,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5e422" } ], @@ -152327,6 +161342,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152342,12 +161359,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b5785" }, { @@ -152375,6 +161393,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152394,12 +161414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -152426,6 +161447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152441,12 +161464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db971e" }, { @@ -152474,6 +161498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152489,12 +161515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27e606" }, { @@ -152522,6 +161549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152537,12 +161566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "011eb3" } ], @@ -152573,6 +161603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152588,12 +161620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "293045" }, { @@ -152621,6 +161654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152639,9 +161674,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79e8f6", "States": { "2": { @@ -152669,6 +161704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152687,9 +161724,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -152717,6 +161754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152735,9 +161774,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -152767,6 +161806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152782,12 +161823,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "afb02d" }, { @@ -152815,6 +161857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152833,9 +161877,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -152863,6 +161907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152881,9 +161927,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -152911,6 +161957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152929,9 +161977,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -152961,6 +162009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -152976,12 +162026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b05277" }, { @@ -153009,6 +162060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153027,9 +162080,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fe44c", "States": { "2": { @@ -153057,6 +162110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153075,9 +162130,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -153105,6 +162160,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153123,9 +162180,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -153155,6 +162212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153170,12 +162229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0de6ae" }, { @@ -153203,6 +162263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153221,9 +162283,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a19e5", "States": { "2": { @@ -153251,6 +162313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153269,9 +162333,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -153299,6 +162363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153317,9 +162383,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -153349,6 +162415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153364,12 +162432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce7d99" }, { @@ -153397,6 +162466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153415,9 +162486,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4066f", "States": { "2": { @@ -153445,6 +162516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153463,9 +162536,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -153493,6 +162566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153511,9 +162586,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -153543,6 +162618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153558,12 +162635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "107646" }, { @@ -153591,6 +162669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153609,9 +162689,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "115cf0", "States": { "2": { @@ -153639,6 +162719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153657,9 +162739,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -153687,6 +162769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153705,9 +162789,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -153737,6 +162821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153755,9 +162841,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84b8e4", "States": { "2": { @@ -153785,6 +162871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153803,9 +162891,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -153833,6 +162921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153851,9 +162941,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -153883,6 +162973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153898,12 +162990,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a6c2e" }, { @@ -153931,6 +163024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153946,12 +163041,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "28f641" }, { @@ -153979,6 +163075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -153997,9 +163095,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cde65", "States": { "2": { @@ -154027,6 +163125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154045,9 +163145,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -154075,6 +163175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154093,9 +163195,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -154125,6 +163227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154140,12 +163244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db2f11" }, { @@ -154173,6 +163278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154191,9 +163298,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c83d0d", "States": { "2": { @@ -154221,6 +163328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154239,9 +163348,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -154269,6 +163378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154287,9 +163398,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -154319,6 +163430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154334,12 +163447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "011eb3" } ], @@ -154370,6 +163484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154378,9 +163494,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"03248d\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}},\"033221\":{\"lock\":false,\"pos\":{\"x\":1.6949,\"y\":1.5583,\"z\":14.2794},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"0572b6\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.0008,\"z\":0.0169}},\"07be44\":{\"lock\":false,\"pos\":{\"x\":-20.5346,\"y\":1.6102,\"z\":0.1387},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"103c28\":{\"lock\":false,\"pos\":{\"x\":-27.0591,\"y\":1.6215,\"z\":7.5884},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"173db8\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7024,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":180.0168}},\"309add\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0169}},\"3ff3b1\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0003,\"z\":359.9201}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"50e60c\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6555,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"5778d0\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"5b1e07\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6839,\"z\":-7.7781},\"rot\":{\"x\":359.9201,\"y\":270.0031,\"z\":0.0169}},\"65f357\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"66f72a\":{\"lock\":false,\"pos\":{\"x\":-4.0239,\"y\":1.6666,\"z\":14.5018},\"rot\":{\"x\":359.9197,\"y\":270.0198,\"z\":0.0168}},\"6af709\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.0052,\"z\":0.0169}},\"6d4103\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9974,\"z\":0.0169}},\"6f3431\":{\"lock\":false,\"pos\":{\"x\":-20.2168,\"y\":1.6119,\"z\":7.4941},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.6706,\"y\":1.6094,\"z\":-3.1371},\"rot\":{\"x\":359.9454,\"y\":329.9895,\"z\":359.9392}},\"838b75\":{\"lock\":false,\"pos\":{\"x\":-26.7256,\"y\":1.6187,\"z\":-0.0794},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"85e9d4\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}},\"8ba9f5\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9742,\"z\":0.0169}},\"8c42b7\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"976f2f\":{\"lock\":false,\"pos\":{\"x\":-10.1271,\"y\":1.6682,\"z\":-0.1136},\"rot\":{\"x\":359.9201,\"y\":270.0089,\"z\":0.0169}},\"9a473c\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9898,\"z\":0.0169}},\"a0392b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.9201}},\"b772b0\":{\"lock\":false,\"pos\":{\"x\":-20.4017,\"y\":1.6111,\"z\":3.7488},\"rot\":{\"x\":0.0446,\"y\":45.0094,\"z\":359.9316}},\"c2736e\":{\"lock\":false,\"pos\":{\"x\":-3.7192,\"y\":1.5823,\"z\":-14.8503},\"rot\":{\"x\":359.9197,\"y\":270.0052,\"z\":0.0168}},\"e4c61d\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6931,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -154407,6 +163523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154425,9 +163543,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -154454,6 +163572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154479,12 +163599,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -154511,6 +163632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154526,12 +163649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad68f3" }, { @@ -154559,6 +163683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154574,12 +163700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "301ab3" }, { @@ -154607,6 +163734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154622,12 +163751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "261ab2" }, { @@ -154655,6 +163785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154670,12 +163802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0dd" }, { @@ -154703,6 +163836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154718,12 +163853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e04cbc" }, { @@ -154751,6 +163887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154766,12 +163904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f39749" }, { @@ -154799,6 +163938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154814,12 +163955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2bbe98" }, { @@ -154847,6 +163989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154862,12 +164006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "54ab9f" }, { @@ -154895,6 +164040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154910,12 +164057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "142b74" } ], @@ -154946,6 +164094,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -154965,12 +164115,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -154997,6 +164148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155012,12 +164165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -155045,6 +164199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155060,12 +164216,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de24dc" }, { @@ -155093,6 +164250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155108,12 +164267,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecf8ce" } ], @@ -155144,6 +164304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155166,12 +164328,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -155198,6 +164361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155213,12 +164378,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -155246,6 +164412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155261,12 +164429,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -155294,6 +164463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155309,12 +164480,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -155342,6 +164514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155357,12 +164531,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" }, { @@ -155390,6 +164565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155405,12 +164582,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df668b" }, { @@ -155438,6 +164616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155453,12 +164633,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b7b" } ], @@ -155505,6 +164686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155528,7 +164711,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/", @@ -155536,12 +164720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -155568,6 +164753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155575,9 +164762,9 @@ "Hands": true, "CardID": 201, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "f4ee7f" }, @@ -155606,6 +164793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155613,9 +164802,9 @@ "Hands": true, "CardID": 202, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "f4ee7f" }, @@ -155644,6 +164833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155651,9 +164842,9 @@ "Hands": true, "CardID": 203, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "f4ee7f" }, @@ -155682,6 +164873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155689,9 +164882,9 @@ "Hands": true, "CardID": 204, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "f4ee7f" }, @@ -155720,6 +164913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155727,9 +164922,9 @@ "Hands": true, "CardID": 205, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "f4ee7f" }, @@ -155758,6 +164953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155765,9 +164962,9 @@ "Hands": true, "CardID": 206, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "f4ee7f" }, @@ -155796,6 +164993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155811,12 +165010,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "391496" } ], @@ -155847,6 +165047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155880,7 +165082,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -155888,12 +165091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -155920,6 +165124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155935,12 +165141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -155968,6 +165175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -155983,12 +165192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -156016,6 +165226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156031,12 +165243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" }, { @@ -156064,6 +165277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156079,12 +165294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -156112,6 +165328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156127,12 +165345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -156160,6 +165379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156175,12 +165396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -156208,6 +165430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156223,12 +165447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -156256,6 +165481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156271,12 +165498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" }, { @@ -156304,6 +165532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156319,12 +165549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -156352,6 +165583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156367,12 +165600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -156400,6 +165634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156415,12 +165651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -156448,6 +165685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156463,12 +165702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -156496,6 +165736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156511,12 +165753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -156544,6 +165787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156559,12 +165804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -156592,6 +165838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156607,12 +165855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -156640,6 +165889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156655,12 +165906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -156688,6 +165940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156703,12 +165957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "491a2b" } ], @@ -156739,6 +165994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156759,12 +166016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -156791,6 +166049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156806,12 +166066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9a032" }, { @@ -156839,6 +166100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156854,12 +166117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "812f39" }, { @@ -156887,6 +166151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156902,12 +166168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d15642" }, { @@ -156935,6 +166202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -156950,12 +166219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5342c" } ], @@ -156986,6 +166256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157001,12 +166273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e60c" }, { @@ -157034,6 +166307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157052,9 +166327,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'London Set 3'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2736e" }, { @@ -157082,6 +166357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157104,12 +166381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -157136,6 +166414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157151,12 +166431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "011eb3" }, { @@ -157184,6 +166465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157199,12 +166482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17c517" }, { @@ -157232,6 +166516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157247,12 +166533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "011eb3" }, { @@ -157280,6 +166567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157295,12 +166584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "011eb3" }, { @@ -157328,6 +166618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157343,12 +166635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "921fa2" }, { @@ -157376,6 +166669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157391,12 +166686,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "011eb3" } ], @@ -157427,6 +166723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157442,12 +166740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a473c" }, { @@ -157475,6 +166774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157493,9 +166794,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ff3b1", "States": { "2": { @@ -157523,6 +166824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157541,9 +166844,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -157571,6 +166874,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157589,9 +166894,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -157621,6 +166926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157636,12 +166943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6af709" }, { @@ -157669,6 +166977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157687,9 +166997,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65f357", "States": { "2": { @@ -157717,6 +167027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157735,9 +167047,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -157765,6 +167077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157783,9 +167097,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -157815,6 +167129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157830,12 +167146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5778d0" }, { @@ -157863,6 +167180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157881,9 +167200,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f3431", "States": { "2": { @@ -157911,6 +167230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157929,9 +167250,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -157959,6 +167280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -157977,9 +167300,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -158009,6 +167332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158027,9 +167352,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b772b0", "States": { "2": { @@ -158057,6 +167382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158075,9 +167402,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -158105,6 +167432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158123,9 +167452,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -158155,6 +167484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158173,9 +167504,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07be44", "States": { "2": { @@ -158203,6 +167534,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158221,9 +167554,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -158251,6 +167584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158269,9 +167604,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -158301,6 +167636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158319,9 +167656,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -158349,6 +167686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158367,9 +167706,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -158397,6 +167736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158415,9 +167756,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -158447,6 +167788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158462,12 +167805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d4103" }, { @@ -158495,6 +167839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158513,9 +167859,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0392b", "States": { "2": { @@ -158543,6 +167889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158561,9 +167909,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -158591,6 +167939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158609,9 +167959,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -158641,6 +167991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158656,12 +168008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "309add" }, { @@ -158689,6 +168042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158707,9 +168062,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85e9d4", "States": { "2": { @@ -158737,6 +168092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158755,9 +168112,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -158785,6 +168142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158803,9 +168162,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -158835,6 +168194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158850,12 +168211,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b1e07" }, { @@ -158883,6 +168245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158901,9 +168265,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "103c28", "States": { "2": { @@ -158931,6 +168295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158949,9 +168315,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -158979,6 +168345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -158997,9 +168365,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -159029,6 +168397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159047,9 +168417,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "838b75", "States": { "2": { @@ -159077,6 +168447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159095,9 +168467,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -159125,6 +168497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159143,9 +168517,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -159175,6 +168549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159190,12 +168566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c42b7" }, { @@ -159223,6 +168600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159241,9 +168620,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -159271,6 +168650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159289,9 +168670,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -159319,6 +168700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159337,9 +168720,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bd96a" } } @@ -159369,6 +168752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159384,12 +168769,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0572b6" }, { @@ -159417,6 +168803,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159435,9 +168823,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03248d", "States": { "2": { @@ -159465,6 +168853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159483,9 +168873,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -159513,6 +168903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159531,9 +168923,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -159563,6 +168955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159578,12 +168972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4c61d" } ], @@ -159637,6 +169032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159655,9 +169052,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"05dd0a\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"0df520\":{\"lock\":false,\"pos\":{\"x\":-11.4769,\"y\":1.6694,\"z\":7.3277},\"rot\":{\"x\":359.9201,\"y\":269.9876,\"z\":0.0169}},\"11a797\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"29a427\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":-0.0032,\"z\":359.9201}},\"30c8b6\":{\"lock\":false,\"pos\":{\"x\":-20.4245,\"y\":1.6099,\"z\":-0.3109},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"3b6690\":{\"lock\":false,\"pos\":{\"x\":-20.3057,\"y\":1.6086,\"z\":-3.9972},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"43390e\":{\"lock\":false,\"pos\":{\"x\":-25.129,\"y\":1.809,\"z\":-1.3516},\"rot\":{\"x\":359.9271,\"y\":270.0207,\"z\":6.3789}},\"49232a\":{\"lock\":false,\"pos\":{\"x\":-26.9264,\"y\":1.619,\"z\":-0.0365},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"567db0\":{\"lock\":false,\"pos\":{\"x\":-3.974,\"y\":1.5826,\"z\":-15.0374},\"rot\":{\"x\":359.9197,\"y\":270.0023,\"z\":0.0168}},\"5ee55d\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9988,\"z\":0.0169}},\"6f1e9e\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9695,\"z\":0.0802}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9828,\"y\":-0.0032,\"z\":359.9266}},\"7a4949\":{\"lock\":false,\"pos\":{\"x\":-11.176,\"y\":1.6668,\"z\":-0.012},\"rot\":{\"x\":359.9201,\"y\":270.0181,\"z\":0.0169}},\"7a4b8e\":{\"lock\":false,\"pos\":{\"x\":-20.0769,\"y\":1.6117,\"z\":7.4094},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"9c6ccd\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"a08fa0\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7237,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"a137d8\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6863,\"z\":-0.0301},\"rot\":{\"x\":359.921,\"y\":269.9989,\"z\":0.019}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2781},\"rot\":{\"x\":359.9551,\"y\":225.017,\"z\":0.0687}},\"b1d40e\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0068,\"z\":0.0803}},\"b8ca38\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9985,\"z\":0.0169}},\"d60ed8\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9992,\"z\":0.0169}},\"e3aa6a\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":-0.0033,\"z\":359.92}},\"e78e52\":{\"lock\":false,\"pos\":{\"x\":-20.229,\"y\":1.6108,\"z\":3.6702},\"rot\":{\"x\":359.9316,\"y\":315.0001,\"z\":359.9554}},\"eb5dd9\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"ffeff3\":{\"lock\":false,\"pos\":{\"x\":-27.1788,\"y\":1.6183,\"z\":-3.7526},\"rot\":{\"x\":359.9315,\"y\":314.8558,\"z\":359.9556}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -159684,6 +169081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159702,9 +169101,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -159731,6 +169130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159749,12 +169150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -159781,6 +169183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159796,12 +169200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "732e37" }, { @@ -159829,6 +169234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159844,12 +169251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ed2a5" } ], @@ -159880,6 +169288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159899,7 +169309,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "128": { "FaceURL": "https://i.imgur.com/Gz7Yegn.jpg/", @@ -159907,12 +169318,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -159939,6 +169351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -159954,12 +169368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91af93" }, { @@ -159987,6 +169402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160002,12 +169419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07dda2" }, { @@ -160035,6 +169453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160050,12 +169470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a52b06" } ], @@ -160102,6 +169523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160139,12 +169562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -160171,6 +169595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160178,9 +169604,9 @@ "Hands": true, "CardID": 12804, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160209,6 +169635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160216,9 +169644,9 @@ "Hands": true, "CardID": 12805, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160247,6 +169675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160254,9 +169684,9 @@ "Hands": true, "CardID": 12806, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160285,6 +169715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160292,9 +169724,9 @@ "Hands": true, "CardID": 12807, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160323,6 +169755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160330,9 +169764,9 @@ "Hands": true, "CardID": 12808, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160361,6 +169795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160368,9 +169804,9 @@ "Hands": true, "CardID": 12809, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160399,6 +169835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160406,9 +169844,9 @@ "Hands": true, "CardID": 12810, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160437,6 +169875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160444,9 +169884,9 @@ "Hands": true, "CardID": 12811, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160475,6 +169915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160482,9 +169924,9 @@ "Hands": true, "CardID": 12812, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160513,6 +169955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160520,9 +169964,9 @@ "Hands": true, "CardID": 12813, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160551,6 +169995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160558,9 +170004,9 @@ "Hands": true, "CardID": 12814, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160589,6 +170035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160596,9 +170044,9 @@ "Hands": true, "CardID": 12815, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160627,6 +170075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160634,9 +170084,9 @@ "Hands": true, "CardID": 12816, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160665,6 +170115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160672,9 +170124,9 @@ "Hands": true, "CardID": 12817, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160703,6 +170155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160710,9 +170164,9 @@ "Hands": true, "CardID": 12818, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160741,6 +170195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160748,9 +170204,9 @@ "Hands": true, "CardID": 12819, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160779,6 +170235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160786,9 +170244,9 @@ "Hands": true, "CardID": 12820, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160817,6 +170275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160824,9 +170284,9 @@ "Hands": true, "CardID": 12821, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160855,6 +170315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160862,9 +170324,9 @@ "Hands": true, "CardID": 12822, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160893,6 +170355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160900,9 +170364,9 @@ "Hands": true, "CardID": 12823, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" }, @@ -160931,6 +170395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160938,9 +170404,9 @@ "Hands": true, "CardID": 12824, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "43390e" } @@ -160972,6 +170438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -160990,12 +170458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -161022,6 +170491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161036,12 +170507,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5568fe" }, { @@ -161069,6 +170541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161083,12 +170557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e3bd3" } ], @@ -161119,6 +170594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161139,12 +170616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -161171,6 +170649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161186,12 +170666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b429c" }, { @@ -161219,6 +170700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161234,12 +170717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b7f28" }, { @@ -161267,6 +170751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161282,12 +170768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab3d7" }, { @@ -161315,6 +170802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161330,12 +170819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e3bd3" } ], @@ -161366,6 +170856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161381,12 +170873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05dd0a" }, { @@ -161414,6 +170907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161434,12 +170929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -161466,6 +170962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161481,12 +170979,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05dd0a" }, { @@ -161514,6 +171013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161529,12 +171030,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ade94" }, { @@ -161562,6 +171064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161577,12 +171081,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6099a7" }, { @@ -161610,6 +171115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161625,12 +171132,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcaa61" } ], @@ -161661,6 +171169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161681,12 +171191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -161713,6 +171224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161728,12 +171241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "732e37" }, { @@ -161761,6 +171275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161776,12 +171292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3fd3e" }, { @@ -161809,6 +171326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161824,12 +171343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cc600" }, { @@ -161857,6 +171377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161872,12 +171394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "732e37" } ], @@ -161908,6 +171431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161923,12 +171448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11a797" }, { @@ -161956,6 +171482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -161971,12 +171499,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8ca38" }, { @@ -162004,6 +171533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162019,12 +171550,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a137d8" }, { @@ -162052,6 +171584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162067,12 +171601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43390e" }, { @@ -162100,6 +171635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162115,12 +171652,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c6ccd" }, { @@ -162148,6 +171686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162163,12 +171703,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ee55d" }, { @@ -162196,6 +171737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162214,9 +171757,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3aa6a", "States": { "2": { @@ -162244,6 +171787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162262,9 +171807,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -162292,6 +171837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162310,9 +171857,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -162342,6 +171889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162360,9 +171909,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a4b8e", "States": { "2": { @@ -162390,6 +171939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162408,9 +171959,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -162438,6 +171989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162456,9 +172009,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -162488,6 +172041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162506,9 +172061,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e78e52", "States": { "2": { @@ -162536,6 +172091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162554,9 +172111,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -162584,6 +172141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162602,9 +172161,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -162634,6 +172193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162652,9 +172213,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30c8b6", "States": { "2": { @@ -162682,6 +172243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162700,9 +172263,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -162730,6 +172293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162748,9 +172313,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -162780,6 +172345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162798,9 +172365,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b6690", "States": { "2": { @@ -162828,6 +172395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162846,9 +172415,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -162876,6 +172445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162894,9 +172465,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -162926,6 +172497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162944,9 +172517,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29a427", "States": { "2": { @@ -162974,6 +172547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -162992,9 +172567,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -163022,6 +172597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163040,9 +172617,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -163072,6 +172649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163090,9 +172669,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -163120,6 +172699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163138,9 +172719,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -163168,6 +172749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163186,9 +172769,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -163218,6 +172801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163236,9 +172821,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49232a", "States": { "2": { @@ -163266,6 +172851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163284,9 +172871,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -163314,6 +172901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163332,9 +172921,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -163364,6 +172953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163382,9 +172973,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffeff3", "States": { "2": { @@ -163412,6 +173003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163430,9 +173023,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -163460,6 +173053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163478,9 +173073,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -163510,6 +173105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163525,12 +173122,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d60ed8" }, { @@ -163558,6 +173156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163573,12 +173173,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb5dd9" }, { @@ -163606,6 +173207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163624,9 +173227,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Last Call at Roxies'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "567db0" } ], @@ -163677,6 +173280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163695,9 +173300,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0679c6\":{\"lock\":false,\"pos\":{\"x\":-11.8399,\"y\":1.6678,\"z\":0.2602},\"rot\":{\"x\":359.9201,\"y\":269.988,\"z\":0.0169}},\"141409\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6982,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9963,\"z\":180.0169}},\"245b8d\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9964,\"z\":180.0169}},\"271ce2\":{\"lock\":false,\"pos\":{\"x\":-4.3628,\"y\":1.5831,\"z\":-15.1267},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"2d17c9\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.0169}},\"3106e6\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6368,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":0.0687}},\"917494\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"9d4e42\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9857,\"z\":180.0169}},\"a4e5e9\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.655,\"z\":-5.0486},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"a68851\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9972,\"z\":180.0169}},\"b21de6\":{\"lock\":false,\"pos\":{\"x\":-13.3172,\"y\":1.6804,\"z\":7.5859},\"rot\":{\"x\":359.9201,\"y\":269.9856,\"z\":180.0169}},\"b8480f\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"bab1d6\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.997,\"z\":180.0169}},\"c9e9ad\":{\"lock\":false,\"pos\":{\"x\":-5.3818,\"y\":1.4082,\"z\":14.423},\"rot\":{\"x\":359.9832,\"y\":-0.0034,\"z\":359.9196}},\"d306b8\":{\"lock\":false,\"pos\":{\"x\":-12.4062,\"y\":1.679,\"z\":12.7949},\"rot\":{\"x\":359.9201,\"y\":269.9857,\"z\":180.0169}},\"da3aed\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -163724,6 +173329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163748,12 +173355,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -163780,6 +173388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163787,9 +173397,9 @@ "Hands": true, "CardID": 154500, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "939666" }, @@ -163818,6 +173428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163825,9 +173437,9 @@ "Hands": true, "CardID": 154501, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "939666" }, @@ -163856,6 +173468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163863,9 +173477,9 @@ "Hands": true, "CardID": 154502, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "939666" }, @@ -163894,6 +173508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163901,9 +173517,9 @@ "Hands": true, "CardID": 154503, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "939666" }, @@ -163932,6 +173548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163939,9 +173557,9 @@ "Hands": true, "CardID": 154504, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "939666" }, @@ -163970,6 +173588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -163977,9 +173597,9 @@ "Hands": true, "CardID": 154505, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "939666" }, @@ -164008,6 +173628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164015,9 +173637,9 @@ "Hands": true, "CardID": 154506, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "939666" }, @@ -164046,6 +173668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164053,9 +173677,9 @@ "Hands": true, "CardID": 154507, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "939666" } @@ -164087,6 +173711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164095,9 +173721,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -164124,6 +173750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164138,12 +173766,13 @@ "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7244f1" }, { @@ -164171,6 +173800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164186,12 +173817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb89ee" }, { @@ -164219,6 +173851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164237,12 +173871,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -164269,6 +173904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164283,12 +173920,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eac151" }, { @@ -164316,6 +173954,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164330,12 +173970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4eeeb3" } ], @@ -164369,6 +174010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164395,12 +174038,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -164427,6 +174071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164441,12 +174087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75dbc1" }, { @@ -164474,6 +174121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164488,12 +174137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70647e" }, { @@ -164521,6 +174171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164535,12 +174187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38075d" }, { @@ -164568,6 +174221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164582,12 +174237,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d7c1b" }, { @@ -164615,6 +174271,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164629,12 +174287,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "372d32" }, { @@ -164662,6 +174321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164676,12 +174337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "710beb" }, { @@ -164709,6 +174371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164723,12 +174387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c0c305" }, { @@ -164756,6 +174421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164770,12 +174437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0997b0" }, { @@ -164803,6 +174471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164817,12 +174487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "379745" }, { @@ -164850,6 +174521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164864,12 +174537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "022c93" } ], @@ -164900,6 +174574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164940,12 +174616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -164972,6 +174649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -164979,9 +174658,9 @@ "Hands": true, "CardID": 149240, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165010,6 +174689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165017,9 +174698,9 @@ "Hands": true, "CardID": 149241, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165048,6 +174729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165055,9 +174738,9 @@ "Hands": true, "CardID": 149243, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165086,6 +174769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165093,9 +174778,9 @@ "Hands": true, "CardID": 149252, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165124,6 +174809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165131,9 +174818,9 @@ "Hands": true, "CardID": 149229, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165162,6 +174849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165169,9 +174858,9 @@ "Hands": true, "CardID": 149254, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165200,6 +174889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165207,9 +174898,9 @@ "Hands": true, "CardID": 149249, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165238,6 +174929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165245,9 +174938,9 @@ "Hands": true, "CardID": 149251, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165276,6 +174969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165283,9 +174978,9 @@ "Hands": true, "CardID": 149244, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165314,6 +175009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165321,9 +175018,9 @@ "Hands": true, "CardID": 149250, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165352,6 +175049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165359,9 +175058,9 @@ "Hands": true, "CardID": 149227, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165390,6 +175089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165397,9 +175098,9 @@ "Hands": true, "CardID": 149246, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165428,6 +175129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165435,9 +175138,9 @@ "Hands": true, "CardID": 149256, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165466,6 +175169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165473,9 +175178,9 @@ "Hands": true, "CardID": 149247, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165504,6 +175209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165511,9 +175218,9 @@ "Hands": true, "CardID": 149253, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165542,6 +175249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165549,9 +175258,9 @@ "Hands": true, "CardID": 149242, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165580,6 +175289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165587,9 +175298,9 @@ "Hands": true, "CardID": 149239, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165618,6 +175329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165625,9 +175338,9 @@ "Hands": true, "CardID": 149226, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165656,6 +175369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165663,9 +175378,9 @@ "Hands": true, "CardID": 149245, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165694,6 +175409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165701,9 +175418,9 @@ "Hands": true, "CardID": 149237, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165732,6 +175449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165739,9 +175458,9 @@ "Hands": true, "CardID": 149255, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165770,6 +175489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165777,9 +175498,9 @@ "Hands": true, "CardID": 149248, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165808,6 +175529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165815,9 +175538,9 @@ "Hands": true, "CardID": 149228, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" }, @@ -165846,6 +175569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165853,9 +175578,9 @@ "Hands": true, "CardID": 149238, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "063ef8" } @@ -165887,6 +175612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165905,12 +175632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -165937,6 +175665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165951,12 +175681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d7342" }, { @@ -165984,6 +175715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -165998,12 +175731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "183383" } ], @@ -166034,6 +175768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166053,12 +175789,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -166085,6 +175822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166099,12 +175838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d7342" }, { @@ -166132,6 +175872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166146,12 +175888,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb0cc3" }, { @@ -166179,6 +175922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166193,12 +175938,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d7342" } ], @@ -166229,6 +175975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166244,12 +175992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8480f" }, { @@ -166277,6 +176026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166295,9 +176046,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Knightfall'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "271ce2" }, { @@ -166325,6 +176076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166345,12 +176098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -166377,6 +176131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166391,12 +176147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "063ef8" }, { @@ -166424,6 +176181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166438,12 +176197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "063ef8" }, { @@ -166471,6 +176231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166485,12 +176247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e6cb8" }, { @@ -166518,6 +176281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166532,12 +176297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "063ef8" } ], @@ -166568,6 +176334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166588,12 +176356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -166620,6 +176389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166634,12 +176405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7656fa" }, { @@ -166667,6 +176439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166681,12 +176455,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c14553" }, { @@ -166714,6 +176489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166729,12 +176506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7ee7c" }, { @@ -166762,6 +176540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166777,12 +176557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bffd20" } ], @@ -166813,6 +176594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166828,12 +176611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bab1d6" }, { @@ -166861,6 +176645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166876,12 +176662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d17c9" }, { @@ -166909,6 +176696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166924,12 +176713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "245b8d" }, { @@ -166957,6 +176747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -166972,12 +176764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a68851" }, { @@ -167005,6 +176798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167020,12 +176815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "141409" }, { @@ -167053,6 +176849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167068,12 +176866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da3aed" } ], @@ -167124,6 +176923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167142,9 +176943,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"1e00a9\":{\"lock\":false,\"pos\":{\"x\":9.3117,\"y\":1.285,\"z\":4.9883},\"rot\":{\"x\":0.0799,\"y\":89.9803,\"z\":359.9831}},\"24e5eb\":{\"lock\":false,\"pos\":{\"x\":-5.6029,\"y\":1.5487,\"z\":23.9983},\"rot\":{\"x\":359.9201,\"y\":270.0043,\"z\":359.5229}},\"2889f0\":{\"lock\":false,\"pos\":{\"x\":9.5686,\"y\":1.2858,\"z\":9.0951},\"rot\":{\"x\":0.0799,\"y\":89.9924,\"z\":359.9831}},\"31a93a\":{\"lock\":false,\"pos\":{\"x\":8.9743,\"y\":1.2844,\"z\":1.3267},\"rot\":{\"x\":0.0799,\"y\":89.9966,\"z\":359.9831}},\"68ca42\":{\"lock\":false,\"pos\":{\"x\":-3.3874,\"y\":1.3969,\"z\":-14.6273},\"rot\":{\"x\":359.9832,\"y\":-0.0008,\"z\":359.9196}},\"bd069f\":{\"lock\":false,\"pos\":{\"x\":9.3965,\"y\":1.2827,\"z\":-2.4823},\"rot\":{\"x\":0.0799,\"y\":89.9951,\"z\":359.9831}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -167171,6 +176972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167179,9 +176982,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"06f433\":{\"lock\":false,\"pos\":{\"x\":-17.1194,\"y\":1.6875,\"z\":7.5696},\"rot\":{\"x\":359.9201,\"y\":269.9794,\"z\":180.0169}},\"14b82b\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9873,\"z\":0.0169}},\"213757\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6179,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"4dc835\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.656,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9958,\"z\":0.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-19.687,\"y\":1.6123,\"z\":11.298},\"rot\":{\"x\":359.9316,\"y\":315.0108,\"z\":359.9554}},\"76273e\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.7108,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9859,\"z\":180.0169}},\"79310a\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0195,\"z\":0.0168}},\"90d605\":{\"lock\":false,\"pos\":{\"x\":-10.9196,\"y\":1.6683,\"z\":-0.5513},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"98bc31\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6935,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9854,\"z\":180.0169}},\"a74606\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6967,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9858,\"z\":180.0169}},\"be855e\":{\"lock\":false,\"pos\":{\"x\":-11.0527,\"y\":1.7192,\"z\":10.8841},\"rot\":{\"x\":359.9201,\"y\":270.0252,\"z\":180.0168}},\"c0c8a9\":{\"lock\":false,\"pos\":{\"x\":-11.3845,\"y\":1.6833,\"z\":3.4859},\"rot\":{\"x\":359.9201,\"y\":270.0026,\"z\":180.0169}},\"cc8070\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9873,\"z\":0.0169}},\"d09055\":{\"lock\":false,\"pos\":{\"x\":-11.2947,\"y\":1.7237,\"z\":6.809},\"rot\":{\"x\":359.9201,\"y\":269.973,\"z\":180.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -167208,6 +177011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167229,12 +177034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -167261,6 +177067,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167275,12 +177083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "433f75" }, { @@ -167308,6 +177117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167322,12 +177133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba0de0" }, { @@ -167355,6 +177167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167369,12 +177183,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "433f75" }, { @@ -167402,6 +177217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167416,12 +177233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "433f75" }, { @@ -167449,6 +177267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167464,12 +177284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "433f75" } ], @@ -167500,6 +177321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167518,12 +177341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -167550,6 +177374,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167565,12 +177391,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "055fc4" }, { @@ -167598,6 +177425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167613,12 +177442,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "433f75" } ], @@ -167649,6 +177479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167664,12 +177496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14b82b" }, { @@ -167697,6 +177530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167731,7 +177566,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2741": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -167739,12 +177575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -167771,6 +177608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167785,12 +177624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -167818,6 +177658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167831,12 +177673,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -167864,6 +177707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167877,12 +177722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -167910,6 +177756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167923,12 +177771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -167956,6 +177805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -167969,12 +177820,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -168002,6 +177854,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168015,12 +177869,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -168048,6 +177903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168061,12 +177918,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -168094,6 +177952,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168107,12 +177967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" }, { @@ -168140,6 +178001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168153,12 +178016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -168186,6 +178050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168199,12 +178065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbc9d1" }, { @@ -168232,6 +178099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168247,12 +178116,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f11672" }, { @@ -168280,6 +178150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168295,12 +178167,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3eb066" }, { @@ -168328,6 +178201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168343,12 +178218,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b69d70" }, { @@ -168376,6 +178252,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168391,12 +178269,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9af300" }, { @@ -168424,6 +178303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168439,12 +178320,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "820152" }, { @@ -168472,6 +178354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168487,12 +178371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e63f5a" }, { @@ -168520,6 +178405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168533,12 +178420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" }, { @@ -168566,6 +178454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168579,12 +178469,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" } ], @@ -168615,6 +178506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168650,7 +178543,8 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -168658,7 +178552,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2739": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -168666,12 +178561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -168698,6 +178594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168712,12 +178610,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "539c59" }, { @@ -168745,6 +178644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168759,12 +178660,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aaf18e" }, { @@ -168792,6 +178694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168806,12 +178710,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd7179" }, { @@ -168839,6 +178744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168853,12 +178760,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9db000" }, { @@ -168886,6 +178794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168900,12 +178810,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11351e" }, { @@ -168933,6 +178844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168946,12 +178859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c1a8d" }, { @@ -168979,6 +178893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -168992,12 +178908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ed452" }, { @@ -169025,6 +178942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169038,12 +178957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "153bb1" }, { @@ -169071,6 +178991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169084,12 +179006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c5c91" }, { @@ -169117,6 +179040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169130,12 +179055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b7b" }, { @@ -169163,6 +179089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169176,12 +179104,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df668b" }, { @@ -169209,6 +179138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169222,12 +179153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" }, { @@ -169255,6 +179187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169268,12 +179202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -169301,6 +179236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169314,12 +179251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -169347,6 +179285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169360,12 +179300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -169393,6 +179334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169408,12 +179351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b42d66" }, { @@ -169441,6 +179385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169456,12 +179402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1871a3" }, { @@ -169489,6 +179436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169504,12 +179453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f29a3e" }, { @@ -169537,6 +179487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169552,12 +179504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3de5e" } ], @@ -169588,6 +179541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169606,12 +179561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -169638,6 +179594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169653,12 +179611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dfc4b" }, { @@ -169686,6 +179645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169701,12 +179662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d79ef" } ], @@ -169737,6 +179699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169752,12 +179716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90d605" }, { @@ -169785,6 +179750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169800,12 +179767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98bc31" }, { @@ -169833,6 +179801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169851,9 +179821,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -169881,6 +179851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169899,9 +179871,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -169929,6 +179901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -169947,9 +179921,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -169979,6 +179953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170000,12 +179976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -170032,6 +180009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170047,12 +180026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bf9b3" }, { @@ -170080,6 +180060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170095,12 +180077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62a5aa" }, { @@ -170128,6 +180111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170143,12 +180128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "076226" }, { @@ -170176,6 +180162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170191,12 +180179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bf333" }, { @@ -170224,6 +180213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170239,12 +180230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df037a" } ], @@ -170275,6 +180267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170293,9 +180287,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "213757", "States": { "2": { @@ -170323,6 +180317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170341,9 +180337,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -170371,6 +180367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170389,9 +180387,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -170421,6 +180419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170442,12 +180442,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -170474,6 +180475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170489,12 +180492,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7d031" }, { @@ -170522,6 +180526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170537,12 +180543,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f787c7" }, { @@ -170570,6 +180577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170585,12 +180594,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83f19f" }, { @@ -170618,6 +180628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170633,12 +180645,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40436b" }, { @@ -170666,6 +180679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170681,12 +180696,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa98fa" } ], @@ -170717,6 +180733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170735,12 +180753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -170767,6 +180786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170782,12 +180803,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e343cf" }, { @@ -170815,6 +180837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170830,12 +180854,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "609bf8" } ], @@ -170866,6 +180891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170881,12 +180908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc8070" } ], @@ -170917,6 +180945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170925,9 +180955,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"087ed1\":{\"lock\":false,\"pos\":{\"x\":-11.3346,\"y\":1.7415,\"z\":12.7089},\"rot\":{\"x\":359.9201,\"y\":269.9732,\"z\":180.0169}},\"0d3f61\":{\"lock\":false,\"pos\":{\"x\":-15.0724,\"y\":1.7861,\"z\":-8.297},\"rot\":{\"x\":355.8205,\"y\":269.9325,\"z\":180.0199}},\"138728\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9839,\"z\":180.0169}},\"1a4a03\":{\"lock\":false,\"pos\":{\"x\":-20.6258,\"y\":1.7081,\"z\":-7.4003},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"1b0adb\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9836,\"z\":180.0169}},\"1d33cd\":{\"lock\":false,\"pos\":{\"x\":-4.5791,\"y\":1.6795,\"z\":15.2743},\"rot\":{\"x\":359.9197,\"y\":269.9928,\"z\":180.0168}},\"3903e7\":{\"lock\":false,\"pos\":{\"x\":-27.0845,\"y\":1.717,\"z\":-7.863},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"4bf3b7\":{\"lock\":false,\"pos\":{\"x\":-30.1782,\"y\":1.6959,\"z\":-7.6729},\"rot\":{\"x\":359.9193,\"y\":269.6029,\"z\":180.0172}},\"5c70ce\":{\"lock\":false,\"pos\":{\"x\":-23.6761,\"y\":1.7134,\"z\":-3.8301},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":179.92}},\"71caf5\":{\"lock\":false,\"pos\":{\"x\":-19.7947,\"y\":1.7056,\"z\":-11.8689},\"rot\":{\"x\":359.9554,\"y\":225,\"z\":180.0684}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-27.6758,\"y\":1.629,\"z\":0.0505},\"rot\":{\"x\":359.4119,\"y\":269.982,\"z\":359.9801}},\"766770\":{\"lock\":false,\"pos\":{\"x\":-32.2798,\"y\":1.807,\"z\":-8.1555},\"rot\":{\"x\":3.9125,\"y\":269.5147,\"z\":180.0181}},\"7717e9\":{\"lock\":false,\"pos\":{\"x\":-27.4983,\"y\":1.7163,\"z\":-12.1591},\"rot\":{\"x\":0.0684,\"y\":135.0001,\"z\":180.0446}},\"792914\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.7248,\"z\":3.8599},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":179.92}},\"89e96e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":180.0169}},\"90d605\":{\"lock\":false,\"pos\":{\"x\":-10.6813,\"y\":1.6717,\"z\":2.9984},\"rot\":{\"x\":359.9202,\"y\":269.9999,\"z\":180.0168}},\"96e8c2\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.6682,\"z\":14.2787},\"rot\":{\"x\":359.9552,\"y\":224.9999,\"z\":180.0686}},\"a331b8\":{\"lock\":false,\"pos\":{\"x\":-17.1204,\"y\":1.6777,\"z\":-7.7007},\"rot\":{\"x\":359.9196,\"y\":270.0002,\"z\":180.0161}},\"aa067b\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9723,\"z\":0.0169}},\"ae5212\":{\"lock\":false,\"pos\":{\"x\":-11.3344,\"y\":1.7033,\"z\":9.7672},\"rot\":{\"x\":359.9201,\"y\":269.9853,\"z\":180.0169}},\"b6da2f\":{\"lock\":false,\"pos\":{\"x\":-20.5591,\"y\":1.7101,\"z\":-0.079},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"bdcc71\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4411},\"rot\":{\"x\":359.9197,\"y\":270.0039,\"z\":0.0168}},\"c3b6cb\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6846,\"z\":-15.2801},\"rot\":{\"x\":359.9186,\"y\":269.9979,\"z\":180.0157}},\"c94034\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.7004,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.984,\"z\":180.0169}},\"cee098\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9991,\"z\":0.0168}},\"d64ce3\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0039,\"z\":0.0169}},\"e98a01\":{\"lock\":false,\"pos\":{\"x\":-30.2339,\"y\":1.6983,\"z\":-0.0309},\"rot\":{\"x\":359.9325,\"y\":269.9375,\"z\":180.0201}},\"f5b09f\":{\"lock\":false,\"pos\":{\"x\":-25.8177,\"y\":1.7938,\"z\":-16.1877},\"rot\":{\"x\":3.8478,\"y\":270.0136,\"z\":180.0183}},\"fbd611\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6942,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":269.995,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -170954,6 +180984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -170972,12 +181004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -171004,6 +181037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171018,12 +181053,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff63a0" }, { @@ -171051,6 +181087,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171065,12 +181103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d98ae7" } ], @@ -171101,6 +181140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171129,12 +181170,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -171161,6 +181203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171174,12 +181218,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "476433" }, { @@ -171207,6 +181252,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171220,12 +181267,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b124ef" }, { @@ -171253,6 +181301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171266,12 +181316,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd287a" }, { @@ -171299,6 +181350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171312,12 +181365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b06ff1" }, { @@ -171345,6 +181399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171358,12 +181414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d98d0d" }, { @@ -171391,6 +181448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171404,12 +181463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd620f" }, { @@ -171437,6 +181497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171450,12 +181512,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -171483,6 +181546,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171496,12 +181561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "401760" }, { @@ -171529,6 +181595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171542,12 +181610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c1a8d" }, { @@ -171575,6 +181644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171588,12 +181659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ed452" }, { @@ -171621,6 +181693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171634,12 +181708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "153bb1" }, { @@ -171667,6 +181742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171680,12 +181757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c5c91" } ], @@ -171716,6 +181794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171754,12 +181834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -171786,6 +181867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171799,12 +181882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" }, { @@ -171832,6 +181916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171845,12 +181931,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -171878,6 +181965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171891,12 +181980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -171924,6 +182014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171937,12 +182029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -171970,6 +182063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -171983,12 +182078,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -172016,6 +182112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172029,12 +182127,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -172062,6 +182161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172075,12 +182176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -172108,6 +182210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172121,12 +182225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -172154,6 +182259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172167,12 +182274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" }, { @@ -172200,6 +182308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172213,12 +182323,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -172246,6 +182357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172259,12 +182372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -172292,6 +182406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172305,12 +182421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -172338,6 +182455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172351,12 +182470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -172384,6 +182504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172397,12 +182519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -172430,6 +182553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172443,12 +182568,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -172476,6 +182602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172489,12 +182617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -172522,6 +182651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172535,12 +182666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b7b" }, { @@ -172568,6 +182700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172581,12 +182715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df668b" }, { @@ -172614,6 +182749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172627,12 +182764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" }, { @@ -172660,6 +182798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172673,12 +182813,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -172706,6 +182847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172719,12 +182862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -172752,6 +182896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172765,12 +182911,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" } ], @@ -172801,6 +182948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172832,12 +182981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -172864,6 +183014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172877,12 +183029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d84de0" }, { @@ -172910,6 +183063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172923,12 +183078,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d60f3b" }, { @@ -172956,6 +183112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -172969,12 +183127,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a13ae" }, { @@ -173002,6 +183161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173015,12 +183176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a65f30" }, { @@ -173048,6 +183210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173061,12 +183225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c193f" }, { @@ -173094,6 +183259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173107,12 +183274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4218a0" }, { @@ -173140,6 +183308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173153,12 +183323,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e53b0" }, { @@ -173186,6 +183357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173199,12 +183372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -173232,6 +183406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173245,12 +183421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bda9db" }, { @@ -173278,6 +183455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173291,12 +183470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dbcee1" }, { @@ -173324,6 +183504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173337,12 +183519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19459f" }, { @@ -173370,6 +183553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173383,12 +183568,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -173416,6 +183602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173429,12 +183617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e441a" }, { @@ -173462,6 +183651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173475,12 +183666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67f705" }, { @@ -173508,6 +183700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173521,12 +183715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf03e4" } ], @@ -173557,6 +183752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173577,12 +183774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -173609,6 +183807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173623,12 +183823,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "433f75" }, { @@ -173656,6 +183857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173670,12 +183873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c3284" }, { @@ -173703,6 +183907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173717,12 +183923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3109f9" }, { @@ -173750,6 +183957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173764,12 +183973,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "929336" } ], @@ -173800,6 +184010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173819,12 +184031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -173851,6 +184064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173865,12 +184080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4d9b7" }, { @@ -173898,6 +184114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173912,12 +184130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce84c9" }, { @@ -173945,6 +184164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -173959,12 +184180,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d935fd" } ], @@ -173995,6 +184217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174010,12 +184234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdcc71" }, { @@ -174043,6 +184268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174058,12 +184285,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90d605" }, { @@ -174091,6 +184319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174106,12 +184336,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "138728" }, { @@ -174139,6 +184370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174154,12 +184387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d3f61" }, { @@ -174187,6 +184421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174202,12 +184438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a331b8" }, { @@ -174235,6 +184472,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174253,9 +184492,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6da2f", "States": { "2": { @@ -174283,6 +184522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174301,9 +184542,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -174331,6 +184572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174349,9 +184592,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -174381,6 +184624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174399,9 +184644,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a4a03", "States": { "2": { @@ -174429,6 +184674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174447,9 +184694,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -174477,6 +184724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174495,9 +184744,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -174527,6 +184776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174545,9 +184796,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "71caf5", "States": { "2": { @@ -174575,6 +184826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174593,9 +184846,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -174623,6 +184876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174641,9 +184896,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -174673,6 +184928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174688,12 +184945,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89e96e" }, { @@ -174721,6 +184979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174739,9 +184999,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c70ce", "States": { "2": { @@ -174769,6 +185029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174787,9 +185049,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -174817,6 +185079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174835,9 +185099,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -174867,6 +185131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174882,12 +185148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b0adb" }, { @@ -174915,6 +185182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174930,12 +185199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3b6cb" }, { @@ -174963,6 +185233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -174978,12 +185250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5b09f" }, { @@ -175011,6 +185284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175029,9 +185304,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7717e9", "States": { "2": { @@ -175059,6 +185334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175077,9 +185354,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -175107,6 +185384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175125,9 +185404,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -175157,6 +185436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175175,9 +185456,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3903e7", "States": { "2": { @@ -175205,6 +185486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175223,9 +185506,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -175253,6 +185536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175271,9 +185556,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -175303,6 +185588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175321,9 +185608,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -175351,6 +185638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175369,9 +185658,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -175399,6 +185688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175417,9 +185708,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -175449,6 +185740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175464,12 +185757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c94034" }, { @@ -175497,6 +185791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175515,9 +185811,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "792914", "States": { "2": { @@ -175545,6 +185841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175563,9 +185861,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -175593,6 +185891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175611,9 +185911,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -175643,6 +185943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175658,12 +185960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e98a01" }, { @@ -175691,6 +185994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175706,12 +186011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbd611" }, { @@ -175739,6 +186045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175754,12 +186062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bf3b7" }, { @@ -175787,6 +186096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175802,12 +186113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "766770" }, { @@ -175835,6 +186147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175850,12 +186164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d64ce3" } ], @@ -175886,6 +186201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175894,9 +186211,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"09320c\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7717,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9977,\"z\":180.0168}},\"11e93f\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.7004,\"z\":7.5705},\"rot\":{\"x\":359.9209,\"y\":270.0096,\"z\":180.0086}},\"1b73bd\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"1ca036\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6619,\"z\":14.2789},\"rot\":{\"x\":359.9552,\"y\":224.9977,\"z\":0.0687}},\"1cd786\":{\"lock\":false,\"pos\":{\"x\":-21.5283,\"y\":1.79,\"z\":-7.8794},\"rot\":{\"x\":356.0112,\"y\":269.9998,\"z\":180.017}},\"26922f\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9843,\"z\":0.0169}},\"2913c5\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.0301},\"rot\":{\"x\":359.9209,\"y\":269.9949,\"z\":180.0184}},\"3cb530\":{\"lock\":false,\"pos\":{\"x\":-26.5148,\"y\":1.6195,\"z\":3.6392},\"rot\":{\"x\":359.9454,\"y\":330.0001,\"z\":359.9392}},\"4ef83e\":{\"lock\":false,\"pos\":{\"x\":-21.829,\"y\":1.8121,\"z\":6.9887},\"rot\":{\"x\":355.3817,\"y\":269.9219,\"z\":180.0304}},\"53ef55\":{\"lock\":false,\"pos\":{\"x\":-31.8638,\"y\":1.8313,\"z\":-1.2458},\"rot\":{\"x\":359.9558,\"y\":269.9016,\"z\":186.8858}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"8211cc\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9988,\"z\":180.0169}},\"8fb89a\":{\"lock\":false,\"pos\":{\"x\":-31.6386,\"y\":1.8056,\"z\":-9.1782},\"rot\":{\"x\":359.9203,\"y\":269.9952,\"z\":185.7105}},\"97ceeb\":{\"lock\":false,\"pos\":{\"x\":-18.6379,\"y\":1.6085,\"z\":3.4567},\"rot\":{\"x\":0.0684,\"y\":134.9967,\"z\":0.0445}},\"a24f32\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9202,\"y\":269.9991,\"z\":180.0168}},\"af3894\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6983,\"z\":-0.03},\"rot\":{\"x\":359.9226,\"y\":269.999,\"z\":180.0194}},\"b0d181\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6459,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9907,\"z\":0.0168}},\"b0eeef\":{\"lock\":false,\"pos\":{\"x\":-26.9495,\"y\":1.6191,\"z\":0.0673},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"b82f40\":{\"lock\":false,\"pos\":{\"x\":-20.1155,\"y\":1.6095,\"z\":-0.0145},\"rot\":{\"x\":0.0799,\"y\":89.9996,\"z\":359.9831}},\"bd7527\":{\"lock\":false,\"pos\":{\"x\":-28.8493,\"y\":1.8022,\"z\":6.0369},\"rot\":{\"x\":359.9194,\"y\":269.969,\"z\":185.517}},\"be9fa2\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6585,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.012,\"z\":180.0168}},\"c02378\":{\"lock\":false,\"pos\":{\"x\":-8.9254,\"y\":1.6684,\"z\":-0.3712},\"rot\":{\"x\":359.919,\"y\":271.6256,\"z\":180.0179}},\"c6eb69\":{\"lock\":false,\"pos\":{\"x\":-15.3757,\"y\":1.8082,\"z\":-0.0492},\"rot\":{\"x\":355.1021,\"y\":270.0097,\"z\":180.0152}},\"ca2c9a\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.696,\"z\":-7.7},\"rot\":{\"x\":359.9214,\"y\":269.9993,\"z\":180.0176}},\"cb1366\":{\"lock\":false,\"pos\":{\"x\":-27.1267,\"y\":1.6181,\"z\":-4.0179},\"rot\":{\"x\":0.0253,\"y\":30,\"z\":359.9223}},\"cf757f\":{\"lock\":false,\"pos\":{\"x\":-27.0043,\"y\":1.6169,\"z\":-7.7115},\"rot\":{\"x\":0.0799,\"y\":89.9998,\"z\":359.9831}},\"d62e68\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9202,\"y\":269.9994,\"z\":180.0169}},\"d6e037\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.012,\"z\":180.0169}},\"e9d1b9\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -175923,6 +186240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -175969,7 +186288,8 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2739": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -175977,7 +186297,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2740": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -175985,7 +186306,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -175993,7 +186315,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -176001,12 +186324,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -176033,6 +186357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176047,12 +186373,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd4c83" }, { @@ -176080,6 +186407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176094,12 +186423,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9af55" }, { @@ -176127,6 +186457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176141,12 +186473,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05fb57" }, { @@ -176174,6 +186507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176189,12 +186524,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e44cc" }, { @@ -176222,6 +186558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176237,12 +186575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb30e1" }, { @@ -176270,6 +186609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176285,12 +186626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87710e" }, { @@ -176318,6 +186660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176333,12 +186677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1339d" }, { @@ -176366,6 +186711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176381,12 +186728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa4180" }, { @@ -176414,6 +186762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176429,12 +186779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17fa00" }, { @@ -176462,6 +186813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176477,12 +186830,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01f83c" }, { @@ -176510,6 +186864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176525,12 +186881,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ef482" }, { @@ -176558,6 +186915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176573,12 +186932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5eac8d" }, { @@ -176606,6 +186966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176621,12 +186983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1e06b" }, { @@ -176654,6 +187017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176669,12 +187034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91f147" }, { @@ -176702,6 +187068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176717,12 +187085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb66db" }, { @@ -176750,6 +187119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176765,12 +187136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82a16b" }, { @@ -176798,6 +187170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176813,12 +187187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "923e73" }, { @@ -176846,6 +187221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176861,12 +187238,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fdb79a" }, { @@ -176894,6 +187272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176909,12 +187289,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56c5b7" }, { @@ -176942,6 +187323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -176955,12 +187338,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -176988,6 +187372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177001,12 +187387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -177034,6 +187421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177047,12 +187436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -177080,6 +187470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177093,12 +187485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -177126,6 +187519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177139,12 +187534,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -177172,6 +187568,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177185,12 +187583,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bda9db" }, { @@ -177218,6 +187617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177231,12 +187632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dbcee1" }, { @@ -177264,6 +187666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177277,12 +187681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19459f" }, { @@ -177310,6 +187715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177323,12 +187730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -177356,6 +187764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177369,12 +187779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -177402,6 +187813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177415,12 +187828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" } ], @@ -177451,6 +187865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177466,12 +187882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11e93f" }, { @@ -177499,6 +187916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177517,9 +187936,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b73bd", "States": { "2": { @@ -177547,6 +187966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177565,9 +187986,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -177595,6 +188016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177613,9 +188036,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -177645,6 +188068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177663,7 +188088,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "37": { "FaceURL": "https://i.imgur.com/YcJaH8L.jpg", @@ -177671,12 +188097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -177703,6 +188130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177717,12 +188146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69cb3b" }, { @@ -177750,6 +188180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177764,12 +188196,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbfad2" } ], @@ -177800,6 +188233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177815,12 +188250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cd786" }, { @@ -177848,6 +188284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177867,12 +188305,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -177899,6 +188338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177913,12 +188354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "433f75" }, { @@ -177946,6 +188388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -177960,12 +188404,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd241a" }, { @@ -177993,6 +188438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178007,12 +188454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e6258" } ], @@ -178043,6 +188491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178058,12 +188508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2913c5" }, { @@ -178091,6 +188542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178109,9 +188562,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cb530", "States": { "2": { @@ -178139,6 +188592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178157,9 +188612,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -178187,6 +188642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178205,9 +188662,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -178237,6 +188694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178252,12 +188711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ef83e" }, { @@ -178285,6 +188745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178300,12 +188762,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53ef55" }, { @@ -178333,6 +188796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178351,9 +188816,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -178381,6 +188846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178399,9 +188866,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -178429,6 +188896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178447,9 +188916,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -178479,6 +188948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178494,12 +188965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8211cc" }, { @@ -178527,6 +188999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178542,12 +189016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fb89a" }, { @@ -178575,6 +189050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178593,9 +189070,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97ceeb", "States": { "2": { @@ -178623,6 +189100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178641,9 +189120,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -178671,6 +189150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178689,9 +189170,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -178721,6 +189202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178736,12 +189219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a24f32" }, { @@ -178769,6 +189253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178784,12 +189270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af3894" }, { @@ -178817,6 +189304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178843,12 +189332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -178875,6 +189365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178889,12 +189381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70e9a3" }, { @@ -178922,6 +189415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178936,12 +189431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0833b9" }, { @@ -178969,6 +189465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -178983,12 +189481,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db02ee" }, { @@ -179016,6 +189515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179030,12 +189531,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "293f9f" }, { @@ -179063,6 +189565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179077,12 +189581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8eec3c" }, { @@ -179110,6 +189615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179124,12 +189631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4371f0" }, { @@ -179157,6 +189665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179171,12 +189681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f587ac" }, { @@ -179204,6 +189715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179218,12 +189731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1feae" }, { @@ -179251,6 +189765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179265,12 +189781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a7556" }, { @@ -179298,6 +189815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179312,12 +189831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf9771" } ], @@ -179348,6 +189868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179366,9 +189888,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0eeef", "States": { "2": { @@ -179396,6 +189918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179414,9 +189938,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -179444,6 +189968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179462,9 +189988,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -179494,6 +190020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179512,9 +190040,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b82f40", "States": { "2": { @@ -179542,6 +190070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179560,9 +190090,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -179590,6 +190120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179608,9 +190140,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -179640,6 +190172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179655,12 +190189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd7527" }, { @@ -179688,6 +190223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179703,12 +190240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be9fa2" }, { @@ -179736,6 +190274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179751,12 +190291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c02378" }, { @@ -179784,6 +190325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179799,12 +190342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6eb69" }, { @@ -179832,6 +190376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179847,12 +190393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca2c9a" }, { @@ -179880,6 +190427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179898,9 +190447,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb1366", "States": { "2": { @@ -179928,6 +190477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179946,9 +190497,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -179976,6 +190527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -179994,9 +190547,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -180026,6 +190579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180044,9 +190599,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf757f", "States": { "2": { @@ -180074,6 +190629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180092,9 +190649,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -180122,6 +190679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180140,9 +190699,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -180172,6 +190731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180187,12 +190748,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d62e68" }, { @@ -180220,6 +190782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180235,12 +190799,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6e037" }, { @@ -180268,6 +190833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180286,9 +190853,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9d1b9", "States": { "2": { @@ -180316,6 +190883,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180334,9 +190903,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -180364,6 +190933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180382,9 +190953,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -180417,6 +190988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180425,9 +190998,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"1c3d2b\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6543,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9882,\"z\":0.0169}},\"3247af\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"3d0300\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.7004,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"430b88\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9969,\"z\":0.0169}},\"45769e\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.6368,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.9981,\"z\":0.0687}},\"4e7889\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"640916\":{\"lock\":false,\"pos\":{\"x\":-26.9066,\"y\":1.619,\"z\":-0.1608},\"rot\":{\"x\":359.9201,\"y\":269.9943,\"z\":0.0169}},\"65948c\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":180.0169}},\"68f7fa\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.676,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":269.9989,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.2935,\"y\":1.6097,\"z\":-0.4312},\"rot\":{\"x\":359.9201,\"y\":269.9943,\"z\":0.0169}},\"74c2c5\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9969,\"z\":0.0168}},\"7c3135\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"7d84fa\":{\"lock\":false,\"pos\":{\"x\":-26.3371,\"y\":1.617,\"z\":-4.287},\"rot\":{\"x\":359.9554,\"y\":225.0076,\"z\":0.0685}},\"855e12\":{\"lock\":false,\"pos\":{\"x\":-4.1007,\"y\":1.6633,\"z\":14.9294},\"rot\":{\"x\":359.9197,\"y\":269.9948,\"z\":0.0168}},\"8a541d\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0089,\"z\":0.0168}},\"90d605\":{\"lock\":false,\"pos\":{\"x\":-10.3166,\"y\":1.6705,\"z\":0.3733},\"rot\":{\"x\":359.9201,\"y\":269.9647,\"z\":180.0169}},\"914d11\":{\"lock\":false,\"pos\":{\"x\":-27.3014,\"y\":1.6205,\"z\":3.3269},\"rot\":{\"x\":359.9316,\"y\":314.9841,\"z\":359.9555}},\"a45a75\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"a98084\":{\"lock\":false,\"pos\":{\"x\":-27.0914,\"y\":1.6215,\"z\":7.6975},\"rot\":{\"x\":359.9201,\"y\":269.9943,\"z\":0.0169}},\"abf92a\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180.0001,\"z\":0.08}},\"b0142c\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6983,\"z\":-0.03},\"rot\":{\"x\":359.9206,\"y\":269.9998,\"z\":180.0168}},\"bd65ec\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7611,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":180.0168}},\"d781a0\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"edc283\":{\"lock\":false,\"pos\":{\"x\":-20.4266,\"y\":1.6121,\"z\":7.2246},\"rot\":{\"x\":359.9201,\"y\":270.0085,\"z\":0.0169}},\"f145e7\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"f7ea75\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -180454,6 +191027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180478,12 +191053,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -180510,6 +191086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180524,12 +191102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8431b" }, { @@ -180557,6 +191136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180571,12 +191152,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2092d4" }, { @@ -180604,6 +191186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180618,12 +191202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa94c7" }, { @@ -180651,6 +191236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180665,12 +191252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2ea0f" }, { @@ -180698,6 +191286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180712,12 +191302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc2b67" }, { @@ -180745,6 +191336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180759,12 +191352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27b138" }, { @@ -180792,6 +191386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180806,12 +191402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510766" }, { @@ -180839,6 +191436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180853,12 +191452,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa25fb" } ], @@ -180889,6 +191489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180904,12 +191506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "855e12" }, { @@ -180937,6 +191540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -180981,7 +191586,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2698": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -180989,7 +191595,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -180997,12 +191604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -181029,6 +191637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181042,12 +191652,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" }, { @@ -181075,6 +191686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181088,12 +191701,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -181121,6 +191735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181134,12 +191750,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -181167,6 +191784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181180,12 +191799,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -181213,6 +191833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181226,12 +191848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -181259,6 +191882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181272,12 +191897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -181305,6 +191931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181318,12 +191946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -181351,6 +191980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181364,12 +191995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -181397,6 +192029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181410,12 +192044,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -181443,6 +192078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181456,12 +192093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -181489,6 +192127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181502,12 +192142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -181535,6 +192176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181548,12 +192191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -181581,6 +192225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181594,12 +192240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -181627,6 +192274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181640,12 +192289,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -181673,6 +192323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181686,12 +192338,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -181719,6 +192372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181732,12 +192387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" }, { @@ -181765,6 +192421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181780,12 +192438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6d661" }, { @@ -181813,6 +192472,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181828,12 +192489,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "277475" }, { @@ -181861,6 +192523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181876,12 +192540,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "387022" }, { @@ -181909,6 +192574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181924,12 +192591,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "242c13" }, { @@ -181957,6 +192625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -181972,12 +192642,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19a4af" }, { @@ -182005,6 +192676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182020,12 +192693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "167950" }, { @@ -182053,6 +192727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182068,12 +192744,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b3650" }, { @@ -182101,6 +192778,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182116,12 +192795,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c3a60" }, { @@ -182149,6 +192829,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182164,12 +192846,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cda798" }, { @@ -182197,6 +192880,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182212,12 +192897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b180a" }, { @@ -182245,6 +192931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182260,12 +192948,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c9405" }, { @@ -182293,6 +192982,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182308,12 +192999,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f23fa9" } ], @@ -182344,6 +193036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182363,12 +193057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -182395,6 +193090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182409,12 +193106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "433f75" }, { @@ -182442,6 +193140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182456,12 +193156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e712e" }, { @@ -182489,6 +193190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182503,12 +193206,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "656ef2" } ], @@ -182539,6 +193243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182560,12 +193266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -182592,6 +193299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182606,12 +193315,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9943a0" }, { @@ -182639,6 +193349,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182653,12 +193365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cee587" }, { @@ -182686,6 +193399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182700,12 +193415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d78a4" }, { @@ -182733,6 +193449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182747,12 +193465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f4b01" }, { @@ -182780,6 +193499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182794,12 +193515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "463784" } ], @@ -182830,6 +193552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182845,12 +193569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74c2c5" }, { @@ -182878,6 +193603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182893,12 +193620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90d605" }, { @@ -182926,6 +193654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182941,12 +193671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d781a0" }, { @@ -182974,6 +193705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -182992,9 +193725,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abf92a", "States": { "2": { @@ -183022,6 +193755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183040,9 +193775,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -183070,6 +193805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183088,9 +193825,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -183120,6 +193857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183135,12 +193874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c3135" }, { @@ -183168,6 +193908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183183,12 +193925,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68f7fa" }, { @@ -183216,6 +193959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183234,9 +193979,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edc283", "States": { "2": { @@ -183264,6 +194009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183282,9 +194029,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -183312,6 +194059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183330,9 +194079,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -183362,6 +194111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183380,9 +194131,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -183410,6 +194161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183428,9 +194181,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -183458,6 +194211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183476,9 +194231,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -183508,6 +194263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183523,12 +194280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f145e7" }, { @@ -183556,6 +194314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183571,12 +194331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e7889" }, { @@ -183604,6 +194365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183622,9 +194385,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a45a75", "States": { "2": { @@ -183652,6 +194415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183670,9 +194435,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -183700,6 +194465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183718,9 +194485,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -183750,6 +194517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183765,12 +194534,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65948c" }, { @@ -183798,6 +194568,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183816,9 +194588,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a98084", "States": { "2": { @@ -183846,6 +194618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183864,9 +194638,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -183894,6 +194668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183912,9 +194688,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -183944,6 +194720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -183962,9 +194740,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "914d11", "States": { "2": { @@ -183992,6 +194770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184010,9 +194790,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -184040,6 +194820,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184058,9 +194840,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -184090,6 +194872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184108,9 +194892,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "640916", "States": { "2": { @@ -184138,6 +194922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184156,9 +194942,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -184186,6 +194972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184204,9 +194992,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -184236,6 +195024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184254,9 +195044,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d84fa", "States": { "2": { @@ -184284,6 +195074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184302,9 +195094,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -184332,6 +195124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184350,9 +195144,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -184382,6 +195176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184397,12 +195193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d0300" }, { @@ -184430,6 +195227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184445,12 +195244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0142c" }, { @@ -184478,6 +195278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184496,9 +195298,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7ea75", "States": { "2": { @@ -184526,6 +195328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184544,9 +195348,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -184574,6 +195378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184592,9 +195398,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -184624,6 +195430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184639,12 +195447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3247af" }, { @@ -184672,6 +195481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184687,12 +195498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "430b88" } ], @@ -184723,6 +195535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184731,9 +195545,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -184760,6 +195574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184795,12 +195611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -184827,6 +195644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184841,12 +195660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b504c2" }, { @@ -184874,6 +195694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184888,12 +195710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7db04" }, { @@ -184921,6 +195744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184935,12 +195760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5268f" }, { @@ -184968,6 +195794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -184982,12 +195810,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f923d0" }, { @@ -185015,6 +195844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185029,12 +195860,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5dd31b" }, { @@ -185062,6 +195894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185076,12 +195910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5bb53" }, { @@ -185109,6 +195944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185123,12 +195960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91d936" }, { @@ -185156,6 +195994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185170,12 +196010,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7c145" }, { @@ -185203,6 +196044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185217,12 +196060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4937d" }, { @@ -185250,6 +196094,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185264,12 +196110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6502a7" }, { @@ -185297,6 +196144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185311,12 +196160,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6922f1" }, { @@ -185344,6 +196194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185358,12 +196210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42a903" }, { @@ -185391,6 +196244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185405,12 +196260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "252b35" }, { @@ -185438,6 +196294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185452,12 +196310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e2271" }, { @@ -185485,6 +196344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185499,12 +196360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c95070" }, { @@ -185532,6 +196394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185546,12 +196410,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf6912" }, { @@ -185579,6 +196444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185593,12 +196460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a074c" }, { @@ -185626,6 +196494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185640,12 +196510,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "088eff" }, { @@ -185673,6 +196544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185687,12 +196560,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47ab0e" } ], @@ -185723,6 +196597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185757,12 +196633,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -185789,6 +196666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185803,12 +196682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "088eff" }, { @@ -185836,6 +196716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185850,12 +196732,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a074c" }, { @@ -185883,6 +196766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185897,12 +196782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf6912" }, { @@ -185930,6 +196816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185944,12 +196832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c95070" }, { @@ -185977,6 +196866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -185991,12 +196882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e2271" }, { @@ -186024,6 +196916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186038,12 +196932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "252b35" }, { @@ -186071,6 +196966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186085,12 +196982,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6502a7" }, { @@ -186118,6 +197016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186132,12 +197032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4937d" }, { @@ -186165,6 +197066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186179,12 +197082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91d936" }, { @@ -186212,6 +197116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186226,12 +197132,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5bb53" }, { @@ -186259,6 +197166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186273,12 +197182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5dd31b" }, { @@ -186306,6 +197216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186320,12 +197232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f923d0" }, { @@ -186353,6 +197266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186367,12 +197282,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5268f" }, { @@ -186400,6 +197316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186414,12 +197332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7db04" }, { @@ -186447,6 +197366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186461,12 +197382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "780a1f" }, { @@ -186494,6 +197416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186508,12 +197432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82ed9c" }, { @@ -186541,6 +197466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186555,12 +197482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b504c2" }, { @@ -186588,6 +197516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186602,12 +197532,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c57bcd" } ], @@ -186638,6 +197569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186671,12 +197604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -186703,6 +197637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186718,12 +197654,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82ed9c" }, { @@ -186751,6 +197688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186765,12 +197704,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "780a1f" }, { @@ -186798,6 +197738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186812,12 +197754,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df0de5" }, { @@ -186845,6 +197788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186859,12 +197804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c57bcd" }, { @@ -186892,6 +197838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186906,12 +197854,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7259f7" }, { @@ -186939,6 +197888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -186953,12 +197904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7db04" }, { @@ -186986,6 +197938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187000,12 +197954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5268f" }, { @@ -187033,6 +197988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187047,12 +198004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f923d0" }, { @@ -187080,6 +198038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187094,12 +198054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5dd31b" }, { @@ -187127,6 +198088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187141,12 +198104,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5bb53" }, { @@ -187174,6 +198138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187188,12 +198154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4937d" }, { @@ -187221,6 +198188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187235,12 +198204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "252b35" }, { @@ -187268,6 +198238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187282,12 +198254,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e2271" }, { @@ -187315,6 +198288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187329,12 +198304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c95070" }, { @@ -187362,6 +198338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187376,12 +198354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf6912" }, { @@ -187409,6 +198388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187423,12 +198404,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a074c" }, { @@ -187456,6 +198438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187470,12 +198454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "088eff" } ], @@ -187506,6 +198491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187539,12 +198526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -187571,6 +198559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187585,12 +198575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "088eff" }, { @@ -187618,6 +198609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187632,12 +198625,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a074c" }, { @@ -187665,6 +198659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187679,12 +198675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf6912" }, { @@ -187712,6 +198709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187726,12 +198725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c95070" }, { @@ -187759,6 +198759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187773,12 +198775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e2271" }, { @@ -187806,6 +198809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187820,12 +198825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "252b35" }, { @@ -187853,6 +198859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187867,12 +198875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5dd31b" }, { @@ -187900,6 +198909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187914,12 +198925,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f923d0" }, { @@ -187947,6 +198959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -187961,12 +198975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5268f" }, { @@ -187994,6 +199009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188008,12 +199025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7db04" }, { @@ -188041,6 +199059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188055,12 +199075,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7259f7" }, { @@ -188088,6 +199109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188102,12 +199125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c57bcd" }, { @@ -188135,6 +199159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188149,12 +199175,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "484d62" }, { @@ -188182,6 +199209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188196,12 +199225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df0de5" }, { @@ -188229,6 +199259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188243,12 +199275,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b504c2" }, { @@ -188276,6 +199309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188290,12 +199325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "780a1f" }, { @@ -188323,6 +199359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188337,12 +199375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82ed9c" } ], @@ -188376,6 +199415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188394,9 +199435,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e5eb" } ], @@ -188447,6 +199488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188465,9 +199508,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"057b7e\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":-0.0008,\"z\":359.9201}},\"06d29e\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9995,\"z\":0.0803}},\"149816\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":-0.0009,\"z\":359.9201}},\"1af6e8\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"1e7961\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9203,\"y\":270,\"z\":0.016}},\"29d7e2\":{\"lock\":false,\"pos\":{\"x\":-15.5985,\"y\":1.8209,\"z\":0.017},\"rot\":{\"x\":359.8887,\"y\":269.9785,\"z\":0.0184}},\"3ba881\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"3c4300\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":0.0169}},\"3d9a8b\":{\"lock\":false,\"pos\":{\"x\":-22.2198,\"y\":1.7339,\"z\":-7.7092},\"rot\":{\"x\":0.0792,\"y\":269.9715,\"z\":359.9832}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-26.7848,\"y\":1.6188,\"z\":-0.0522},\"rot\":{\"x\":0.0799,\"y\":90.0026,\"z\":359.9831}},\"46ead9\":{\"lock\":false,\"pos\":{\"x\":-31.7026,\"y\":1.743,\"z\":-7.7614},\"rot\":{\"x\":0.081,\"y\":270.0021,\"z\":359.9834}},\"61a21b\":{\"lock\":false,\"pos\":{\"x\":-20.5245,\"y\":1.6101,\"z\":-0.2141},\"rot\":{\"x\":359.9201,\"y\":269.8899,\"z\":0.0171}},\"6aa57e\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6954,\"z\":-0.0298},\"rot\":{\"x\":359.9207,\"y\":269.989,\"z\":0.0183}},\"6cb6e7\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":-0.0006,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":-0.0008,\"z\":359.9201}},\"845074\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"8bae65\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7344,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6961,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"b2bd25\":{\"lock\":false,\"pos\":{\"x\":-1.177,\"y\":1.5467,\"z\":-27.5609},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0169}},\"b5ceb0\":{\"lock\":false,\"pos\":{\"x\":-26.8548,\"y\":1.6211,\"z\":7.3881},\"rot\":{\"x\":359.9201,\"y\":270.0042,\"z\":0.0169}},\"b81937\":{\"lock\":false,\"pos\":{\"x\":-26.6804,\"y\":1.6176,\"z\":-3.8413},\"rot\":{\"x\":0.0684,\"y\":135.0054,\"z\":0.0446}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.819,\"y\":1.5823,\"z\":-15.2311},\"rot\":{\"x\":359.9197,\"y\":270.0322,\"z\":0.0168}},\"c6a2ab\":{\"lock\":false,\"pos\":{\"x\":-27.6254,\"y\":1.6167,\"z\":-11.1322},\"rot\":{\"x\":359.9316,\"y\":314.9959,\"z\":359.9554}},\"cca4ce\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.684,\"z\":-7.6884},\"rot\":{\"x\":359.9201,\"y\":270.0044,\"z\":0.0167}},\"d778ee\":{\"lock\":false,\"pos\":{\"x\":-26.967,\"y\":1.6168,\"z\":-7.7901},\"rot\":{\"x\":359.9201,\"y\":270.0042,\"z\":0.0169}},\"df8dff\":{\"lock\":false,\"pos\":{\"x\":-31.957,\"y\":1.8293,\"z\":-0.0662},\"rot\":{\"x\":4.7643,\"y\":270.0184,\"z\":0.017}},\"e02060\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"ea8211\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6931,\"z\":-7.6998},\"rot\":{\"x\":359.9202,\"y\":269.9836,\"z\":0.0165}},\"ef067f\":{\"lock\":false,\"pos\":{\"x\":-27.2278,\"y\":1.6207,\"z\":4.0347},\"rot\":{\"x\":0.0684,\"y\":135.0052,\"z\":0.0446}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -188494,6 +199537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188512,9 +199557,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -188541,6 +199586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188556,12 +199603,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e448d5" }, { @@ -188589,6 +199637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188604,12 +199654,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44dba6" }, { @@ -188637,6 +199688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188652,12 +199705,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1fb80" }, { @@ -188685,6 +199739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188700,12 +199756,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "902091" }, { @@ -188733,6 +199790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188748,12 +199807,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "459082" }, { @@ -188781,6 +199841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188796,12 +199858,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5541b1" }, { @@ -188829,6 +199892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188844,12 +199909,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41faa0" }, { @@ -188877,6 +199943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188892,12 +199960,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e426d0" }, { @@ -188925,6 +199994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188944,12 +200015,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -188976,6 +200048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -188991,12 +200065,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "902123" }, { @@ -189024,6 +200099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189039,12 +200116,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4bd76" }, { @@ -189072,6 +200150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189087,12 +200167,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c48c8b" } ], @@ -189123,6 +200204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189138,12 +200221,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "511acf" }, { @@ -189171,6 +200255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189186,12 +200272,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b290b5" }, { @@ -189219,6 +200306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189234,12 +200323,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2046ad" }, { @@ -189267,6 +200357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189282,12 +200374,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4aeeb" } ], @@ -189331,6 +200424,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189370,7 +200465,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "37": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -189378,7 +200474,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2782": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/", @@ -189386,12 +200483,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -189418,6 +200516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189433,12 +200533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -189466,6 +200567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189481,12 +200584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dbcee1" }, { @@ -189514,6 +200618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189529,12 +200635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -189562,6 +200669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189577,12 +200686,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a814c" }, { @@ -189610,6 +200720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189625,12 +200737,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cbb71e" }, { @@ -189658,6 +200771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189673,12 +200788,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b7b" }, { @@ -189706,6 +200822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189721,12 +200839,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bda9db" }, { @@ -189754,6 +200873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189769,12 +200890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85da91" }, { @@ -189802,6 +200924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189817,12 +200941,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ccbe21" }, { @@ -189850,6 +200975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189865,12 +200992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98fea7" }, { @@ -189898,6 +201026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189913,12 +201043,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76e166" }, { @@ -189946,6 +201077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -189961,12 +201094,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1058c3" }, { @@ -189994,6 +201128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190009,12 +201145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -190042,6 +201179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190057,12 +201196,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a7207" }, { @@ -190090,6 +201230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190105,12 +201247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f11672" }, { @@ -190138,6 +201281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190153,12 +201298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19459f" }, { @@ -190186,6 +201332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190201,12 +201349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df668b" }, { @@ -190234,6 +201383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190249,12 +201400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -190282,6 +201434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190297,12 +201451,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36c290" }, { @@ -190330,6 +201485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190345,12 +201502,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f9116" }, { @@ -190378,6 +201536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190393,12 +201553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "754870" }, { @@ -190426,6 +201587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190441,12 +201604,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebc777" }, { @@ -190474,6 +201638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190489,12 +201655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" } ], @@ -190525,6 +201692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190545,12 +201714,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -190577,6 +201747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190592,12 +201764,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a50e6" }, { @@ -190625,6 +201798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190640,12 +201815,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4b900" }, { @@ -190673,6 +201849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190688,12 +201866,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ff22a" }, { @@ -190721,6 +201900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190736,12 +201917,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abd600" } ], @@ -190772,6 +201954,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190791,12 +201975,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -190823,6 +202008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190838,12 +202025,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89e9bc" }, { @@ -190871,6 +202059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190886,12 +202076,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "528179" }, { @@ -190919,6 +202110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190934,12 +202127,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21e103" } ], @@ -190970,6 +202164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -190985,12 +202181,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "845074" }, { @@ -191018,6 +202215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191036,9 +202235,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Jennys Choice'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbb70a" }, { @@ -191066,6 +202265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191081,12 +202282,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2bd25", "States": { "2": { @@ -191114,6 +202316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191129,12 +202333,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5da00f" }, "4": { @@ -191162,6 +202367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191177,12 +202384,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93665b" }, "3": { @@ -191210,6 +202418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191225,12 +202435,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1a322" } } @@ -191260,6 +202471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191275,12 +202488,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df8dff" }, { @@ -191308,6 +202522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191323,12 +202539,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6aa57e" }, { @@ -191356,6 +202573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191371,12 +202590,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1af6e8" }, { @@ -191404,6 +202624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191422,9 +202644,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5ceb0", "States": { "2": { @@ -191452,6 +202674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191470,9 +202694,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -191500,6 +202724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191518,9 +202744,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -191550,6 +202776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191565,12 +202793,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ba881" }, { @@ -191598,6 +202827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191613,12 +202844,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c4300" }, { @@ -191646,6 +202878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191664,9 +202898,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -191694,6 +202928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191712,9 +202948,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -191742,6 +202978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191760,9 +202998,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -191792,6 +203030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191810,9 +203050,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef067f", "States": { "2": { @@ -191840,6 +203080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191858,9 +203100,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -191888,6 +203130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191906,9 +203150,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -191938,6 +203182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -191956,9 +203202,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -191986,6 +203232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192004,9 +203252,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -192034,6 +203282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192052,9 +203302,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6ce31" } } @@ -192084,6 +203334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192102,9 +203354,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b81937", "States": { "2": { @@ -192132,6 +203384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192150,9 +203404,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -192180,6 +203434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192198,9 +203454,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -192230,6 +203486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192248,9 +203506,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "149816", "States": { "2": { @@ -192278,6 +203536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192296,9 +203556,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -192326,6 +203586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192344,9 +203606,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -192376,6 +203638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192391,12 +203655,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8211" }, { @@ -192424,6 +203689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192439,12 +203706,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46ead9" }, { @@ -192472,6 +203740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192490,9 +203760,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d778ee", "States": { "2": { @@ -192520,6 +203790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192538,9 +203810,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -192568,6 +203840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192586,9 +203860,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -192618,6 +203892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192636,9 +203912,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "057b7e", "States": { "2": { @@ -192666,6 +203942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192684,9 +203962,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -192714,6 +203992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192732,9 +204012,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -192764,6 +204044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192782,9 +204064,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6a2ab", "States": { "2": { @@ -192812,6 +204094,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192830,9 +204114,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -192860,6 +204144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192878,9 +204164,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -192910,6 +204196,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192925,12 +204213,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d9a8b" }, { @@ -192958,6 +204247,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -192973,12 +204264,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cca4ce" }, { @@ -193006,6 +204298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193024,9 +204318,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6cb6e7", "States": { "2": { @@ -193054,6 +204348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193072,9 +204368,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -193102,6 +204398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193120,9 +204418,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -193152,6 +204450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193170,9 +204470,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61a21b", "States": { "2": { @@ -193200,6 +204500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193218,9 +204520,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -193248,6 +204550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193266,9 +204570,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -193298,6 +204602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193313,12 +204619,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e7961" }, { @@ -193346,6 +204653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193361,12 +204670,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29d7e2" } ], @@ -193417,6 +204727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193435,9 +204747,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"b1bc62\":{\"lock\":false,\"pos\":{\"x\":10.2009,\"y\":1.2817,\"z\":-2.161},\"rot\":{\"x\":0.0799,\"y\":89.9964,\"z\":359.9831}},\"c1aad0\":{\"lock\":false,\"pos\":{\"x\":9.6318,\"y\":1.285,\"z\":6.3703},\"rot\":{\"x\":0.0799,\"y\":89.9923,\"z\":359.9831}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -193464,6 +204776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193472,9 +204786,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"05413a\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0275,\"z\":0.0168}},\"12e23d\":{\"lock\":false,\"pos\":{\"x\":-24.8383,\"y\":1.6149,\"z\":-4.1087},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}},\"2c2a09\":{\"lock\":false,\"pos\":{\"x\":-12.3128,\"y\":1.6723,\"z\":3.7016},\"rot\":{\"x\":359.9201,\"y\":269.9852,\"z\":0.0169}},\"429d37\":{\"lock\":false,\"pos\":{\"x\":-23.6732,\"y\":1.6885,\"z\":7.5703},\"rot\":{\"x\":359.9201,\"y\":270.0264,\"z\":0.0168}},\"4415a4\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9801,\"z\":0.0169}},\"4d6b03\":{\"lock\":false,\"pos\":{\"x\":-27.0816,\"y\":1.617,\"z\":-7.6073},\"rot\":{\"x\":359.9201,\"y\":269.9946,\"z\":0.0169}},\"571a98\":{\"lock\":false,\"pos\":{\"x\":-23.6755,\"y\":1.6862,\"z\":-0.0306},\"rot\":{\"x\":359.9201,\"y\":270.0062,\"z\":0.0169}},\"584b5d\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9992,\"z\":0.0169}},\"5a913d\":{\"lock\":false,\"pos\":{\"x\":-17.1197,\"y\":1.6793,\"z\":7.5693},\"rot\":{\"x\":359.9201,\"y\":270.0259,\"z\":0.0168}},\"5c6382\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9988,\"z\":0.0169}},\"606a09\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0038,\"z\":0.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.2921,\"y\":1.6121,\"z\":7.6889},\"rot\":{\"x\":359.9201,\"y\":269.999,\"z\":0.0169}},\"73166d\":{\"lock\":false,\"pos\":{\"x\":-18.2906,\"y\":1.6058,\"z\":-4.1087},\"rot\":{\"x\":359.9831,\"y\":-0.0001,\"z\":359.92}},\"770021\":{\"lock\":false,\"pos\":{\"x\":-3.9576,\"y\":1.5826,\"z\":-15.002},\"rot\":{\"x\":359.9197,\"y\":270.0031,\"z\":0.0168}},\"798446\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7717,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0003,\"z\":180.0168}},\"7ceffc\":{\"lock\":false,\"pos\":{\"x\":-27.2793,\"y\":1.6208,\"z\":4.1298},\"rot\":{\"x\":359.9747,\"y\":210,\"z\":0.0776}},\"867f7f\":{\"lock\":false,\"pos\":{\"x\":-7.9963,\"y\":1.6677,\"z\":-10.2322},\"rot\":{\"x\":359.9205,\"y\":270.0005,\"z\":180.0168}},\"95af1f\":{\"lock\":false,\"pos\":{\"x\":-21.6146,\"y\":1.6106,\"z\":-3.3979},\"rot\":{\"x\":359.9454,\"y\":330.0002,\"z\":359.9392}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6948,\"y\":1.5583,\"z\":14.2793},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"a58bd7\":{\"lock\":false,\"pos\":{\"x\":-20.7598,\"y\":1.6106,\"z\":0.3824},\"rot\":{\"x\":359.9201,\"y\":269.9947,\"z\":0.0169}},\"a61a93\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9889,\"z\":0.0169}},\"e2e8f6\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6585,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0003,\"z\":180.0168}},\"e352b7\":{\"lock\":false,\"pos\":{\"x\":-26.9942,\"y\":1.6191,\"z\":-0.0584},\"rot\":{\"x\":359.9201,\"y\":269.9945,\"z\":0.0169}},\"e43485\":{\"lock\":false,\"pos\":{\"x\":-18.2907,\"y\":1.6081,\"z\":3.5813},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"eaa106\":{\"lock\":false,\"pos\":{\"x\":-20.6331,\"y\":1.608,\"z\":-7.6028},\"rot\":{\"x\":359.9201,\"y\":269.9839,\"z\":0.0169}},\"ee99b2\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"f7021e\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9989,\"z\":0.0169}},\"f7040b\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":180.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -193501,6 +204815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193519,9 +204835,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -193548,6 +204864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193563,12 +204881,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed9b36" }, { @@ -193596,6 +204915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193611,12 +204932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b272b0" }, { @@ -193644,6 +204966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193659,12 +204983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "656307" }, { @@ -193692,6 +205017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193716,12 +205043,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -193748,6 +205076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193763,12 +205093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "656307" }, { @@ -193796,6 +205127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193811,12 +205144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "471700" }, { @@ -193844,6 +205178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193859,12 +205195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "656307" }, { @@ -193892,6 +205229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193907,12 +205246,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "656307" }, { @@ -193940,6 +205280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -193955,12 +205297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "656307" }, { @@ -193988,6 +205331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194003,12 +205348,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "656307" }, { @@ -194036,6 +205382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194051,12 +205399,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d6c17" }, { @@ -194084,6 +205433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194099,12 +205450,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "656307" } ], @@ -194151,6 +205503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194197,12 +205551,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -194229,6 +205584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194244,12 +205601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5bbac" }, { @@ -194277,6 +205635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194292,12 +205652,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "312c65" }, { @@ -194325,6 +205686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194340,12 +205703,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a716c8" }, { @@ -194373,6 +205737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194388,12 +205754,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c0ae46" }, { @@ -194421,6 +205788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194436,12 +205805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c0ae46" }, { @@ -194469,6 +205839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194484,12 +205856,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c0ae46" }, { @@ -194517,6 +205890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194532,12 +205907,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5710a" }, { @@ -194565,6 +205941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194580,12 +205958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5710a" }, { @@ -194613,6 +205992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194628,12 +206009,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5710a" }, { @@ -194661,6 +206043,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194676,12 +206060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31bbc7" }, { @@ -194709,6 +206094,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194724,12 +206111,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31bbc7" }, { @@ -194757,6 +206145,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194772,12 +206162,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05b2f3" }, { @@ -194805,6 +206196,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194820,12 +206213,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05b2f3" }, { @@ -194853,6 +206247,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194868,12 +206264,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05b2f3" }, { @@ -194901,6 +206298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194916,12 +206315,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05b2f3" }, { @@ -194949,6 +206349,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -194964,12 +206366,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed9b36" }, { @@ -194997,6 +206400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195012,12 +206417,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed9b36" }, { @@ -195045,6 +206451,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195060,12 +206468,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "014a59" }, { @@ -195093,6 +206502,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195108,12 +206519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2cd05" }, { @@ -195141,6 +206553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195156,12 +206570,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2cd05" }, { @@ -195189,6 +206604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195204,12 +206621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40d269" }, { @@ -195237,6 +206655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195252,12 +206672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40d269" }, { @@ -195285,6 +206706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195300,12 +206723,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c9e67" }, { @@ -195333,6 +206757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195348,12 +206774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b41f35" }, { @@ -195381,6 +206808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195396,12 +206825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ae40a" }, { @@ -195429,6 +206859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195444,12 +206876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3c60" }, { @@ -195477,6 +206910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195492,12 +206927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "825286" }, { @@ -195525,6 +206961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195540,12 +206978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "044a59" }, { @@ -195573,6 +207012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195588,12 +207029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30a856" }, { @@ -195621,6 +207063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195636,12 +207080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6f0c1" } ], @@ -195672,6 +207117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195691,7 +207138,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2704": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949597535532228429/86F6C3BD12B9B7A68F6351F855C0526473992576/", @@ -195699,12 +207147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -195731,6 +207180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195746,12 +207197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6220e" }, { @@ -195779,6 +207231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195794,12 +207248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af5497" }, { @@ -195827,6 +207282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195842,12 +207299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "255b55" } ], @@ -195878,6 +207336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195897,12 +207357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -195929,6 +207390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195944,12 +207407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9e1fd" }, { @@ -195977,6 +207441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -195992,12 +207458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "079c62" }, { @@ -196025,6 +207492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196040,12 +207509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "158ad2" } ], @@ -196076,6 +207546,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196091,12 +207563,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2e8f6" }, { @@ -196124,6 +207597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196142,9 +207617,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Into the Shadowlands'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "770021" }, { @@ -196172,6 +207647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196192,12 +207669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -196224,6 +207702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196239,12 +207719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "963c63" }, { @@ -196272,6 +207753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196287,12 +207770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed9b36" }, { @@ -196320,6 +207804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196335,12 +207821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88c6dc" }, { @@ -196368,6 +207855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196383,12 +207872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2aad5f" } ], @@ -196419,6 +207909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196441,12 +207933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -196473,6 +207966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196488,12 +207983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2e8f6" }, { @@ -196521,6 +208017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196536,12 +208034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2e8f6" }, { @@ -196569,6 +208068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196584,12 +208085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2e8f6" }, { @@ -196617,6 +208119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196632,12 +208136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbd386" }, { @@ -196665,6 +208170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196680,12 +208187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c51f7" }, { @@ -196713,6 +208221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196728,12 +208238,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fe386" } ], @@ -196764,6 +208275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196779,12 +208292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a913d" }, { @@ -196812,6 +208326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196830,9 +208346,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e43485", "States": { "2": { @@ -196860,6 +208376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196878,9 +208396,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -196908,6 +208426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196926,9 +208446,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -196958,6 +208478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -196973,12 +208495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7021e" }, { @@ -197006,6 +208529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197024,9 +208549,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73166d", "States": { "2": { @@ -197054,6 +208579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197072,9 +208599,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -197102,6 +208629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197120,9 +208649,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -197152,6 +208681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197167,12 +208698,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "584b5d" }, { @@ -197200,6 +208732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197218,9 +208752,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -197248,6 +208782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197266,9 +208802,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -197296,6 +208832,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197314,9 +208852,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -197346,6 +208884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197364,9 +208904,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a58bd7", "States": { "2": { @@ -197394,6 +208934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197412,9 +208954,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -197442,6 +208984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197460,9 +209004,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -197492,6 +209036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197510,9 +209056,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95af1f", "States": { "2": { @@ -197540,6 +209086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197558,9 +209106,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -197588,6 +209136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197606,9 +209156,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -197638,6 +209188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197656,9 +209208,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eaa106", "States": { "2": { @@ -197686,6 +209238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197704,9 +209258,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -197734,6 +209288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197752,9 +209308,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -197784,6 +209340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197799,12 +209357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "429d37" }, { @@ -197832,6 +209391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197850,9 +209411,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ceffc", "States": { "2": { @@ -197880,6 +209441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197898,9 +209461,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -197928,6 +209491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197946,9 +209511,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -197978,6 +209543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -197993,12 +209560,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "571a98" }, { @@ -198026,6 +209594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198044,9 +209614,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12e23d", "States": { "2": { @@ -198074,6 +209644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198092,9 +209664,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -198122,6 +209694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198140,9 +209714,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -198172,6 +209746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198187,12 +209763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05413a" }, { @@ -198220,6 +209797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198238,9 +209817,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e352b7", "States": { "2": { @@ -198268,6 +209847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198286,9 +209867,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -198316,6 +209897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198334,9 +209917,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -198366,6 +209949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198381,12 +209966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c6382" }, { @@ -198414,6 +210000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198432,9 +210020,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee99b2", "States": { "2": { @@ -198462,6 +210050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198480,9 +210070,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -198510,6 +210100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198528,9 +210120,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -198560,6 +210152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198575,12 +210169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a61a93" }, { @@ -198608,6 +210203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198626,9 +210223,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d6b03", "States": { "2": { @@ -198656,6 +210253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198674,9 +210273,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -198704,6 +210303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198722,9 +210323,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -198754,6 +210355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198769,12 +210372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7040b" } ], @@ -198805,6 +210409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198813,9 +210419,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"036f4f\":{\"lock\":false,\"pos\":{\"x\":-23.676,\"y\":1.689,\"z\":-0.0299},\"rot\":{\"x\":359.9201,\"y\":269.9825,\"z\":180.0169}},\"055225\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.0169}},\"0cd242\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}},\"0cfc5e\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0225,\"z\":0.0168}},\"13be7c\":{\"lock\":false,\"pos\":{\"x\":-21.215,\"y\":1.6123,\"z\":4.0233},\"rot\":{\"x\":359.9316,\"y\":315,\"z\":359.9554}},\"1f108d\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9947,\"z\":180.0169}},\"2826ac\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6982,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9924,\"z\":180.0169}},\"2a77ff\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.9201}},\"2d5e7e\":{\"lock\":false,\"pos\":{\"x\":-11.5982,\"y\":1.6696,\"z\":4.4059},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":0.0169}},\"4daae5\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9944,\"z\":180.0169}},\"5f66f5\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}},\"61af07\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.705,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9956,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-21.0505,\"y\":1.6108,\"z\":-0.2109},\"rot\":{\"x\":359.9201,\"y\":269.9946,\"z\":0.0169}},\"72ea3f\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.976,\"z\":180.0169}},\"75bfc2\":{\"lock\":false,\"pos\":{\"x\":-34.0696,\"y\":1.6269,\"z\":-7.317},\"rot\":{\"x\":359.9201,\"y\":269.9946,\"z\":0.0169}},\"7dd177\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9937,\"z\":180.0169}},\"883bf5\":{\"lock\":false,\"pos\":{\"x\":-27.2606,\"y\":1.6194,\"z\":-0.5095},\"rot\":{\"x\":359.9201,\"y\":269.9946,\"z\":0.0169}},\"8b7f2d\":{\"lock\":false,\"pos\":{\"x\":-32.6947,\"y\":1.6257,\"z\":-4.7544},\"rot\":{\"x\":359.9316,\"y\":315,\"z\":359.9554}},\"920620\":{\"lock\":false,\"pos\":{\"x\":-33.588,\"y\":1.6273,\"z\":-3.3645},\"rot\":{\"x\":359.9554,\"y\":225,\"z\":0.0684}},\"9b8784\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6317,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6949,\"y\":1.5583,\"z\":14.2794},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"a56075\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.9201}},\"b4474e\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.7073,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9917,\"z\":180.0169}},\"be5f41\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9889,\"z\":0.0169}},\"c6e194\":{\"lock\":false,\"pos\":{\"x\":-20.6373,\"y\":1.6091,\"z\":-3.8438},\"rot\":{\"x\":359.9316,\"y\":315.0126,\"z\":359.9554}},\"c74e79\":{\"lock\":false,\"pos\":{\"x\":-27.986,\"y\":1.6216,\"z\":3.7608},\"rot\":{\"x\":0.0446,\"y\":45,\"z\":359.9316}},\"cbfed7\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0014,\"z\":0.0169}},\"dd140d\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9929,\"z\":180.0169}},\"e2e8f6\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0014,\"z\":0.0168}},\"f4c8b4\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.777,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":180.0168}},\"f79023\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -198842,6 +210448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198860,9 +210468,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -198889,6 +210497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198904,12 +210514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce59e0" }, { @@ -198937,6 +210548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -198952,12 +210565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed9b36" }, { @@ -198985,6 +210599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199000,12 +210616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d453fe" }, { @@ -199033,6 +210650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199048,12 +210667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "309659" }, { @@ -199081,6 +210701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199096,12 +210718,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2456b7" }, { @@ -199129,6 +210752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199159,12 +210784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -199191,6 +210817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199206,12 +210834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "548269" }, { @@ -199239,6 +210868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199254,12 +210885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf0eee" }, { @@ -199287,6 +210919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199302,12 +210936,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c8fc7" }, { @@ -199335,6 +210970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199350,12 +210987,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46c4a0" }, { @@ -199383,6 +211021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199398,12 +211038,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c9f5a" }, { @@ -199431,6 +211072,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199446,12 +211089,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9804bc" }, { @@ -199479,6 +211123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199494,12 +211140,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d9fa2" }, { @@ -199527,6 +211174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199542,12 +211191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30e3d0" }, { @@ -199575,6 +211225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199590,12 +211242,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba64ba" }, { @@ -199623,6 +211276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199638,12 +211293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a13c04" }, { @@ -199671,6 +211327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199686,12 +211344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d8a1d" }, { @@ -199719,6 +211378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199734,12 +211395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abc77b" }, { @@ -199767,6 +211429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199782,12 +211446,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a430b8" }, { @@ -199815,6 +211480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199830,12 +211497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8ad5c" } ], @@ -199882,6 +211550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199929,12 +211599,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -199961,6 +211632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -199976,12 +211649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c3dcb" }, { @@ -200009,6 +211683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200024,12 +211700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13b450" }, { @@ -200057,6 +211734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200072,12 +211751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "963a08" }, { @@ -200105,6 +211785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200120,12 +211802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d2148" }, { @@ -200153,6 +211836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200168,12 +211853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97a347" }, { @@ -200201,6 +211887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200216,12 +211904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "801137" }, { @@ -200249,6 +211938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200264,12 +211955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41a7f7" }, { @@ -200297,6 +211989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200312,12 +212006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6de454" }, { @@ -200345,6 +212040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200360,12 +212057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "177baa" }, { @@ -200393,6 +212091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200408,12 +212108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f19959" }, { @@ -200441,6 +212142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200456,12 +212159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cdb12" }, { @@ -200489,6 +212193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200504,12 +212210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b315a8" }, { @@ -200537,6 +212244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200552,12 +212261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c11a1" }, { @@ -200585,6 +212295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200600,12 +212312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ab66c" }, { @@ -200633,6 +212346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200648,12 +212363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33f38b" }, { @@ -200681,6 +212397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200696,12 +212414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d1758" }, { @@ -200729,6 +212448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200744,12 +212465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfb106" }, { @@ -200777,6 +212499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200792,12 +212516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "741409" }, { @@ -200825,6 +212550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200840,12 +212567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dea48f" }, { @@ -200873,6 +212601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200888,12 +212618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e05aae" }, { @@ -200921,6 +212652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200936,12 +212669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfaf53" }, { @@ -200969,6 +212703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -200984,12 +212720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "adccf5" }, { @@ -201017,6 +212754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201032,12 +212771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61b0e9" }, { @@ -201065,6 +212805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201080,12 +212822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "767250" }, { @@ -201113,6 +212856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201128,12 +212873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "752ab7" }, { @@ -201161,6 +212907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201176,12 +212924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e5a03" }, { @@ -201209,6 +212958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201224,12 +212975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf4565" }, { @@ -201257,6 +213009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201272,12 +213026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f1449" }, { @@ -201305,6 +213060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201320,12 +213077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8008bc" }, { @@ -201353,6 +213111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201368,12 +213128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8ed01" }, { @@ -201401,6 +213162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201416,12 +213179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf9fde" } ], @@ -201452,6 +213216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201471,12 +213237,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -201503,6 +213270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201518,12 +213287,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25a9c0" }, { @@ -201551,6 +213321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201566,12 +213338,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67432f" }, { @@ -201599,6 +213372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201614,12 +213389,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da2a01" } ], @@ -201650,6 +213426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201669,12 +213447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -201701,6 +213480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201716,12 +213497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8eb6f0" }, { @@ -201749,6 +213531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201764,12 +213548,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5bc95" }, { @@ -201797,6 +213582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201812,12 +213599,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c970f" } ], @@ -201848,6 +213636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201863,12 +213653,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2e8f6" }, { @@ -201896,6 +213687,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201917,12 +213710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -201949,6 +213743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -201964,12 +213760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0cc24" }, { @@ -201997,6 +213794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202012,12 +213811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17345d" }, { @@ -202045,6 +213845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202060,12 +213862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a075a" }, { @@ -202093,6 +213896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202108,12 +213913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "784876" }, { @@ -202141,6 +213947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202156,12 +213964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6818a" } ], @@ -202192,6 +214001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202207,12 +214018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd140d" }, { @@ -202240,6 +214052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202258,9 +214072,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a56075", "States": { "2": { @@ -202288,6 +214102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202306,9 +214122,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -202336,6 +214152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202354,9 +214172,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -202386,6 +214204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202401,12 +214221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "055225" }, { @@ -202434,6 +214255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202452,9 +214275,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f66f5", "States": { "2": { @@ -202482,6 +214305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202500,9 +214325,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -202530,6 +214355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202548,9 +214375,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -202580,6 +214407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202595,12 +214424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f108d" }, { @@ -202628,6 +214458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202643,12 +214475,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72ea3f" }, { @@ -202676,6 +214509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202694,9 +214529,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13be7c", "States": { "2": { @@ -202724,6 +214559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202742,9 +214579,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -202772,6 +214609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202790,9 +214629,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -202822,6 +214661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202840,9 +214681,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -202870,6 +214711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202888,9 +214731,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -202918,6 +214761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202936,9 +214781,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -202968,6 +214813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -202986,9 +214833,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6e194", "States": { "2": { @@ -203016,6 +214863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203034,9 +214883,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -203064,6 +214913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203082,9 +214933,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -203114,6 +214965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203132,9 +214985,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cd242", "States": { "2": { @@ -203162,6 +215015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203180,9 +215035,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -203210,6 +215065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203228,9 +215085,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -203260,6 +215117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203275,12 +215134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "036f4f" }, { @@ -203308,6 +215168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203326,9 +215188,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a77ff", "States": { "2": { @@ -203356,6 +215218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203374,9 +215238,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -203404,6 +215268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203422,9 +215288,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -203454,6 +215320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203469,12 +215337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4daae5" }, { @@ -203502,6 +215371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203520,9 +215391,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c74e79", "States": { "2": { @@ -203550,6 +215421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203568,9 +215441,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -203598,6 +215471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203616,9 +215491,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -203648,6 +215523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203663,12 +215540,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2826ac" }, { @@ -203696,6 +215574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203714,9 +215594,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79023", "States": { "2": { @@ -203744,6 +215624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203762,9 +215644,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -203792,6 +215674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203810,9 +215694,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -203842,6 +215726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203857,12 +215743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dd177" }, { @@ -203890,6 +215777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203908,9 +215797,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "883bf5", "States": { "2": { @@ -203938,6 +215827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -203956,9 +215847,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -203986,6 +215877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204004,9 +215897,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -204036,6 +215929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204054,9 +215949,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "920620", "States": { "2": { @@ -204084,6 +215979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204102,9 +215999,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -204132,6 +216029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204150,9 +216049,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -204182,6 +216081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204200,9 +216101,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b7f2d", "States": { "2": { @@ -204230,6 +216131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204248,9 +216151,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -204278,6 +216181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204296,9 +216201,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -204328,6 +216233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204346,9 +216253,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75bfc2", "States": { "2": { @@ -204376,6 +216283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204394,9 +216303,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -204424,6 +216333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204442,9 +216353,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -204474,6 +216385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204489,12 +216402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61af07" }, { @@ -204522,6 +216436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204540,9 +216456,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b8784", "States": { "2": { @@ -204570,6 +216486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204588,9 +216506,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -204618,6 +216536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204636,9 +216556,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -204668,6 +216588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204683,12 +216605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4474e" }, { @@ -204716,6 +216639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204731,12 +216656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cbfed7" } ], @@ -204790,6 +216716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204818,9 +216746,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"1ae977\":{\"lock\":false,\"pos\":{\"x\":-33.4282,\"y\":1.6258,\"z\":-7.7062},\"rot\":{\"x\":0.0799,\"y\":90.0006,\"z\":359.9831}},\"268bd8\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6937,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":180.0169}},\"35c492\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9977,\"z\":0.0799}},\"4011a5\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":180.0169}},\"505e6c\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"5bb7d0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9953,\"z\":180.0169}},\"5d070a\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":359.9832,\"y\":0.0096,\"z\":359.9201}},\"6645cd\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9981,\"z\":0.0799}},\"668f68\":{\"lock\":false,\"pos\":{\"x\":-26.9665,\"y\":1.6168,\"z\":-7.7199},\"rot\":{\"x\":0.0799,\"y\":90.0006,\"z\":359.9831}},\"6f1efa\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.705,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6065,\"z\":3.8598},\"rot\":{\"x\":0.0169,\"y\":179.9981,\"z\":0.0799}},\"759ab6\":{\"lock\":false,\"pos\":{\"x\":-20.2426,\"y\":1.6075,\"z\":-7.7066},\"rot\":{\"x\":0.0799,\"y\":90.0007,\"z\":359.9831}},\"7b91a3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":180.0169}},\"8944d1\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7237,\"z\":5.7573},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":180.0168}},\"98b72e\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6585,\"z\":-10.4431},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":180.0168}},\"a4612b\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9962,\"z\":180.0169}},\"b04a1a\":{\"lock\":false,\"pos\":{\"x\":-20.2608,\"y\":1.6098,\"z\":0.0434},\"rot\":{\"x\":0.0799,\"y\":90.0006,\"z\":359.9831}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.8027,\"y\":1.5824,\"z\":-14.9354},\"rot\":{\"x\":359.9197,\"y\":270.031,\"z\":0.0168}},\"cce0e0\":{\"lock\":false,\"pos\":{\"x\":-12.0115,\"y\":1.671,\"z\":7.4502},\"rot\":{\"x\":359.9201,\"y\":270.0065,\"z\":0.0169}},\"d26316\":{\"lock\":false,\"pos\":{\"x\":-26.8215,\"y\":1.6154,\"z\":-11.8145},\"rot\":{\"x\":0.045,\"y\":45.3509,\"z\":359.9319}},\"dbbfa0\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9789,\"z\":180.0169}},\"def2f5\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.664,\"z\":0.3734},\"rot\":{\"x\":359.9197,\"y\":270.001,\"z\":180.0168}},\"e9d947\":{\"lock\":false,\"pos\":{\"x\":-2.6895,\"y\":1.3987,\"z\":-5.0483},\"rot\":{\"x\":359.9832,\"y\":0.0002,\"z\":359.9197}},\"ff4d6f\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":180.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_PDF", @@ -204847,6 +216775,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204859,9 +216789,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8c00e" }, { @@ -204889,6 +216819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204907,9 +216839,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ae977", "States": { "2": { @@ -204937,6 +216869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -204955,9 +216889,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -204985,6 +216919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205003,9 +216939,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -205035,6 +216971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205050,12 +216988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "268bd8" }, { @@ -205083,6 +217022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205101,9 +217042,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35c492", "States": { "2": { @@ -205131,6 +217072,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205149,9 +217092,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -205179,6 +217122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205197,9 +217142,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -205229,6 +217174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205244,12 +217191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4011a5" }, { @@ -205277,6 +217225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205295,9 +217245,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -205324,6 +217274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205348,12 +217300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -205380,6 +217333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205395,12 +217350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40fdf1" }, { @@ -205428,6 +217384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205443,12 +217401,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40fdf1" }, { @@ -205476,6 +217435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205491,12 +217452,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40fdf1" }, { @@ -205524,6 +217486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205539,12 +217503,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40fdf1" }, { @@ -205572,6 +217537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205587,12 +217554,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40fdf1" }, { @@ -205620,6 +217588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205635,12 +217605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40fdf1" }, { @@ -205668,6 +217639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205683,12 +217656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3104e0" }, { @@ -205716,6 +217690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205731,12 +217707,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40fdf1" } ], @@ -205767,6 +217744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205782,12 +217761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40fdf1" } ], @@ -205831,6 +217811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205846,12 +217828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5bb7d0" }, { @@ -205879,6 +217862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205897,9 +217882,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d070a", "States": { "2": { @@ -205927,6 +217912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205945,9 +217932,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -205975,6 +217962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -205993,9 +217982,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -206025,6 +218014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206043,9 +218034,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6645cd", "States": { "2": { @@ -206073,6 +218064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206091,9 +218084,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -206121,6 +218114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206139,9 +218134,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -206171,6 +218166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206189,9 +218186,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "668f68", "States": { "2": { @@ -206219,6 +218216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206237,9 +218236,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -206267,6 +218266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206285,9 +218286,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -206317,6 +218318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206332,12 +218335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f1efa" }, { @@ -206365,6 +218369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206383,9 +218389,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -206413,6 +218419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206431,9 +218439,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -206461,6 +218469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206479,9 +218489,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -206511,6 +218521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206529,9 +218541,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "759ab6", "States": { "2": { @@ -206559,6 +218571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206577,9 +218591,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -206607,6 +218621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206625,9 +218641,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -206657,6 +218673,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206672,12 +218690,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b91a3" }, { @@ -206705,6 +218724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206742,12 +218763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -206774,6 +218796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206781,9 +218805,9 @@ "Hands": true, "CardID": 511, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -206812,6 +218836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206819,9 +218845,9 @@ "Hands": true, "CardID": 512, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -206850,6 +218876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206857,9 +218885,9 @@ "Hands": true, "CardID": 522, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -206888,6 +218916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206895,9 +218925,9 @@ "Hands": true, "CardID": 527, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -206926,6 +218956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206933,9 +218965,9 @@ "Hands": true, "CardID": 518, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -206964,6 +218996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -206971,9 +219005,9 @@ "Hands": true, "CardID": 517, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207002,6 +219036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207009,9 +219045,9 @@ "Hands": true, "CardID": 510, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207040,6 +219076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207055,12 +219093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40fdf1" }, { @@ -207088,6 +219127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207095,9 +219136,9 @@ "Hands": true, "CardID": 515, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207126,6 +219167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207133,9 +219176,9 @@ "Hands": true, "CardID": 509, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207164,6 +219207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207171,9 +219216,9 @@ "Hands": true, "CardID": 513, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207202,6 +219247,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207209,9 +219256,9 @@ "Hands": true, "CardID": 528, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207240,6 +219287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207247,9 +219296,9 @@ "Hands": true, "CardID": 520, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207278,6 +219327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207285,9 +219336,9 @@ "Hands": true, "CardID": 516, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207316,6 +219367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207323,9 +219376,9 @@ "Hands": true, "CardID": 525, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207354,6 +219407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207361,9 +219416,9 @@ "Hands": true, "CardID": 521, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207392,6 +219447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207399,9 +219456,9 @@ "Hands": true, "CardID": 523, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207430,6 +219487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207437,9 +219496,9 @@ "Hands": true, "CardID": 526, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207468,6 +219527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207475,9 +219536,9 @@ "Hands": true, "CardID": 519, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207506,6 +219567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207513,9 +219576,9 @@ "Hands": true, "CardID": 514, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" }, @@ -207544,6 +219607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207551,9 +219616,9 @@ "Hands": true, "CardID": 524, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "40fdf1" } @@ -207585,6 +219650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207600,12 +219667,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98b72e" }, { @@ -207633,6 +219701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207648,12 +219718,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4612b" }, { @@ -207681,6 +219752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207699,9 +219772,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b04a1a", "States": { "2": { @@ -207729,6 +219802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207747,9 +219822,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -207777,6 +219852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207795,9 +219872,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -207827,6 +219904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207845,9 +219924,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Initiation'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbb70a" }, { @@ -207875,6 +219954,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207896,12 +219977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -207928,6 +220010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207943,12 +220027,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "213b85" }, { @@ -207976,6 +220061,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -207991,12 +220078,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba65dc" }, { @@ -208024,6 +220112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208039,12 +220129,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c25a58" }, { @@ -208072,6 +220163,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208087,12 +220180,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "969a34" }, { @@ -208120,6 +220214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208135,12 +220231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ac3bf" } ], @@ -208171,6 +220268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208189,9 +220288,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d26316", "States": { "2": { @@ -208219,6 +220318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208237,9 +220338,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -208267,6 +220368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208285,9 +220388,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -208317,6 +220420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208332,12 +220437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dbbfa0" }, { @@ -208365,6 +220471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208384,12 +220492,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -208416,6 +220525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208431,12 +220542,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac4cc5" }, { @@ -208464,6 +220576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208479,12 +220593,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f26c3" }, { @@ -208512,6 +220627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208527,12 +220644,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f05a1e" } ], @@ -208563,6 +220681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208571,9 +220691,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -208600,6 +220720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208619,12 +220741,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -208651,6 +220774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208666,12 +220791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97283e" }, { @@ -208699,6 +220825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208714,12 +220842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f26c3" }, { @@ -208747,6 +220876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208762,12 +220893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4842b" } ], @@ -208798,6 +220930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208817,12 +220951,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -208849,6 +220984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208864,12 +221001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f45cc" }, { @@ -208897,6 +221035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208912,12 +221052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f92796" }, { @@ -208945,6 +221086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -208960,12 +221103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f26c3" } ], @@ -208996,6 +221140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209015,12 +221161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -209047,6 +221194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209062,12 +221211,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5b4ac" }, { @@ -209095,6 +221245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209110,12 +221262,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e49d46" }, { @@ -209143,6 +221296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209158,12 +221313,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f26c3" } ], @@ -209194,6 +221350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209213,12 +221371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -209245,6 +221404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209260,12 +221421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b64dc" }, { @@ -209293,6 +221455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209308,12 +221472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3bc15" }, { @@ -209341,6 +221506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209356,12 +221523,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f26c3" } ], @@ -209392,6 +221560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209411,12 +221581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -209443,6 +221614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209458,12 +221631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f26c3" }, { @@ -209491,6 +221665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209506,12 +221682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74523c" }, { @@ -209539,6 +221716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209554,12 +221733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cbd54" } ], @@ -209593,6 +221773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209608,12 +221790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff4d6f" } ], @@ -209642,12 +221825,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 8.088745, - "posY": 2.48184443, - "posZ": -28.7425747, - "rotX": 359.983246, - "rotY": 270.0006, - "rotZ": 0.00353658432, + "posX": 65.21953, + "posY": 2.543669, + "posZ": -79.29354, + "rotX": 359.979767, + "rotY": 270.000153, + "rotZ": 0.00427301461, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 @@ -209664,6 +221847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209692,9 +221877,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0fad66\":{\"lock\":false,\"pos\":{\"x\":12.25,\"y\":1.4607,\"z\":-12.6663},\"rot\":{\"x\":359.9201,\"y\":270.0131,\"z\":0.0169}},\"16ceab\":{\"lock\":false,\"pos\":{\"x\":12.2508,\"y\":1.4684,\"z\":13.4375},\"rot\":{\"x\":359.9201,\"y\":269.9978,\"z\":0.0169}},\"49dfb9\":{\"lock\":false,\"pos\":{\"x\":12.2508,\"y\":1.4633,\"z\":-3.9202},\"rot\":{\"x\":359.9201,\"y\":269.9943,\"z\":0.0169}},\"4f944f\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4658,\"z\":4.6877},\"rot\":{\"x\":359.9201,\"y\":270.0047,\"z\":0.0169}},\"82e1ed\":{\"lock\":false,\"pos\":{\"x\":-4.5533,\"y\":1.5835,\"z\":-14.8002},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"d5b604\":{\"lock\":false,\"pos\":{\"x\":12.2505,\"y\":1.2731,\"z\":-21.3052},\"rot\":{\"x\":359.9554,\"y\":225.0007,\"z\":0.0685}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -209704,7 +221889,7 @@ "posZ": -12.6663017, "rotX": 359.9201, "rotY": 270.013123, - "rotZ": 0.01685575, + "rotZ": 0.0168559, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 @@ -209721,6 +221906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209749,9 +221936,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"00370d\":{\"lock\":false,\"pos\":{\"x\":-30.1481,\"y\":1.6235,\"z\":-0.0657},\"rot\":{\"x\":0.0169,\"y\":180.0042,\"z\":0.0799}},\"14fc99\":{\"lock\":false,\"pos\":{\"x\":-26.9362,\"y\":1.6184,\"z\":-2.2878},\"rot\":{\"x\":359.9554,\"y\":224.9979,\"z\":0.0684}},\"1547b3\":{\"lock\":false,\"pos\":{\"x\":-36.7728,\"y\":1.7073,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"220781\":{\"lock\":false,\"pos\":{\"x\":-23.6842,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"2332f5\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6585,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"289540\":{\"lock\":false,\"pos\":{\"x\":-30.2238,\"y\":1.6942,\"z\":-3.8301},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"2aa861\":{\"lock\":false,\"pos\":{\"x\":-26.9738,\"y\":1.6209,\"z\":6.0714},\"rot\":{\"x\":0.0443,\"y\":44.7376,\"z\":359.9314}},\"338e54\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":-0.0024,\"z\":359.9201}},\"376a06\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"42cb1f\":{\"lock\":false,\"pos\":{\"x\":-5.3221,\"y\":1.7603,\"z\":0.3787},\"rot\":{\"x\":0.0168,\"y\":180.0363,\"z\":0.0803}},\"55a546\":{\"lock\":false,\"pos\":{\"x\":-30.2237,\"y\":1.6965,\"z\":3.8599},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6339,\"z\":3.8826},\"rot\":{\"x\":359.9831,\"y\":-0.0023,\"z\":359.9201}},\"79e739\":{\"lock\":false,\"pos\":{\"x\":-12.1716,\"y\":1.6542,\"z\":7.7749},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"82546b\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"9138d3\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"93479b\":{\"lock\":false,\"pos\":{\"x\":-26.8159,\"y\":1.6195,\"z\":1.9599},\"rot\":{\"x\":359.9317,\"y\":315.2073,\"z\":359.9552}},\"a07c49\":{\"lock\":false,\"pos\":{\"x\":-12.1147,\"y\":1.6552,\"z\":11.1599},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"a4e80d\":{\"lock\":false,\"pos\":{\"x\":-33.3391,\"y\":1.6286,\"z\":2.1094},\"rot\":{\"x\":0.0446,\"y\":45.0004,\"z\":359.9316}},\"b16a2e\":{\"lock\":false,\"pos\":{\"x\":0.2326,\"y\":1.6528,\"z\":5.5852},\"rot\":{\"x\":0.0803,\"y\":89.9745,\"z\":359.9831}},\"b6eab2\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6362,\"z\":11.46},\"rot\":{\"x\":359.9831,\"y\":-0.0025,\"z\":359.9201}},\"bd7dba\":{\"lock\":false,\"pos\":{\"x\":-36.7728,\"y\":1.7067,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"e4f726\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.777,\"z\":5.757},\"rot\":{\"x\":359.9197,\"y\":269.9938,\"z\":180.0168}},\"f0b042\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3735},\"rot\":{\"x\":0.0168,\"y\":179.9986,\"z\":0.0803}},\"fa8aeb\":{\"lock\":false,\"pos\":{\"x\":-7.8007,\"y\":1.6642,\"z\":0.3669},\"rot\":{\"x\":0.0168,\"y\":180.0059,\"z\":0.0801}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -209778,6 +221965,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209796,9 +221985,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00370d", "States": { "2": { @@ -209826,6 +222015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209844,9 +222035,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -209874,6 +222065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209892,9 +222085,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -209924,6 +222117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209942,9 +222137,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14fc99", "States": { "2": { @@ -209972,6 +222167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -209990,9 +222187,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -210020,6 +222217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210038,9 +222237,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -210070,6 +222269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210085,12 +222286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1547b3" }, { @@ -210118,6 +222320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210133,12 +222337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "220781" }, { @@ -210166,6 +222371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210181,12 +222388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2332f5" }, { @@ -210214,6 +222422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210229,12 +222439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "289540" }, { @@ -210262,6 +222473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210280,9 +222493,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2aa861", "States": { "2": { @@ -210310,6 +222523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210328,9 +222543,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -210358,6 +222573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210376,9 +222593,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -210408,6 +222625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210426,9 +222645,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "338e54", "States": { "2": { @@ -210456,6 +222675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210474,9 +222695,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -210504,6 +222725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210522,9 +222745,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -210554,6 +222777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210572,9 +222797,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -210601,6 +222826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210616,12 +222843,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c2ea6" }, { @@ -210649,6 +222877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210664,12 +222894,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "965cf3" }, { @@ -210697,6 +222928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210712,12 +222945,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "105f2d" }, { @@ -210745,6 +222979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210760,12 +222996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1bcffd" } ], @@ -210809,6 +223046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210828,12 +223067,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -210860,6 +223100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210875,12 +223117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34b3e6" }, { @@ -210908,6 +223151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210923,12 +223168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c7fc6" }, { @@ -210956,6 +223202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -210971,12 +223219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5bbe0" } ], @@ -211007,6 +223256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211022,12 +223273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55a546" }, { @@ -211055,6 +223307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211073,9 +223327,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -211103,6 +223357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211121,9 +223377,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -211151,6 +223407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211169,9 +223427,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -211201,6 +223459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211225,12 +223485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -211257,6 +223518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211272,12 +223535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de6e73" }, { @@ -211305,6 +223569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211320,12 +223586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b7fb1" }, { @@ -211353,6 +223620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211368,12 +223637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82abfd" }, { @@ -211401,6 +223671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211416,12 +223688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd53bf" }, { @@ -211449,6 +223722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211464,12 +223739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "140dc5" }, { @@ -211497,6 +223773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211512,12 +223790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24fbab" }, { @@ -211545,6 +223824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211560,12 +223841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "796567" }, { @@ -211593,6 +223875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211608,12 +223892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fedff" } ], @@ -211644,6 +223929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211664,12 +223951,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -211696,6 +223984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211711,12 +224001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7802f5" }, { @@ -211744,6 +224035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211759,12 +224052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0622bf" }, { @@ -211792,6 +224086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211807,12 +224103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "501342" }, { @@ -211840,6 +224137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211855,12 +224154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d58fbf" } ], @@ -211891,6 +224191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211906,12 +224208,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9138d3" }, { @@ -211939,6 +224242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -211957,9 +224262,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93479b", "States": { "2": { @@ -211987,6 +224292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212005,9 +224312,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -212035,6 +224342,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212053,9 +224362,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -212085,6 +224394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212109,12 +224420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -212141,6 +224453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212156,12 +224470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73d706" }, { @@ -212189,6 +224504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212204,12 +224521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb3517" }, { @@ -212237,6 +224555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212252,12 +224572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea9829" }, { @@ -212285,6 +224606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212300,12 +224623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "883de7" }, { @@ -212333,6 +224657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212348,12 +224674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "985d36" }, { @@ -212381,6 +224708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212396,12 +224725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "739921" }, { @@ -212429,6 +224759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212444,12 +224776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8a72c" }, { @@ -212477,6 +224810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212492,12 +224827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a7420" } ], @@ -212528,6 +224864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212546,9 +224884,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4e80d", "States": { "2": { @@ -212576,6 +224914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212594,9 +224934,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -212624,6 +224964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212642,9 +224984,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -212674,15 +225016,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b16a2e" }, { @@ -212710,6 +225054,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212728,9 +225074,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6eab2", "States": { "2": { @@ -212758,6 +225104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212776,9 +225124,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -212806,6 +225154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212824,9 +225174,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -212856,6 +225206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212871,12 +225223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd7dba" }, { @@ -212904,6 +225257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212951,12 +225306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -212983,6 +225339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -212998,12 +225356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84ce07" }, { @@ -213031,6 +225390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213046,12 +225407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5ce58" }, { @@ -213079,6 +225441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213094,12 +225458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7350e7" }, { @@ -213127,6 +225492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213142,12 +225509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebca5f" }, { @@ -213175,6 +225543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213190,12 +225560,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ffe35" }, { @@ -213223,6 +225594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213238,12 +225611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "606572" }, { @@ -213271,6 +225645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213286,12 +225662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5b611" }, { @@ -213319,6 +225696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213334,12 +225713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b251d0" }, { @@ -213367,6 +225747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213382,12 +225764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "821817" }, { @@ -213415,6 +225798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213430,12 +225815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c97c1" }, { @@ -213463,6 +225849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213478,12 +225866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77d92d" }, { @@ -213511,6 +225900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213526,12 +225917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d75271" }, { @@ -213559,6 +225951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213574,12 +225968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c79f95" }, { @@ -213607,6 +226002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213622,12 +226019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f9796" }, { @@ -213655,6 +226053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213670,12 +226070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c3d8e" }, { @@ -213703,6 +226104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213718,12 +226121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "94de2c" }, { @@ -213751,6 +226155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213766,12 +226172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3591fe" }, { @@ -213799,6 +226206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213814,12 +226223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb3353" }, { @@ -213847,6 +226257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213862,12 +226274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c4fc8" }, { @@ -213895,6 +226308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213910,12 +226325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "410d61" }, { @@ -213943,6 +226359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -213958,12 +226376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59e70b" }, { @@ -213991,6 +226410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214006,12 +226427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f95" }, { @@ -214039,6 +226461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214054,12 +226478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f4404" }, { @@ -214087,6 +226512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214102,12 +226529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a83148" }, { @@ -214135,6 +226563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214150,12 +226580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df3bd4" }, { @@ -214183,6 +226614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214198,12 +226631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b77ff" }, { @@ -214231,6 +226665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214246,12 +226682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6e67f" }, { @@ -214279,6 +226716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214294,12 +226733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c27200" }, { @@ -214327,6 +226767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214342,12 +226784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d840e" }, { @@ -214375,6 +226818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214390,12 +226835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1fe55" }, { @@ -214423,6 +226869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214438,12 +226886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f482fe" } ], @@ -214474,6 +226923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214492,12 +226943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -214524,6 +226976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214539,12 +226993,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d75d5c" }, { @@ -214572,6 +227027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214587,12 +227044,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66864c" } ], @@ -214623,6 +227081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214638,12 +227098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa8aeb" } ], @@ -214672,12 +227133,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 32.45269, - "posY": 1.43240237, - "posZ": -13.1239805, + "posX": 12.2508078, + "posY": 1.46838713, + "posZ": 13.4375, "rotX": 359.920135, - "rotY": 269.99762, - "rotZ": 0.01687735, + "rotY": 269.997559, + "rotZ": 0.01687724, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 @@ -214694,6 +227155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214722,9 +227185,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0243c5\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"09a94a\":{\"lock\":false,\"pos\":{\"x\":-23.6794,\"y\":1.6885,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":270.0031,\"z\":0.0169}},\"18b46f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"21b7c9\":{\"lock\":false,\"pos\":{\"x\":-20.2371,\"y\":1.6097,\"z\":-0.0598},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"349146\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6817,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0169}},\"45cd63\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0169}},\"49a255\":{\"lock\":false,\"pos\":{\"x\":-26.9767,\"y\":1.6191,\"z\":0.0458},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"4ebd97\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"588f16\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6987,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"5a7cdb\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4414},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"6c9a78\":{\"lock\":false,\"pos\":{\"x\":-33.5795,\"y\":1.6283,\"z\":-0.1135},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"6f22b2\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9976,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-29.1704,\"y\":1.6232,\"z\":3.6156},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.9201}},\"7e22c1\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"8262aa\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"8f68a9\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9976,\"z\":0.0168}},\"9427d8\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"954f96\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6864,\"z\":-0.03},\"rot\":{\"x\":359.9221,\"y\":269.9994,\"z\":0.0222}},\"9ed742\":{\"lock\":false,\"pos\":{\"x\":-19.078,\"y\":1.6093,\"z\":4.131},\"rot\":{\"x\":359.9316,\"y\":315.0001,\"z\":359.9554}},\"af6a85\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.9201}},\"be9f73\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7717,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":180.0168}},\"c7b7cc\":{\"lock\":false,\"pos\":{\"x\":-20.1562,\"y\":1.6084,\"z\":-4.0361},\"rot\":{\"x\":0.0447,\"y\":45.1401,\"z\":359.9317}},\"d0209c\":{\"lock\":false,\"pos\":{\"x\":-26.6943,\"y\":1.6209,\"z\":7.5062},\"rot\":{\"x\":359.9201,\"y\":270.036,\"z\":0.0168}},\"dca07f\":{\"lock\":false,\"pos\":{\"x\":-4.2365,\"y\":1.4067,\"z\":14.9013},\"rot\":{\"x\":359.9832,\"y\":0.0559,\"z\":359.9196}},\"e0f43f\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.92}},\"e20744\":{\"lock\":false,\"pos\":{\"x\":-25.1856,\"y\":1.8336,\"z\":-1.0486},\"rot\":{\"x\":359.9351,\"y\":270.0494,\"z\":0.0396}},\"eea1d3\":{\"lock\":false,\"pos\":{\"x\":-27.2076,\"y\":1.6889,\"z\":-7.7258},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -214751,6 +227214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214759,9 +227224,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -214788,6 +227253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214796,9 +227263,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -214825,6 +227292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214840,12 +227309,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2049d9" }, { @@ -214873,6 +227343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214888,12 +227360,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21141d" }, { @@ -214921,6 +227394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214936,12 +227411,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08ab92" }, { @@ -214969,6 +227445,8 @@ "Grid": false, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -214984,12 +227462,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "057e04" } ], @@ -215020,6 +227499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215028,9 +227509,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -215057,6 +227538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215072,12 +227555,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdbb7f" }, { @@ -215105,6 +227589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215120,12 +227606,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d57d70" }, { @@ -215153,6 +227640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215168,12 +227657,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55809d" }, { @@ -215201,6 +227691,8 @@ "Grid": false, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215216,12 +227708,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1256b" } ], @@ -215252,6 +227745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215260,9 +227755,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -215289,6 +227784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215304,12 +227801,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d35ef" }, { @@ -215337,6 +227835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215352,12 +227852,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "920ed7" }, { @@ -215385,6 +227886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215400,12 +227903,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f89508" }, { @@ -215433,6 +227937,8 @@ "Grid": false, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215448,12 +227954,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c72bdd" } ], @@ -215484,6 +227991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215492,9 +228001,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -215521,6 +228030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215536,12 +228047,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "427afe" }, { @@ -215569,6 +228081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215584,12 +228098,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ba462" }, { @@ -215617,6 +228132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215632,12 +228149,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7ea8" }, { @@ -215665,6 +228183,8 @@ "Grid": false, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215680,12 +228200,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2913a" } ], @@ -215716,6 +228237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215724,9 +228247,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -215753,6 +228276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215768,12 +228293,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45db8c" }, { @@ -215801,6 +228327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215816,12 +228344,13 @@ "NumWidth": 7, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3dee9f" }, { @@ -215849,6 +228378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215864,12 +228395,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecaa8c" }, { @@ -215897,6 +228429,8 @@ "Grid": false, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215912,12 +228446,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c216d" } ], @@ -215951,6 +228486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -215969,9 +228506,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -215998,6 +228535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216020,12 +228559,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -216052,6 +228592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216067,12 +228609,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2fcc1" }, { @@ -216100,6 +228643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216115,12 +228660,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8bc2e" }, { @@ -216148,6 +228694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216163,12 +228711,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b64c23" }, { @@ -216196,6 +228745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216211,12 +228762,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b4a81" }, { @@ -216244,6 +228796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216259,12 +228813,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22e3a0" }, { @@ -216292,6 +228847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216307,12 +228864,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4201fc" } ], @@ -216343,6 +228901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216364,12 +228924,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -216396,6 +228957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216411,12 +228974,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aaa915" }, { @@ -216444,6 +229008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216459,12 +229025,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec6386" }, { @@ -216492,6 +229059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216507,12 +229076,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc2b8" }, { @@ -216540,6 +229110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216555,12 +229127,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a7a35" }, { @@ -216588,6 +229161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216603,12 +229178,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f6e94" } ], @@ -216639,6 +229215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216657,12 +229235,13 @@ "NumWidth": 5, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -216689,6 +229268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216704,12 +229285,13 @@ "NumWidth": 5, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed439d" }, { @@ -216737,6 +229319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216752,12 +229336,13 @@ "NumWidth": 5, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45cd63" } ], @@ -216788,6 +229373,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216810,12 +229397,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -216842,6 +229430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216857,12 +229447,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91e9d8" }, { @@ -216890,6 +229481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216905,12 +229498,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02df12" }, { @@ -216938,6 +229532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -216953,12 +229549,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9edec6" }, { @@ -216986,6 +229583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217001,12 +229600,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -217034,6 +229634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217049,12 +229651,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -217082,6 +229685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217097,12 +229702,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" } ], @@ -217149,6 +229755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217195,12 +229803,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -217227,6 +229836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217242,12 +229853,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e324b" }, { @@ -217275,6 +229887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217290,12 +229904,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -217323,6 +229938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217338,12 +229955,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c49ee" }, { @@ -217371,6 +229989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217386,12 +230006,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8ae6e" }, { @@ -217419,6 +230040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217434,12 +230057,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81234f" }, { @@ -217467,6 +230091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217482,12 +230108,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "049dfb" }, { @@ -217515,6 +230142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217530,12 +230159,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "188c42" }, { @@ -217563,6 +230193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217578,12 +230210,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1828d9" }, { @@ -217611,6 +230244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217626,12 +230261,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -217659,6 +230295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217674,12 +230312,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -217707,6 +230346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217722,12 +230363,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -217755,6 +230397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217770,12 +230414,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -217803,6 +230448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217818,12 +230465,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -217851,6 +230499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217866,12 +230516,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -217899,6 +230550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217914,12 +230567,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -217947,6 +230601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -217962,12 +230618,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -217995,6 +230652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218010,12 +230669,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -218043,6 +230703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218058,12 +230720,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -218091,6 +230754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218106,12 +230771,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -218139,6 +230805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218154,12 +230822,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -218187,6 +230856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218202,12 +230873,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -218235,6 +230907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218250,12 +230924,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -218283,6 +230958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218298,12 +230975,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -218331,6 +231009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218346,12 +231026,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -218379,6 +231060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218394,12 +231077,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -218427,6 +231111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218442,12 +231128,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -218475,6 +231162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218490,12 +231179,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33a90c" }, { @@ -218523,6 +231213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218538,12 +231230,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -218571,6 +231264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218586,12 +231281,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -218619,6 +231315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218634,12 +231332,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "32dd4b" } ], @@ -218670,6 +231369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218689,12 +231390,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -218721,6 +231423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218736,12 +231440,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fd7c8" }, { @@ -218769,6 +231474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218784,12 +231491,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abef46" }, { @@ -218817,6 +231525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218832,12 +231542,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd91f8" } ], @@ -218868,6 +231579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218886,12 +231599,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -218918,6 +231632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218933,12 +231649,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "174d02" }, { @@ -218966,6 +231683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -218981,12 +231700,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7c51d" } ], @@ -219017,6 +231737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219032,12 +231754,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a7cdb" }, { @@ -219065,6 +231788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219080,12 +231805,13 @@ "NumWidth": 5, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f22b2" }, { @@ -219113,6 +231839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219131,9 +231859,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21b7c9", "States": { "2": { @@ -219161,6 +231889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219179,9 +231909,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -219209,6 +231939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219227,9 +231959,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -219259,6 +231991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219277,9 +232011,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ed742", "States": { "2": { @@ -219307,6 +232041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219325,9 +232061,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -219355,6 +232091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219373,9 +232111,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -219405,6 +232143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219423,9 +232163,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7b7cc", "States": { "2": { @@ -219453,6 +232193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219471,9 +232213,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -219501,6 +232243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219519,9 +232263,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -219551,6 +232295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219569,9 +232315,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8262aa", "States": { "2": { @@ -219599,6 +232345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219617,9 +232365,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -219647,6 +232395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219665,9 +232415,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -219697,6 +232447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219712,12 +232464,13 @@ "NumWidth": 5, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "954f96" }, { @@ -219745,6 +232498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219760,12 +232515,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e20744" }, { @@ -219793,6 +232549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219811,9 +232569,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49a255", "States": { "2": { @@ -219841,6 +232599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219859,9 +232619,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -219889,6 +232649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219907,9 +232669,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -219939,6 +232701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -219957,9 +232721,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f43f", "States": { "2": { @@ -219987,6 +232751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220005,9 +232771,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -220035,6 +232801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220053,9 +232821,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -220085,6 +232853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220100,12 +232870,13 @@ "NumWidth": 5, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09a94a" }, { @@ -220133,6 +232904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220151,9 +232924,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d0209c", "States": { "2": { @@ -220181,6 +232954,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220199,9 +232974,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -220229,6 +233004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220247,9 +233024,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -220279,6 +233056,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220297,9 +233076,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -220327,6 +233106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220345,9 +233126,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -220375,6 +233156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220393,9 +233176,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -220425,6 +233208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220440,12 +233225,13 @@ "NumWidth": 5, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45cd63" }, { @@ -220473,6 +233259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220488,12 +233276,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "588f16" }, { @@ -220521,6 +233310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220536,12 +233327,13 @@ "NumWidth": 5, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18b46f" }, { @@ -220569,6 +233361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220587,9 +233381,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c9a78", "States": { "2": { @@ -220617,6 +233411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220635,9 +233431,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -220665,6 +233461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220683,9 +233481,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -220715,6 +233513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220730,12 +233530,13 @@ "NumWidth": 5, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e22c1" }, { @@ -220763,6 +233564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220778,12 +233581,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea1d3" }, { @@ -220811,6 +233615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220826,12 +233632,13 @@ "NumWidth": 5, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ebd97" }, { @@ -220859,6 +233666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220877,9 +233686,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af6a85", "States": { "2": { @@ -220907,6 +233716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220925,9 +233736,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -220955,6 +233766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -220973,9 +233786,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -221005,6 +233818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221020,12 +233835,13 @@ "NumWidth": 5, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "349146" } ], @@ -221054,12 +233870,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 32.45269, - "posY": 1.43240237, - "posZ": -13.1239805, + "posX": 12.2508078, + "posY": 1.46327579, + "posZ": -3.92020321, "rotX": 359.920135, - "rotY": 269.994141, - "rotZ": 0.01688226, + "rotY": 269.99408, + "rotZ": 0.0168821085, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 @@ -221076,6 +233892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221104,9 +233922,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"194545\":{\"lock\":false,\"pos\":{\"x\":-27.2074,\"y\":1.6195,\"z\":0.3677},\"rot\":{\"x\":359.9201,\"y\":269.9948,\"z\":0.0169}},\"26cc97\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"2c2ae0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"31eed4\":{\"lock\":false,\"pos\":{\"x\":-19.8241,\"y\":1.608,\"z\":-3.9426},\"rot\":{\"x\":359.9554,\"y\":224.9997,\"z\":0.0684}},\"35cda1\":{\"lock\":false,\"pos\":{\"x\":-34.1459,\"y\":1.628,\"z\":-3.6537},\"rot\":{\"x\":359.9454,\"y\":330.0001,\"z\":359.9392}},\"4ea780\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"5079c9\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.777,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":180.0168}},\"576222\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"5adeb8\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}},\"66a92e\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.656,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9931,\"z\":359.92}},\"7d816e\":{\"lock\":false,\"pos\":{\"x\":-8.0687,\"y\":1.5653,\"z\":-10.918},\"rot\":{\"x\":5.338,\"y\":270.0222,\"z\":0.0176}},\"811a00\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"85c289\":{\"lock\":false,\"pos\":{\"x\":-20.2852,\"y\":1.6097,\"z\":-0.1974},\"rot\":{\"x\":359.9201,\"y\":269.9948,\"z\":0.0169}},\"886b98\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"9a38a2\":{\"lock\":false,\"pos\":{\"x\":-33.6608,\"y\":1.6285,\"z\":0.1003},\"rot\":{\"x\":359.9201,\"y\":269.9948,\"z\":0.0169}},\"9b0d7f\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"a14d0c\":{\"lock\":false,\"pos\":{\"x\":-3.9561,\"y\":1.6585,\"z\":-10.4436},\"rot\":{\"x\":359.9197,\"y\":270.0199,\"z\":180.0168}},\"a61d13\":{\"lock\":false,\"pos\":{\"x\":-33.7158,\"y\":1.6296,\"z\":3.6588},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"b4f166\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}},\"cff68d\":{\"lock\":false,\"pos\":{\"x\":1.697,\"y\":1.5583,\"z\":14.2784},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"d719b5\":{\"lock\":false,\"pos\":{\"x\":-11.0458,\"y\":1.679,\"z\":11.8922},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"e764b3\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"e9bc69\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"fec36a\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -221133,6 +233951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221151,9 +233971,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -221180,6 +234000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221195,12 +234017,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d0896c" }, { @@ -221228,6 +234051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221243,12 +234068,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" } ], @@ -221292,6 +234118,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221339,12 +234167,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -221371,6 +234200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221386,12 +234217,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -221419,6 +234251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221434,12 +234268,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcbe62" }, { @@ -221467,6 +234302,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221482,12 +234319,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -221515,6 +234353,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221530,12 +234370,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -221563,6 +234404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221578,12 +234421,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -221611,6 +234455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221626,12 +234472,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -221659,6 +234506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221674,12 +234523,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -221707,6 +234557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221722,12 +234574,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -221755,6 +234608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221770,12 +234625,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -221803,6 +234659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221818,12 +234676,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -221851,6 +234710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221866,12 +234727,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -221899,6 +234761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221914,12 +234778,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -221947,6 +234812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -221962,12 +234829,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -221995,6 +234863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222010,12 +234880,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -222043,6 +234914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222058,12 +234931,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -222091,6 +234965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222106,12 +234982,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -222139,6 +235016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222154,12 +235033,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -222187,6 +235067,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222202,12 +235084,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -222235,6 +235118,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222250,12 +235135,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9863b" }, { @@ -222283,6 +235169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222298,12 +235186,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37812f" }, { @@ -222331,6 +235220,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222346,12 +235237,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -222379,6 +235271,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222394,12 +235288,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -222427,6 +235322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222442,12 +235339,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -222475,6 +235373,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222490,12 +235390,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -222523,6 +235424,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222538,12 +235441,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -222571,6 +235475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222586,12 +235492,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9b09e" }, { @@ -222619,6 +235526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222634,12 +235543,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -222667,6 +235577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222682,12 +235594,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -222715,6 +235628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222730,12 +235645,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" }, { @@ -222763,6 +235679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222778,12 +235696,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df6492" }, { @@ -222811,6 +235730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222826,12 +235747,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cfb8b" } ], @@ -222862,6 +235784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222883,12 +235807,13 @@ "NumWidth": 2, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -222915,6 +235840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222930,12 +235857,13 @@ "NumWidth": 2, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "737883" }, { @@ -222963,6 +235891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -222978,12 +235908,13 @@ "NumWidth": 2, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49a39d" }, { @@ -223011,6 +235942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223026,12 +235959,13 @@ "NumWidth": 2, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c8c11" }, { @@ -223059,6 +235993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223074,12 +236010,13 @@ "NumWidth": 2, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ae371" }, { @@ -223107,6 +236044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223122,12 +236061,13 @@ "NumWidth": 2, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f02eb" } ], @@ -223158,6 +236098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223177,12 +236119,13 @@ "NumWidth": 2, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -223209,6 +236152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223224,12 +236169,13 @@ "NumWidth": 2, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f9bd6" }, { @@ -223257,6 +236203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223272,12 +236220,13 @@ "NumWidth": 2, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5914d2" }, { @@ -223305,6 +236254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223320,12 +236271,13 @@ "NumWidth": 2, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d65b39" } ], @@ -223356,6 +236308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223374,9 +236328,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d816e" }, { @@ -223404,6 +236358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223419,12 +236375,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a14d0c" }, { @@ -223452,6 +236409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223471,12 +236430,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -223503,6 +236463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223518,12 +236480,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9745f" }, { @@ -223551,6 +236514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223566,12 +236531,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abc27a" }, { @@ -223599,6 +236565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223614,12 +236582,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5246c6" } ], @@ -223650,6 +236619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223665,12 +236636,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26cc97" }, { @@ -223698,6 +236670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223716,9 +236690,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -223746,6 +236720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223764,9 +236740,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -223794,6 +236770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223812,9 +236790,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -223844,6 +236822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223859,12 +236839,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9bc69" }, { @@ -223892,6 +236873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223910,9 +236893,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85c289", "States": { "2": { @@ -223940,6 +236923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -223958,9 +236943,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -223988,6 +236973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224006,9 +236993,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -224038,6 +237025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224056,9 +237045,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31eed4", "States": { "2": { @@ -224086,6 +237075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224104,9 +237095,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -224134,6 +237125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224152,9 +237145,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -224184,6 +237177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224202,9 +237197,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c2ae0", "States": { "2": { @@ -224232,6 +237227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224250,9 +237247,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -224280,6 +237277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224298,9 +237297,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -224330,6 +237329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224345,12 +237346,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b0d7f" }, { @@ -224378,6 +237380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224393,12 +237397,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ea780" }, { @@ -224426,6 +237431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224444,9 +237451,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "194545", "States": { "2": { @@ -224474,6 +237481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224492,9 +237501,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -224522,6 +237531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224540,9 +237551,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -224572,6 +237583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224587,12 +237600,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "886b98" }, { @@ -224620,6 +237634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224638,9 +237654,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4f166", "States": { "2": { @@ -224668,6 +237684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224686,9 +237704,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -224716,6 +237734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224734,9 +237754,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -224766,6 +237786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224781,12 +237803,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e764b3" }, { @@ -224814,6 +237837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224832,9 +237857,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5adeb8", "States": { "2": { @@ -224862,6 +237887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224880,9 +237907,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -224910,6 +237937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224928,9 +237957,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -224960,6 +237989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -224975,12 +238006,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "576222" }, { @@ -225008,6 +238040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225026,9 +238060,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35cda1", "States": { "2": { @@ -225056,6 +238090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225074,9 +238110,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -225104,6 +238140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225122,9 +238160,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -225154,6 +238192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225172,9 +238212,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a38a2", "States": { "2": { @@ -225202,6 +238242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225220,9 +238262,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -225250,6 +238292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225268,9 +238312,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -225300,6 +238344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225318,9 +238364,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a61d13", "States": { "2": { @@ -225348,6 +238394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225366,9 +238414,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -225396,6 +238444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225414,9 +238464,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -225446,6 +238496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225461,12 +238513,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fec36a" } ], @@ -225495,12 +238548,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 32.45269, - "posY": 1.43240237, - "posZ": -13.1239805, + "posX": 12.2503042, + "posY": 1.46581149, + "posZ": 4.68770027, "rotX": 359.920135, "rotY": 270.004669, - "rotZ": 0.0168668516, + "rotZ": 0.01686751, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 @@ -225517,6 +238570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225545,9 +238600,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"02a39c\":{\"lock\":false,\"pos\":{\"x\":-26.6698,\"y\":1.6188,\"z\":0.2297},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"031d10\":{\"lock\":false,\"pos\":{\"x\":-10.4643,\"y\":1.6777,\"z\":10.3214},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"0dd529\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9915,\"z\":0.0799}},\"10bac1\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"2c6263\":{\"lock\":false,\"pos\":{\"x\":1.6959,\"y\":1.5583,\"z\":14.2757},\"rot\":{\"x\":359.9551,\"y\":224.9986,\"z\":0.0687}},\"35feb6\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.793,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0004,\"z\":180.0168}},\"3a8ef9\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"3d7614\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9915,\"z\":0.0799}},\"460803\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"464a07\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"4f3b10\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0486},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"5044b6\":{\"lock\":false,\"pos\":{\"x\":1.6668,\"y\":1.6475,\"z\":-4.7705},\"rot\":{\"x\":359.9197,\"y\":269.9893,\"z\":0.0169}},\"5c8249\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0018,\"z\":0.0169}},\"651725\":{\"lock\":false,\"pos\":{\"x\":-27.1632,\"y\":1.6172,\"z\":-7.4224},\"rot\":{\"x\":0.0799,\"y\":90.1305,\"z\":359.9833}},\"664f8a\":{\"lock\":false,\"pos\":{\"x\":-20.4573,\"y\":1.6089,\"z\":-3.7515},\"rot\":{\"x\":0.0446,\"y\":45,\"z\":359.9316}},\"697b33\":{\"lock\":false,\"pos\":{\"x\":-27.3832,\"y\":1.6207,\"z\":3.5496},\"rot\":{\"x\":359.9747,\"y\":209.9999,\"z\":0.0776}},\"6fe23b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"7037e8\":{\"lock\":false,\"pos\":{\"x\":-3.9561,\"y\":1.6556,\"z\":-10.4415},\"rot\":{\"x\":359.9197,\"y\":269.997,\"z\":0.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9915,\"z\":0.0799}},\"821b75\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"88d710\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0015,\"z\":0.0168}},\"b20dd5\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"bf761b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9915,\"z\":0.0799}},\"f3d826\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9914,\"z\":0.0799}},\"fee8a2\":{\"lock\":false,\"pos\":{\"x\":-20.8968,\"y\":1.6128,\"z\":7.2255},\"rot\":{\"x\":359.9201,\"y\":270.0019,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -225574,6 +238629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225592,9 +238649,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02a39c", "States": { "2": { @@ -225622,6 +238679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225640,9 +238699,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -225670,6 +238729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225688,9 +238749,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -225720,6 +238781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225738,12 +238801,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -225770,6 +238834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225785,12 +238851,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1e48e" }, { @@ -225818,6 +238885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225833,12 +238902,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec7ab1" } ], @@ -225869,6 +238939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225887,9 +238959,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0dd529", "States": { "2": { @@ -225917,6 +238989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225935,9 +239009,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -225965,6 +239039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -225983,9 +239059,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -226015,6 +239091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226030,12 +239108,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "10bac1" }, { @@ -226063,6 +239142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226081,9 +239162,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -226110,6 +239191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226125,12 +239208,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1bf440" }, { @@ -226158,6 +239242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226173,12 +239259,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "654ef3" }, { @@ -226206,6 +239293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226221,12 +239310,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9de6cc" }, { @@ -226254,6 +239344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226269,12 +239361,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac534f" }, { @@ -226302,6 +239395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226317,12 +239412,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "897e12" } ], @@ -226366,6 +239462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226416,7 +239514,8 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2708": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1010437351815789197/BF596A1B4F040FEE501B063BE162C49E54D6B585/", @@ -226424,12 +239523,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -226456,6 +239556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226471,12 +239573,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -226504,6 +239607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226519,12 +239624,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af0db8" }, { @@ -226552,6 +239658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226567,12 +239675,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -226600,6 +239709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226615,12 +239726,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -226648,6 +239760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226663,12 +239777,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -226696,6 +239811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226711,12 +239828,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bcca03" }, { @@ -226744,6 +239862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226759,12 +239879,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -226792,6 +239913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226807,12 +239930,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a0980" }, { @@ -226840,6 +239964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226855,12 +239981,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -226888,6 +240015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226903,12 +240032,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -226936,6 +240066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226951,12 +240083,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -226984,6 +240117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -226999,12 +240134,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227032,6 +240168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227047,12 +240185,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3963bd" }, { @@ -227080,6 +240219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227095,12 +240236,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227128,6 +240270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227143,12 +240287,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227176,6 +240321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227191,12 +240338,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227224,6 +240372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227239,12 +240389,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227272,6 +240423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227287,12 +240440,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227320,6 +240474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227335,12 +240491,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b3fd5" }, { @@ -227368,6 +240525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227383,12 +240542,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227416,6 +240576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227431,12 +240593,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227464,6 +240627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227479,12 +240644,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e13c98" }, { @@ -227512,6 +240678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227527,12 +240695,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227560,6 +240729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227575,12 +240746,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227608,6 +240780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227623,12 +240797,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227656,6 +240831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227671,12 +240848,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227704,6 +240882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227719,12 +240899,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f69b7" }, { @@ -227752,6 +240933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227767,12 +240950,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227800,6 +240984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227815,12 +241001,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227848,6 +241035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227863,12 +241052,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227896,6 +241086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227911,12 +241103,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227944,6 +241137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -227959,12 +241154,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -227992,6 +241188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228007,12 +241205,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" }, { @@ -228040,6 +241239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228055,12 +241256,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea78d" } ], @@ -228091,6 +241293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228106,12 +241310,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a8ef9" }, { @@ -228139,6 +241344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228157,9 +241364,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d7614", "States": { "2": { @@ -228187,6 +241394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228205,9 +241414,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -228235,6 +241444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228253,9 +241464,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -228285,6 +241496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228300,12 +241513,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "460803" }, { @@ -228333,6 +241547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228348,12 +241564,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "464a07" }, { @@ -228381,6 +241598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228401,12 +241620,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -228433,6 +241653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228448,12 +241670,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b99703" }, { @@ -228481,6 +241704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228496,12 +241721,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ddc847" }, { @@ -228529,6 +241755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228544,12 +241772,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0270f3" }, { @@ -228577,6 +241806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228592,12 +241823,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77d135" } ], @@ -228628,6 +241860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228648,12 +241882,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -228680,6 +241915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228695,12 +241932,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4f2fb" }, { @@ -228728,6 +241966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228743,12 +241983,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ccfc44" }, { @@ -228776,6 +242017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228791,12 +242034,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ea534" }, { @@ -228824,6 +242068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228839,12 +242085,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e1c46" } ], @@ -228875,6 +242122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228890,12 +242139,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c8249" }, { @@ -228923,6 +242173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228941,9 +242193,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "651725", "States": { "2": { @@ -228971,6 +242223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -228989,9 +242243,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -229019,6 +242273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229037,9 +242293,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -229069,6 +242325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229087,9 +242345,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "664f8a", "States": { "2": { @@ -229117,6 +242375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229135,9 +242395,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -229165,6 +242425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229183,9 +242445,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -229215,6 +242477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229233,9 +242497,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "697b33", "States": { "2": { @@ -229263,6 +242527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229281,9 +242547,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -229311,6 +242577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229329,9 +242597,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -229361,6 +242629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229376,12 +242646,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fe23b" }, { @@ -229409,6 +242680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229424,12 +242697,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7037e8" }, { @@ -229457,6 +242731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229475,9 +242751,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -229505,6 +242781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229523,9 +242801,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -229553,6 +242831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229571,9 +242851,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -229603,6 +242883,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229618,12 +242900,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "821b75" }, { @@ -229651,6 +242934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229671,12 +242956,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -229703,6 +242989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229718,12 +243006,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "859cd9" }, { @@ -229751,6 +243040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229766,12 +243057,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a18612" }, { @@ -229799,6 +243091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229814,12 +243108,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6a565" }, { @@ -229847,6 +243142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229862,12 +243159,13 @@ "NumWidth": 3, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e9288" } ], @@ -229898,6 +243196,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229913,12 +243213,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b20dd5" }, { @@ -229946,6 +243247,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -229964,9 +243267,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf761b", "States": { "2": { @@ -229994,6 +243297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230012,9 +243317,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -230042,6 +243347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230060,9 +243367,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -230092,6 +243399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230110,9 +243419,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3d826", "States": { "2": { @@ -230140,6 +243449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230158,9 +243469,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -230188,6 +243499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230206,9 +243519,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -230238,6 +243551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230256,9 +243571,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fee8a2", "States": { "2": { @@ -230286,6 +243601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230304,9 +243621,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -230334,6 +243651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230352,9 +243671,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -230385,12 +243704,12 @@ { "Name": "Custom_Tile", "Transform": { - "posX": 32.45269, - "posY": 1.43240237, - "posZ": -13.1239805, + "posX": -4.5533, + "posY": 1.58349049, + "posZ": -14.8002062, "rotX": 359.919739, "rotY": 269.999969, - "rotZ": 0.0168380085, + "rotZ": 0.0168380048, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 @@ -230407,6 +243726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230425,20 +243746,20 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Bread and Circuses'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "82e1ed" }, { "Name": "Bag", "Transform": { - "posX": 32.45269, - "posY": 1.43240237, - "posZ": -13.1239805, + "posX": 12.2505007, + "posY": 1.27312374, + "posZ": -21.3052025, "rotX": 359.9554, - "rotY": 225.002579, - "rotZ": 0.06846707, + "rotY": 225.0025, + "rotZ": 0.06847235, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 @@ -230455,6 +243776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230463,9 +243786,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_PDF", @@ -230492,6 +243815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": true, @@ -230504,9 +243829,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "957365" } ], @@ -230560,6 +243885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230578,9 +243905,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"13c965\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7504,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":180.0168}},\"1aa87a\":{\"lock\":false,\"pos\":{\"x\":-30.2245,\"y\":1.704,\"z\":7.5705},\"rot\":{\"x\":359.9201,\"y\":269.9915,\"z\":180.0169}},\"1c6049\":{\"lock\":false,\"pos\":{\"x\":-2.7315,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9742,\"z\":0.0169}},\"1e99b2\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9852,\"z\":0.0169}},\"3296c9\":{\"lock\":false,\"pos\":{\"x\":-2.689,\"y\":1.6535,\"z\":-5.0428},\"rot\":{\"x\":359.9197,\"y\":270.0282,\"z\":0.0168}},\"4e82c5\":{\"lock\":false,\"pos\":{\"x\":-36.7735,\"y\":1.7131,\"z\":7.5705},\"rot\":{\"x\":359.9201,\"y\":269.993,\"z\":180.0169}},\"9b0cf5\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9857,\"z\":180.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"ab12bb\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9852,\"z\":0.0169}},\"bdd422\":{\"lock\":false,\"pos\":{\"x\":-9.2986,\"y\":1.667,\"z\":0.0118},\"rot\":{\"x\":359.9202,\"y\":269.9846,\"z\":0.017}},\"c5008a\":{\"lock\":false,\"pos\":{\"x\":-3.5702,\"y\":1.5821,\"z\":-14.9068},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":0.0168}},\"fadb67\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6948,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -230607,6 +243934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230625,9 +243954,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -230654,6 +243983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230669,12 +244000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68a1f8" }, { @@ -230702,6 +244034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230717,12 +244051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dddb9" } ], @@ -230766,6 +244101,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230808,12 +244145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -230840,6 +244178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230847,9 +244187,9 @@ "Hands": true, "CardID": 154001, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -230878,6 +244218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230885,9 +244227,9 @@ "Hands": true, "CardID": 154002, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -230916,6 +244258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230923,9 +244267,9 @@ "Hands": true, "CardID": 154003, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -230954,6 +244298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230961,9 +244307,9 @@ "Hands": true, "CardID": 154004, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -230992,6 +244338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -230999,9 +244347,9 @@ "Hands": true, "CardID": 154005, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231030,6 +244378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231037,9 +244387,9 @@ "Hands": true, "CardID": 154006, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231068,6 +244418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231075,9 +244427,9 @@ "Hands": true, "CardID": 154007, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231106,6 +244458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231113,9 +244467,9 @@ "Hands": true, "CardID": 154008, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231144,6 +244498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231151,9 +244507,9 @@ "Hands": true, "CardID": 154009, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231182,6 +244538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231189,9 +244547,9 @@ "Hands": true, "CardID": 154010, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231220,6 +244578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231227,9 +244587,9 @@ "Hands": true, "CardID": 154011, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231258,6 +244618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231265,9 +244627,9 @@ "Hands": true, "CardID": 154012, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231296,6 +244658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231303,9 +244667,9 @@ "Hands": true, "CardID": 154013, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231334,6 +244698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231341,9 +244707,9 @@ "Hands": true, "CardID": 154014, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231372,6 +244738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231379,9 +244747,9 @@ "Hands": true, "CardID": 154015, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231410,6 +244778,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231417,9 +244787,9 @@ "Hands": true, "CardID": 154016, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231448,6 +244818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231455,9 +244827,9 @@ "Hands": true, "CardID": 154017, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231486,6 +244858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231493,9 +244867,9 @@ "Hands": true, "CardID": 154018, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231524,6 +244898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231531,9 +244907,9 @@ "Hands": true, "CardID": 154019, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231562,6 +244938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231569,9 +244947,9 @@ "Hands": true, "CardID": 154020, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231600,6 +244978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231607,9 +244987,9 @@ "Hands": true, "CardID": 154021, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231638,6 +245018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231645,9 +245027,9 @@ "Hands": true, "CardID": 154022, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231676,6 +245058,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231683,9 +245067,9 @@ "Hands": true, "CardID": 154023, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231714,6 +245098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231721,9 +245107,9 @@ "Hands": true, "CardID": 154024, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231752,6 +245138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231759,9 +245147,9 @@ "Hands": true, "CardID": 154025, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" }, @@ -231790,6 +245178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231797,9 +245187,9 @@ "Hands": true, "CardID": 154026, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "b5fe2f" } @@ -231831,6 +245221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231851,12 +245243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -231883,6 +245276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231897,12 +245292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d7342" }, { @@ -231930,6 +245326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231944,12 +245342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1c0b1" }, { @@ -231977,6 +245376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -231991,12 +245392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d7342" }, { @@ -232024,6 +245426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232038,12 +245442,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d7342" } ], @@ -232074,6 +245479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232094,12 +245501,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -232126,6 +245534,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232140,12 +245550,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d7342" }, { @@ -232173,6 +245584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232187,12 +245600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f8143" }, { @@ -232220,6 +245634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232234,12 +245650,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5fd3c" }, { @@ -232267,6 +245684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232281,12 +245700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d7342" } ], @@ -232317,6 +245737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232332,12 +245754,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e99b2" }, { @@ -232365,6 +245788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232383,9 +245808,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Happys Funhouse'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5008a" }, { @@ -232413,6 +245838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232435,12 +245862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -232467,6 +245895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232481,12 +245911,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfbd0c" }, { @@ -232514,6 +245945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232528,12 +245961,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "323e17" }, { @@ -232561,6 +245995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232575,12 +246011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e6b74" }, { @@ -232608,6 +246045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232622,12 +246061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "657352" }, { @@ -232655,6 +246095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232670,12 +246112,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43d78e" }, { @@ -232703,6 +246146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232718,12 +246163,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98055d" } ], @@ -232754,6 +246200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232769,12 +246217,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b0cf5" }, { @@ -232802,6 +246251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232822,12 +246273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -232854,6 +246306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232868,12 +246322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "194f89" }, { @@ -232901,6 +246356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232915,12 +246372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc0f85" }, { @@ -232948,6 +246406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -232962,12 +246422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "551772" }, { @@ -232995,6 +246456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233009,12 +246472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92a944" } ], @@ -233045,6 +246509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233065,12 +246531,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -233097,6 +246564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233112,12 +246581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2cab54" }, { @@ -233145,6 +246615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233160,12 +246632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c42cf4" }, { @@ -233193,6 +246666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233208,12 +246683,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67f858" }, { @@ -233241,6 +246717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233256,12 +246734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1332c7" } ], @@ -233292,6 +246771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233312,12 +246793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -233344,6 +246826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233359,12 +246843,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b161b" }, { @@ -233392,6 +246877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233407,12 +246894,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd8a48" }, { @@ -233440,6 +246928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233455,12 +246945,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf7942" }, { @@ -233488,6 +246979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233503,12 +246996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2612cd" } ], @@ -233539,6 +247033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233554,12 +247050,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab12bb" } ], @@ -233610,6 +247107,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233628,9 +247127,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"03fc1c\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9996,\"z\":0.0168}},\"109907\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9846,\"z\":180.0169}},\"245765\":{\"lock\":false,\"pos\":{\"x\":-11.097,\"y\":1.6708,\"z\":13.7077},\"rot\":{\"x\":359.9201,\"y\":269.9857,\"z\":0.0169}},\"2fe933\":{\"lock\":false,\"pos\":{\"x\":-3.9273,\"y\":1.7877,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.986,\"z\":180.0168}},\"37c889\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6585,\"z\":-10.4409},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"634aa3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9964,\"z\":180.0169}},\"65aae9\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9969,\"z\":180.0169}},\"884951\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.0169}},\"893c58\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6982,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9956,\"z\":180.0169}},\"9cd1ad\":{\"lock\":false,\"pos\":{\"x\":-4.0559,\"y\":1.5827,\"z\":-15.1513},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"a96e74\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.681,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9844,\"z\":180.0169}},\"b57f89\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6368,\"z\":14.2789},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":0.0687}},\"bfeb71\":{\"lock\":false,\"pos\":{\"x\":-9.6538,\"y\":1.6654,\"z\":-0.6313},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"c11ba5\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.997,\"z\":0.0168}},\"c35463\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.7004,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9971,\"z\":180.0169}},\"c37bc0\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6879,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"e0e56d\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6993,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9972,\"z\":180.0169}},\"e9ae84\":{\"lock\":false,\"pos\":{\"x\":-4.2177,\"y\":1.6697,\"z\":14.5874},\"rot\":{\"x\":359.9197,\"y\":269.9857,\"z\":180.0168}},\"efba6c\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -233657,6 +247156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233677,12 +247178,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -233709,6 +247211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233723,12 +247227,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b0c1a" }, { @@ -233756,6 +247261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233770,12 +247277,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d770f3" }, { @@ -233803,6 +247311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233817,12 +247327,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2dff06" }, { @@ -233850,6 +247361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233864,12 +247377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4499d8" } ], @@ -233900,6 +247414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233924,12 +247440,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -233956,6 +247473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -233970,12 +247489,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1159bc" }, { @@ -234003,6 +247523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234017,12 +247539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "746eda" }, { @@ -234050,6 +247573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234064,12 +247589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8faa32" }, { @@ -234097,6 +247623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234111,12 +247639,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70a1ff" }, { @@ -234144,6 +247673,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234158,12 +247689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae7612" }, { @@ -234191,6 +247723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234205,12 +247739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47dcf8" }, { @@ -234238,6 +247773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234252,12 +247789,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c8143" }, { @@ -234285,6 +247823,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234299,12 +247839,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "659144" } ], @@ -234335,6 +247876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234384,12 +247927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -234416,6 +247960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234430,12 +247976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec61c7" }, { @@ -234463,6 +248010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234477,12 +248026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e2eb3" }, { @@ -234510,6 +248060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234524,12 +248076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70ff7" }, { @@ -234557,6 +248110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234571,12 +248126,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76f270" }, { @@ -234604,6 +248160,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234618,12 +248176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c94814" }, { @@ -234651,6 +248210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234665,12 +248226,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3d223" }, { @@ -234698,6 +248260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234712,12 +248276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af34b1" }, { @@ -234745,6 +248310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234759,12 +248326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a97b4" }, { @@ -234792,6 +248360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234806,12 +248376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3bd45" }, { @@ -234839,6 +248410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234853,12 +248426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "391dca" }, { @@ -234886,6 +248460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234900,12 +248476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf31ef" }, { @@ -234933,6 +248510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234947,12 +248526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a629bc" }, { @@ -234980,6 +248560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -234994,12 +248576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68771f" }, { @@ -235027,6 +248610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235041,12 +248626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26757d" }, { @@ -235074,6 +248660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235088,12 +248676,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9133b1" }, { @@ -235121,6 +248710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235135,12 +248726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42533a" }, { @@ -235168,6 +248760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235182,12 +248776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c06704" }, { @@ -235215,6 +248810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235229,12 +248826,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "deca8b" }, { @@ -235262,6 +248860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235276,12 +248876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d1f73" }, { @@ -235309,6 +248910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235323,12 +248926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5516bd" }, { @@ -235356,6 +248960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235370,12 +248976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc2ebf" }, { @@ -235403,6 +249010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235417,12 +249026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5571e" }, { @@ -235450,6 +249060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235464,12 +249076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e646d" }, { @@ -235497,6 +249110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235511,12 +249126,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a5a1e" }, { @@ -235544,6 +249160,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235558,12 +249176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36ea7" }, { @@ -235591,6 +249210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235605,12 +249226,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "062405" }, { @@ -235638,6 +249260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235652,12 +249276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3604d9" }, { @@ -235685,6 +249310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235699,12 +249326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df4fea" }, { @@ -235732,6 +249360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235746,12 +249376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4872de" }, { @@ -235779,6 +249410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235793,12 +249426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c21c7b" }, { @@ -235826,6 +249460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235840,12 +249476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be7f6b" }, { @@ -235873,6 +249510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235887,12 +249526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7849ff" }, { @@ -235920,6 +249560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235934,12 +249576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ece8b" } ], @@ -235970,6 +249613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -235990,12 +249635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -236022,6 +249668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236036,12 +249684,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc794a" }, { @@ -236069,6 +249718,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236083,12 +249734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5cc66" }, { @@ -236116,6 +249768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236130,12 +249784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1daed6" }, { @@ -236163,6 +249818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236177,12 +249834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79f7c6" } ], @@ -236213,6 +249871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236233,12 +249893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -236265,6 +249926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236279,12 +249942,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de6597" }, { @@ -236312,6 +249976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236326,12 +249992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "52d56f" }, { @@ -236359,6 +250026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236373,12 +250042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d80ff" }, { @@ -236406,6 +250076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236420,12 +250092,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43c1fc" } ], @@ -236456,6 +250129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236476,12 +250151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -236508,6 +250184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236522,12 +250200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e06d2e" }, { @@ -236555,6 +250234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236569,12 +250250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "573b03" }, { @@ -236602,6 +250284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236616,12 +250300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7161e8" }, { @@ -236649,6 +250334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236664,12 +250351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ead88" } ], @@ -236700,6 +250388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236715,12 +250405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37c889" }, { @@ -236748,6 +250439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236766,9 +250459,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cd1ad" }, { @@ -236796,6 +250489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236811,12 +250506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "109907" }, { @@ -236844,6 +250540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236859,12 +250557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a96e74" }, { @@ -236892,6 +250591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236907,12 +250608,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65aae9" }, { @@ -236940,6 +250642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -236955,12 +250659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "884951" }, { @@ -236988,6 +250693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237003,12 +250710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "634aa3" }, { @@ -237036,6 +250744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237051,12 +250761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c37bc0" }, { @@ -237084,6 +250795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237099,12 +250812,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c35463" }, { @@ -237132,6 +250846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237147,12 +250863,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0e56d" }, { @@ -237180,6 +250897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237195,12 +250914,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "893c58" }, { @@ -237228,6 +250948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237243,12 +250965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "efba6c" }, { @@ -237276,6 +250999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237297,12 +251022,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -237329,6 +251055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237344,12 +251072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "835479" }, { @@ -237377,6 +251106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237392,12 +251123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac3584" }, { @@ -237425,6 +251157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237440,12 +251174,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcfb32" }, { @@ -237473,6 +251208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237488,12 +251225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "929838" }, { @@ -237521,6 +251259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237536,12 +251276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0409b6" } ], @@ -237595,6 +251336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237613,9 +251356,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"1e3988\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0014,\"z\":180.0169}},\"259b7b\":{\"lock\":false,\"pos\":{\"x\":-20.746,\"y\":1.685,\"z\":-0.0446},\"rot\":{\"x\":359.9201,\"y\":270.0016,\"z\":180.0169}},\"27bf6a\":{\"lock\":false,\"pos\":{\"x\":-10.5675,\"y\":1.6537,\"z\":13.5759},\"rot\":{\"x\":359.9201,\"y\":270.0211,\"z\":0.0168}},\"28272f\":{\"lock\":false,\"pos\":{\"x\":-27.0195,\"y\":1.6235,\"z\":14.5832},\"rot\":{\"x\":359.9201,\"y\":270.0063,\"z\":0.0169}},\"299ea1\":{\"lock\":false,\"pos\":{\"x\":-30.223,\"y\":1.6982,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.024,\"z\":180.0168}},\"2c792a\":{\"lock\":false,\"pos\":{\"x\":-34.0171,\"y\":1.6278,\"z\":-3.8093},\"rot\":{\"x\":0.0684,\"y\":134.9883,\"z\":0.0445}},\"3d2a1a\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7504,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"3eef2e\":{\"lock\":false,\"pos\":{\"x\":-9.6732,\"y\":1.6648,\"z\":0.0646},\"rot\":{\"x\":359.9201,\"y\":269.9858,\"z\":0.0169}},\"447fd2\":{\"lock\":false,\"pos\":{\"x\":-34.1668,\"y\":1.6303,\"z\":3.8209},\"rot\":{\"x\":0.0253,\"y\":29.9808,\"z\":359.9224}},\"4591d4\":{\"lock\":false,\"pos\":{\"x\":-20.7985,\"y\":1.615,\"z\":15.1153},\"rot\":{\"x\":359.9201,\"y\":270.0109,\"z\":0.0169}},\"4b81f6\":{\"lock\":false,\"pos\":{\"x\":-3.8815,\"y\":1.5826,\"z\":-14.612},\"rot\":{\"x\":359.9197,\"y\":270.0021,\"z\":0.0168}},\"50ffd3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6902,\"z\":3.8601},\"rot\":{\"x\":359.9201,\"y\":270.0026,\"z\":180.0169}},\"68ba2e\":{\"lock\":false,\"pos\":{\"x\":-26.8859,\"y\":1.6172,\"z\":-6.0034},\"rot\":{\"x\":359.9554,\"y\":224.9895,\"z\":0.0684}},\"6bc393\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.7027,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.0014,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.4411,\"y\":1.6281,\"z\":-0.1151},\"rot\":{\"x\":359.9201,\"y\":270.0092,\"z\":0.0169}},\"7b9e37\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"7bdc6b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6879,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":270.0012,\"z\":180.0169}},\"7d6343\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9982,\"z\":0.0169}},\"8ce4d8\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9982,\"z\":0.0803}},\"9e71b4\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4402},\"rot\":{\"x\":359.9197,\"y\":269.9982,\"z\":0.0168}},\"a19bdb\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.627,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":180.0077,\"z\":0.0799}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.697,\"y\":1.5583,\"z\":14.2784},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"b5096d\":{\"lock\":false,\"pos\":{\"x\":-13.5542,\"y\":1.6749,\"z\":-0.1164},\"rot\":{\"x\":359.9201,\"y\":270.0067,\"z\":180.0168}},\"be3ac9\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.7073,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9733,\"z\":180.0169}},\"c2da92\":{\"lock\":false,\"pos\":{\"x\":-20.9563,\"y\":1.61,\"z\":-2.6211},\"rot\":{\"x\":0.0253,\"y\":29.9999,\"z\":359.9224}},\"c41b7b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9757,\"z\":359.9201}},\"ce35ae\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0006,\"z\":0.0803}},\"d0c475\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6844,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.0072,\"z\":180.0168}},\"d7fc4c\":{\"lock\":false,\"pos\":{\"x\":-30.2198,\"y\":1.7004,\"z\":7.5731},\"rot\":{\"x\":359.9201,\"y\":270.0274,\"z\":180.0168}},\"da1f25\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6054,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0272,\"z\":0.0169}},\"daa95d\":{\"lock\":false,\"pos\":{\"x\":-27.1008,\"y\":1.6199,\"z\":2.1469},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"db49f3\":{\"lock\":false,\"pos\":{\"x\":-21.1809,\"y\":1.6117,\"z\":2.132},\"rot\":{\"x\":0.0684,\"y\":134.9832,\"z\":0.0445}},\"f0d16a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6935,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.011,\"z\":180.0168}},\"f108e3\":{\"lock\":false,\"pos\":{\"x\":-27.3214,\"y\":1.6189,\"z\":-2.4573},\"rot\":{\"x\":359.9316,\"y\":315.0002,\"z\":359.9554}},\"f591c7\":{\"lock\":false,\"pos\":{\"x\":-26.9568,\"y\":1.6207,\"z\":5.6374},\"rot\":{\"x\":0.0684,\"y\":134.9882,\"z\":0.0445}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -237642,6 +251385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237660,9 +251405,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -237689,6 +251434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237709,12 +251456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -237741,6 +251489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237756,12 +251506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3761c" }, { @@ -237789,6 +251540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237804,12 +251557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f2df9" }, { @@ -237837,6 +251591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237852,12 +251608,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93d597" }, { @@ -237885,6 +251642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237900,12 +251659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e15764" } ], @@ -237936,6 +251696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -237951,12 +251713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "251712" }, { @@ -237984,6 +251747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238003,12 +251768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -238035,6 +251801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238050,12 +251818,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b9f35" }, { @@ -238083,6 +251852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238098,12 +251869,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e0a6a" }, { @@ -238131,6 +251903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238146,12 +251920,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "52da6a" } ], @@ -238182,6 +251957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238197,12 +251974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e79d88" }, { @@ -238230,6 +252008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238245,12 +252025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c28797" }, { @@ -238278,6 +252059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238293,12 +252076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6a643" } ], @@ -238342,6 +252126,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238384,7 +252170,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2318": { "FaceURL": "https://i.imgur.com/jJZbh5y.jpg", @@ -238392,12 +252179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -238424,6 +252212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238439,12 +252229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -238472,6 +252263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238487,12 +252280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -238520,6 +252314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238535,12 +252331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -238568,6 +252365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238583,12 +252382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -238616,6 +252416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238631,12 +252433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -238664,6 +252467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238679,12 +252484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -238712,6 +252518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238727,12 +252535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -238760,6 +252569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238775,12 +252586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -238808,6 +252620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238823,12 +252637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -238856,6 +252671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238871,12 +252688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -238904,6 +252722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238919,12 +252739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -238952,6 +252773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -238967,12 +252790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -239000,6 +252824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239015,12 +252841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" }, { @@ -239048,6 +252875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239063,12 +252892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" }, { @@ -239096,6 +252926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239111,12 +252943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -239144,6 +252977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239159,12 +252994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -239192,6 +253028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239207,12 +253045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f0096" }, { @@ -239240,6 +253079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239255,12 +253096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9e1f9" }, { @@ -239288,6 +253130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239303,12 +253147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4be06" }, { @@ -239336,6 +253181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239351,12 +253198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a6e9c" }, { @@ -239384,6 +253232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239399,12 +253249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c17c39" }, { @@ -239432,6 +253283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239447,12 +253300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b79e1d" }, { @@ -239480,6 +253334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239495,12 +253351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6062c3" }, { @@ -239528,6 +253385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239543,12 +253402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63b6f1" }, { @@ -239576,6 +253436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239591,12 +253453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f92f59" }, { @@ -239624,6 +253487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239639,12 +253504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55d7ba" } ], @@ -239675,6 +253541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239695,12 +253563,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -239727,6 +253596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239742,12 +253613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38e8b0" }, { @@ -239775,6 +253647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239790,12 +253664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e68b7" }, { @@ -239823,6 +253698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239838,12 +253715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffa494" }, { @@ -239871,6 +253749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239886,12 +253766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38e8b0" } ], @@ -239922,6 +253803,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239942,12 +253825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -239974,6 +253858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -239989,12 +253875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38e8b0" }, { @@ -240022,6 +253909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240037,12 +253926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "52d30e" }, { @@ -240070,6 +253960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240085,12 +253977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38e8b0" }, { @@ -240118,6 +254011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240133,12 +254028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38e8b0" } ], @@ -240169,6 +254065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240184,12 +254082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e71b4" }, { @@ -240217,6 +254116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240235,9 +254136,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Festival'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b81f6" }, { @@ -240265,6 +254166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240289,12 +254192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -240321,6 +254225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240336,12 +254242,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85797e" }, { @@ -240369,6 +254276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240384,12 +254293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d1ac7" }, { @@ -240417,6 +254327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240432,12 +254344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "166a8a" }, { @@ -240465,6 +254378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240480,12 +254395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c34fcf" }, { @@ -240513,6 +254429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240528,12 +254446,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b3be4" }, { @@ -240561,6 +254480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240576,12 +254497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "959a66" }, { @@ -240609,6 +254531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240624,12 +254548,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36ddcf" }, { @@ -240657,6 +254582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240672,12 +254599,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb6983" } ], @@ -240708,6 +254636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240723,12 +254653,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d0c475" }, { @@ -240756,6 +254687,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240774,9 +254707,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4591d4", "States": { "2": { @@ -240804,6 +254737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240822,9 +254757,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -240852,6 +254787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240870,9 +254807,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -240902,6 +254839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240917,12 +254856,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0d16a" }, { @@ -240950,6 +254890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -240968,9 +254910,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "28272f", "States": { "2": { @@ -240998,6 +254940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241016,9 +254960,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -241046,6 +254990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241064,9 +255010,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -241096,6 +255042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241111,12 +255059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bc393" }, { @@ -241144,6 +255093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241164,7 +255115,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2319": { "FaceURL": "https://i.imgur.com/jpoSNPO.jpg", @@ -241172,12 +255124,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -241204,6 +255157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241219,12 +255174,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "478100" }, { @@ -241252,6 +255208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241267,12 +255225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f8c2" }, { @@ -241300,6 +255259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241315,12 +255276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5302ac" }, { @@ -241348,6 +255310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241363,12 +255327,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84110a" } ], @@ -241399,6 +255364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241414,12 +255381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5096d" }, { @@ -241447,6 +255415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241465,9 +255435,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da1f25", "States": { "3": { @@ -241495,6 +255465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241513,9 +255485,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "2": { @@ -241543,6 +255515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241561,9 +255535,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" } } @@ -241593,6 +255567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241608,12 +255584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "259b7b" }, { @@ -241641,6 +255618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241659,9 +255638,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db49f3", "States": { "3": { @@ -241689,6 +255668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241707,9 +255688,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "2": { @@ -241737,6 +255718,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241755,9 +255738,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" } } @@ -241787,6 +255770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241802,12 +255787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7bdc6b" }, { @@ -241835,6 +255821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241853,9 +255841,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2da92", "States": { "3": { @@ -241883,6 +255871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241901,9 +255891,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "2": { @@ -241931,6 +255921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241949,9 +255941,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" } } @@ -241981,6 +255973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -241996,12 +255990,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50ffd3" }, { @@ -242029,6 +256024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242047,9 +256044,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f591c7", "States": { "3": { @@ -242077,6 +256074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242095,9 +256094,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "2": { @@ -242125,6 +256124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242143,9 +256144,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" } } @@ -242175,6 +256176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242193,9 +256196,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "daa95d", "States": { "2": { @@ -242223,6 +256226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242241,9 +256246,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -242271,6 +256276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242289,9 +256296,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -242321,6 +256328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242339,9 +256348,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f108e3", "States": { "2": { @@ -242369,6 +256378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242387,9 +256398,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -242417,6 +256428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242435,9 +256448,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -242467,6 +256480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242485,9 +256500,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68ba2e", "States": { "2": { @@ -242515,6 +256530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242533,9 +256550,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -242563,6 +256580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242581,9 +256600,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -242613,6 +256632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242631,9 +256652,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a19bdb", "States": { "2": { @@ -242661,6 +256682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242679,9 +256702,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -242709,6 +256732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242727,9 +256752,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -242759,6 +256784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242774,12 +256801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7fc4c" }, { @@ -242807,6 +256835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242825,9 +256855,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c41b7b", "States": { "2": { @@ -242855,6 +256885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242873,9 +256905,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -242903,6 +256935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242921,9 +256955,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -242953,6 +256987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -242968,12 +257004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "299ea1" }, { @@ -243001,6 +257038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243019,9 +257058,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b9e37", "States": { "2": { @@ -243049,6 +257088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243067,9 +257108,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -243097,6 +257138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243115,9 +257158,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -243147,6 +257190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243162,12 +257207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e3988" }, { @@ -243195,6 +257241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243213,9 +257261,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "447fd2", "States": { "3": { @@ -243243,6 +257291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243261,9 +257311,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "2": { @@ -243291,6 +257341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243309,9 +257361,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" } } @@ -243341,6 +257393,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243359,9 +257413,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -243389,6 +257443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243407,9 +257463,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -243437,6 +257493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243455,9 +257513,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -243487,6 +257545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243505,9 +257565,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c792a", "States": { "3": { @@ -243535,6 +257595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243553,9 +257615,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "2": { @@ -243583,6 +257645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243601,9 +257665,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" } } @@ -243633,6 +257697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243648,12 +257714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be3ac9" }, { @@ -243681,6 +257748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243696,12 +257765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d6343" } ], @@ -243752,6 +257822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243770,9 +257842,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"9ae382\":{\"lock\":false,\"pos\":{\"x\":-3.3515,\"y\":1.4052,\"z\":13.818},\"rot\":{\"x\":359.9832,\"y\":-0.0001,\"z\":359.9197}},\"b310b9\":{\"lock\":false,\"pos\":{\"x\":8.6044,\"y\":1.2859,\"z\":4.9796},\"rot\":{\"x\":0.08,\"y\":89.9997,\"z\":359.9831}},\"c2a55d\":{\"lock\":false,\"pos\":{\"x\":8.6023,\"y\":1.2838,\"z\":-2.2398},\"rot\":{\"x\":0.08,\"y\":89.9987,\"z\":359.9831}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -243799,6 +257871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243807,9 +257881,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"2ea07b\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.655,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.9981,\"z\":0.0687}},\"37bf35\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.857,\"z\":5.7572},\"rot\":{\"x\":359.9198,\"y\":269.9612,\"z\":180.0169}},\"414e12\":{\"lock\":false,\"pos\":{\"x\":-9.705,\"y\":1.4138,\"z\":12.8271},\"rot\":{\"x\":359.9831,\"y\":0.002,\"z\":359.92}},\"46c729\":{\"lock\":false,\"pos\":{\"x\":-9.2963,\"y\":1.6522,\"z\":-0.1895},\"rot\":{\"x\":359.9202,\"y\":269.9999,\"z\":0.0168}},\"516099\":{\"lock\":false,\"pos\":{\"x\":-13.6326,\"y\":1.6929,\"z\":-0.0771},\"rot\":{\"x\":359.9201,\"y\":269.9896,\"z\":0.0169}},\"749379\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9832,\"y\":359.9894,\"z\":359.9197}},\"7dff5b\":{\"lock\":false,\"pos\":{\"x\":-8.9396,\"y\":1.3985,\"z\":9.056},\"rot\":{\"x\":359.9831,\"y\":0.0049,\"z\":354.5837}},\"8cfb70\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":359.9832,\"y\":359.9856,\"z\":359.9197}},\"8d62ae\":{\"lock\":false,\"pos\":{\"x\":-3.5101,\"y\":1.5819,\"z\":-15.2044},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"e43848\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -243836,6 +257910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243851,12 +257927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ea07b" }, { @@ -243884,6 +257961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243892,9 +257971,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -243921,6 +258000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243936,12 +258017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be83a3" }, { @@ -243969,6 +258051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -243988,12 +258072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -244020,6 +258105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244034,12 +258121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a041e8" }, { @@ -244067,6 +258155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244081,12 +258171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b68582" }, { @@ -244114,6 +258205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244128,12 +258221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90faef" } ], @@ -244167,6 +258261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244175,9 +258271,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -244204,6 +258300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244218,12 +258316,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f351d" }, { @@ -244251,6 +258350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244270,12 +258371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -244302,6 +258404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244316,12 +258420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c05e53" }, { @@ -244349,6 +258454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244363,12 +258470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8537e1" }, { @@ -244396,6 +258504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244410,12 +258520,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3df91e" }, { @@ -244443,6 +258554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244457,12 +258570,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e6b69" } ], @@ -244493,6 +258607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244507,12 +258623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24a651" }, { @@ -244540,6 +258657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244560,12 +258679,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -244592,6 +258712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244606,12 +258728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d3389" }, { @@ -244639,6 +258762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244653,12 +258778,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e6f1d" }, { @@ -244686,6 +258812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244700,12 +258828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd2b35" }, { @@ -244733,6 +258862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244747,12 +258878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c39e64" } ], @@ -244783,6 +258915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244798,12 +258932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1569f4" } ], @@ -244834,6 +258969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244896,12 +259033,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -244928,6 +259066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244942,12 +259082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c08261" }, { @@ -244975,6 +259116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -244989,12 +259132,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d3812" }, { @@ -245022,6 +259166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245029,9 +259175,9 @@ "Hands": true, "CardID": 702, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245060,6 +259206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245067,9 +259215,9 @@ "Hands": true, "CardID": 703, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245098,6 +259246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245105,9 +259255,9 @@ "Hands": true, "CardID": 704, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245136,6 +259286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245143,9 +259295,9 @@ "Hands": true, "CardID": 705, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245174,6 +259326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245181,9 +259335,9 @@ "Hands": true, "CardID": 706, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245212,6 +259366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245219,9 +259375,9 @@ "Hands": true, "CardID": 707, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245250,6 +259406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245257,9 +259415,9 @@ "Hands": true, "CardID": 708, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245288,6 +259446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245295,9 +259455,9 @@ "Hands": true, "CardID": 709, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245326,6 +259486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245333,9 +259495,9 @@ "Hands": true, "CardID": 710, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245364,6 +259526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245371,9 +259535,9 @@ "Hands": true, "CardID": 711, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245402,6 +259566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245409,9 +259575,9 @@ "Hands": true, "CardID": 712, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245440,6 +259606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245447,9 +259615,9 @@ "Hands": true, "CardID": 713, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245478,6 +259646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245485,9 +259655,9 @@ "Hands": true, "CardID": 714, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245516,6 +259686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245523,9 +259695,9 @@ "Hands": true, "CardID": 715, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245554,6 +259726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245561,9 +259735,9 @@ "Hands": true, "CardID": 716, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245592,6 +259766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245599,9 +259775,9 @@ "Hands": true, "CardID": 717, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245630,6 +259806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245637,9 +259815,9 @@ "Hands": true, "CardID": 718, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245668,6 +259846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245675,9 +259855,9 @@ "Hands": true, "CardID": 719, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245706,6 +259886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245713,9 +259895,9 @@ "Hands": true, "CardID": 720, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245744,6 +259926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245751,9 +259935,9 @@ "Hands": true, "CardID": 721, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245782,6 +259966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245789,9 +259975,9 @@ "Hands": true, "CardID": 722, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245820,6 +260006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245827,9 +260015,9 @@ "Hands": true, "CardID": 723, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245858,6 +260046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245865,9 +260055,9 @@ "Hands": true, "CardID": 724, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245896,6 +260086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245903,9 +260095,9 @@ "Hands": true, "CardID": 725, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245934,6 +260126,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245941,9 +260135,9 @@ "Hands": true, "CardID": 726, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -245972,6 +260166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -245979,9 +260175,9 @@ "Hands": true, "CardID": 727, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246010,6 +260206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246017,9 +260215,9 @@ "Hands": true, "CardID": 728, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246048,6 +260246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246055,9 +260255,9 @@ "Hands": true, "CardID": 729, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246086,6 +260286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246093,9 +260295,9 @@ "Hands": true, "CardID": 730, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246124,6 +260326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246131,9 +260335,9 @@ "Hands": true, "CardID": 731, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246162,6 +260366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246169,9 +260375,9 @@ "Hands": true, "CardID": 732, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246200,6 +260406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246207,9 +260415,9 @@ "Hands": true, "CardID": 733, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246238,6 +260446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246245,9 +260455,9 @@ "Hands": true, "CardID": 734, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246276,6 +260486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246283,9 +260495,9 @@ "Hands": true, "CardID": 735, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246314,6 +260526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246321,9 +260535,9 @@ "Hands": true, "CardID": 736, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246352,6 +260566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246359,9 +260575,9 @@ "Hands": true, "CardID": 737, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246390,6 +260606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246397,9 +260615,9 @@ "Hands": true, "CardID": 738, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246428,6 +260646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246435,9 +260655,9 @@ "Hands": true, "CardID": 739, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246466,6 +260686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246473,9 +260695,9 @@ "Hands": true, "CardID": 740, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246504,6 +260726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246511,9 +260735,9 @@ "Hands": true, "CardID": 741, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246542,6 +260766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246549,9 +260775,9 @@ "Hands": true, "CardID": 742, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246580,6 +260806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246587,9 +260815,9 @@ "Hands": true, "CardID": 743, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246618,6 +260846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246625,9 +260855,9 @@ "Hands": true, "CardID": 744, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" }, @@ -246656,6 +260886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246663,9 +260895,9 @@ "Hands": true, "CardID": 745, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "c08261" } @@ -246697,6 +260929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246716,12 +260950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -246748,6 +260983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246762,12 +260999,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be83a3" }, { @@ -246795,6 +261033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246809,12 +261049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0534e6" }, { @@ -246842,6 +261083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246856,12 +261099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be83a3" } ], @@ -246892,6 +261136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246911,12 +261157,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -246943,6 +261190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -246957,12 +261206,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be83a3" }, { @@ -246990,6 +261240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247004,12 +261256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a69e62" }, { @@ -247037,6 +261290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247051,12 +261306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be83a3" } ], @@ -247087,6 +261343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247102,12 +261360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e43848" }, { @@ -247135,6 +261394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247153,9 +261414,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Dying Star'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d62ae" }, { @@ -247183,6 +261444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247208,12 +261471,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -247240,6 +261504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247255,12 +261521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec2e15" }, { @@ -247288,6 +261555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247303,12 +261572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "663165" }, { @@ -247336,6 +261606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247351,12 +261623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "71cd48" }, { @@ -247384,6 +261657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247399,12 +261674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59d447" }, { @@ -247432,6 +261708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247447,12 +261725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cceb44" }, { @@ -247480,6 +261759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247495,12 +261776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a52d78" }, { @@ -247528,6 +261810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247543,12 +261827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "664cac" }, { @@ -247576,6 +261861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247591,12 +261878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a9702" }, { @@ -247624,6 +261912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247639,12 +261929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "442e88" } ], @@ -247675,6 +261966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247708,12 +262001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -247740,6 +262034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247754,12 +262050,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc9446" }, { @@ -247787,6 +262084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247801,12 +262100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "136467" }, { @@ -247834,6 +262134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247848,12 +262150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "532f32" }, { @@ -247881,6 +262184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247895,12 +262200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df5511" }, { @@ -247928,6 +262234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247942,12 +262250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1d383" }, { @@ -247975,6 +262284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -247989,12 +262300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05e7a1" }, { @@ -248022,6 +262334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248036,12 +262350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4778f8" }, { @@ -248069,6 +262384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248083,12 +262400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4534a2" }, { @@ -248116,6 +262434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248130,12 +262450,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e6a36" }, { @@ -248163,6 +262484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248177,12 +262500,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "479529" }, { @@ -248210,6 +262534,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248224,12 +262550,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8a689" }, { @@ -248257,6 +262584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248271,12 +262600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e3f14" }, { @@ -248304,6 +262634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248318,12 +262650,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ba62c" }, { @@ -248351,6 +262684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248365,12 +262700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "816cee" }, { @@ -248398,6 +262734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248412,12 +262750,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1d25f" }, { @@ -248445,6 +262784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248459,12 +262800,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e47aad" }, { @@ -248492,6 +262834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248506,12 +262850,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf0d17" } ], @@ -248545,6 +262890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248553,9 +262900,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"073778\":{\"lock\":false,\"pos\":{\"x\":-9.1476,\"y\":1.6649,\"z\":0.3483},\"rot\":{\"x\":359.9204,\"y\":269.9829,\"z\":0.0169}},\"3e2f9c\":{\"lock\":false,\"pos\":{\"x\":-10.6769,\"y\":1.4126,\"z\":4.2867},\"rot\":{\"x\":359.9831,\"y\":359.9901,\"z\":359.92}},\"4c28a9\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9832,\"y\":359.9856,\"z\":359.9197}},\"4cd3ab\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.6368,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.9981,\"z\":0.0687}},\"4db945\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":0.0169}},\"6200cb\":{\"lock\":false,\"pos\":{\"x\":-2.6872,\"y\":1.6535,\"z\":-5.0419},\"rot\":{\"x\":359.9832,\"y\":-0.0056,\"z\":359.9197}},\"6c8cf1\":{\"lock\":false,\"pos\":{\"x\":-10.8516,\"y\":1.4138,\"z\":7.5199},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"851506\":{\"lock\":false,\"pos\":{\"x\":-12.9354,\"y\":1.705,\"z\":0.1838},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":0.0169}},\"a148f2\":{\"lock\":false,\"pos\":{\"x\":-3.4667,\"y\":1.5821,\"z\":-14.2764},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"ba503d\":{\"lock\":false,\"pos\":{\"x\":-10.7099,\"y\":1.4157,\"z\":14.4419},\"rot\":{\"x\":359.9831,\"y\":359.9904,\"z\":359.92}},\"c95716\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9856,\"z\":0.0169}},\"e382bb\":{\"lock\":false,\"pos\":{\"x\":-10.8115,\"y\":1.4147,\"z\":10.8723},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -248582,6 +262929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248603,12 +262952,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -248635,6 +262985,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248650,12 +263002,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55a0ad" }, { @@ -248683,6 +263036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248698,12 +263053,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30abe1" }, { @@ -248731,6 +263087,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248746,12 +263104,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42a756" }, { @@ -248779,6 +263138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248794,12 +263155,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "658fcc" }, { @@ -248827,6 +263189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248842,12 +263206,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68e63e" } ], @@ -248878,6 +263243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248886,9 +263253,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -248915,6 +263282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248943,12 +263312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -248975,6 +263345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -248989,12 +263361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "554fdb" }, { @@ -249022,6 +263395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249036,12 +263411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6194a7" }, { @@ -249069,6 +263445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249083,12 +263461,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3d822" }, { @@ -249116,6 +263495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249130,12 +263511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "858e90" }, { @@ -249163,6 +263545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249177,12 +263561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed290f" }, { @@ -249210,6 +263595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249224,12 +263611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f21731" }, { @@ -249257,6 +263645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249271,12 +263661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e34d90" }, { @@ -249304,6 +263695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249318,12 +263711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c20c78" }, { @@ -249351,6 +263745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249365,12 +263761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6754a5" }, { @@ -249398,6 +263795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249412,12 +263811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "001386" }, { @@ -249445,6 +263845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249459,12 +263861,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c689c7" }, { @@ -249492,6 +263895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249506,12 +263911,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c08261" } ], @@ -249545,6 +263951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249564,12 +263972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -249596,6 +264005,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249610,12 +264021,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9095b8" }, { @@ -249643,6 +264055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249657,12 +264071,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4670c3" }, { @@ -249690,6 +264105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249704,12 +264121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be83a3" } ], @@ -249740,6 +264158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249764,12 +264184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -249796,6 +264217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249810,12 +264233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f582e6" }, { @@ -249843,6 +264267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249857,12 +264283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ddb034" }, { @@ -249890,6 +264317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249904,12 +264333,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fdc42b" }, { @@ -249937,6 +264367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249951,12 +264383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18aadc" }, { @@ -249984,6 +264417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -249998,12 +264433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9900e" }, { @@ -250031,6 +264467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250045,12 +264483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e56caf" }, { @@ -250078,6 +264517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250092,12 +264533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9734f" }, { @@ -250125,6 +264567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250139,12 +264583,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "890e83" } ], @@ -250175,6 +264620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250190,12 +264637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4db945" }, { @@ -250223,6 +264671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250243,12 +264693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -250275,6 +264726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250289,12 +264742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be83a3" }, { @@ -250322,6 +264776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250336,12 +264792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1a8c8" }, { @@ -250369,6 +264826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250383,12 +264842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76d37e" }, { @@ -250416,6 +264876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250430,12 +264892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be83a3" } ], @@ -250466,6 +264929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250474,9 +264939,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -250503,6 +264968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250521,12 +264988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -250553,6 +265021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250567,12 +265037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4db945" }, { @@ -250600,6 +265071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250614,12 +265087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "399a78" } ], @@ -250653,6 +265127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250689,12 +265165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -250721,6 +265198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250735,12 +265214,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55c178" }, { @@ -250768,6 +265248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250782,12 +265264,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7190fd" }, { @@ -250815,6 +265298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250829,12 +265314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db73e3" }, { @@ -250862,6 +265348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250876,12 +265364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bd848" }, { @@ -250909,6 +265398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250923,12 +265414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ac375" }, { @@ -250956,6 +265448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -250970,12 +265464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "406fba" }, { @@ -251003,6 +265498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251017,12 +265514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b47a93" }, { @@ -251050,6 +265548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251064,12 +265564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f559fe" }, { @@ -251097,6 +265598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251111,12 +265614,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a59517" }, { @@ -251144,6 +265648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251158,12 +265664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b95b0c" }, { @@ -251191,6 +265698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251205,12 +265714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f368c2" }, { @@ -251238,6 +265748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251252,12 +265764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "644d5e" }, { @@ -251285,6 +265798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251299,12 +265814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "470f51" }, { @@ -251332,6 +265848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251346,12 +265864,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4850c" }, { @@ -251379,6 +265898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251393,12 +265914,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db4a07" }, { @@ -251426,6 +265948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251440,12 +265964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5c84b" }, { @@ -251473,6 +265998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251487,12 +266014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c6106" }, { @@ -251520,6 +266048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251534,12 +266064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "987eca" }, { @@ -251567,6 +266098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251581,12 +266114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc528c" }, { @@ -251614,6 +266148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251628,12 +266164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d0c5fa" } ], @@ -251664,6 +266201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251682,9 +266221,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Dying Star'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "a148f2" }, { @@ -251712,6 +266251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251720,9 +266261,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -251749,6 +266290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251784,12 +266327,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -251816,6 +266360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251830,12 +266376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "074082" }, { @@ -251863,6 +266410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251877,12 +266426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edbd65" }, { @@ -251910,6 +266460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251924,12 +266476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f15dba" }, { @@ -251957,6 +266510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -251971,12 +266526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c3999" }, { @@ -252004,6 +266560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252018,12 +266576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "431ca3" }, { @@ -252051,6 +266610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252065,12 +266626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "782689" }, { @@ -252098,6 +266660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252112,12 +266676,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce4c5b" }, { @@ -252145,6 +266710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252159,12 +266726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3ef55" }, { @@ -252192,6 +266760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252206,12 +266776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f033ed" }, { @@ -252239,6 +266810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252253,12 +266826,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf2242" }, { @@ -252286,6 +266860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252300,12 +266876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dadfec" }, { @@ -252333,6 +266910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252347,12 +266926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90890d" }, { @@ -252380,6 +266960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252394,12 +266976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8bb92" }, { @@ -252427,6 +267010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252441,12 +267026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "446432" }, { @@ -252474,6 +267060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252488,12 +267076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c318b5" }, { @@ -252521,6 +267110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252535,12 +267126,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b5d81" }, { @@ -252568,6 +267160,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252582,12 +267176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "347794" }, { @@ -252615,6 +267210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252629,12 +267226,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b641e9" }, { @@ -252662,6 +267260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252676,12 +267276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "653499" } ], @@ -252715,6 +267316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252730,12 +267333,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c95716" }, { @@ -252763,6 +267367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252771,9 +267377,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "DeckCustom", @@ -252800,6 +267406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252828,12 +267436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -252860,6 +267469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252874,12 +267485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "074082" }, { @@ -252907,6 +267519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252914,9 +267528,9 @@ "Hands": true, "CardID": 120, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "074082" }, @@ -252945,6 +267559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252952,9 +267568,9 @@ "Hands": true, "CardID": 121, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "074082" }, @@ -252983,6 +267599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -252990,9 +267608,9 @@ "Hands": true, "CardID": 122, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "074082" }, @@ -253021,6 +267639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253028,9 +267648,9 @@ "Hands": true, "CardID": 123, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "074082" }, @@ -253059,6 +267679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253066,9 +267688,9 @@ "Hands": true, "CardID": 124, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "074082" }, @@ -253097,6 +267719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253104,9 +267728,9 @@ "Hands": true, "CardID": 125, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "074082" }, @@ -253135,6 +267759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253142,9 +267768,9 @@ "Hands": true, "CardID": 126, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "074082" }, @@ -253173,6 +267799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253180,9 +267808,9 @@ "Hands": true, "CardID": 127, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "074082" }, @@ -253211,6 +267839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253218,9 +267848,9 @@ "Hands": true, "CardID": 128, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "074082" }, @@ -253249,6 +267879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253256,9 +267888,9 @@ "Hands": true, "CardID": 129, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "074082" }, @@ -253287,6 +267919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253294,9 +267928,9 @@ "Hands": true, "CardID": 130, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "074082" } @@ -253334,6 +267968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253342,9 +267978,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -253371,6 +268007,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253385,12 +268023,13 @@ "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de5014" }, { @@ -253418,6 +268057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253432,12 +268073,13 @@ "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d43169" }, { @@ -253465,6 +268107,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253479,12 +268123,13 @@ "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7069f1" }, { @@ -253512,6 +268157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253530,9 +268177,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1bdfa5" }, { @@ -253560,6 +268207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253574,12 +268223,13 @@ "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13c6ab" }, { @@ -253607,6 +268257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253625,9 +268277,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e54bfb" }, { @@ -253655,6 +268307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253673,9 +268327,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47eb0e" }, { @@ -253703,6 +268357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253721,9 +268377,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c71665" }, { @@ -253751,6 +268407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253769,9 +268427,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d29153" } ], @@ -253825,6 +268483,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253843,9 +268503,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"17807e\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6924,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":269.9978,\"z\":180.0169}},\"1a3caf\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":0.0168}},\"261874\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6726,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9752,\"z\":0.0169}},\"4a7540\":{\"lock\":false,\"pos\":{\"x\":-3.9273,\"y\":1.8143,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0006,\"z\":180.0168}},\"520889\":{\"lock\":false,\"pos\":{\"x\":-3.8323,\"y\":1.5826,\"z\":-14.4151},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"64b00f\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6805,\"z\":11.4595},\"rot\":{\"x\":359.9201,\"y\":269.9902,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.3296,\"y\":1.6132,\"z\":11.468},\"rot\":{\"x\":359.9201,\"y\":269.9948,\"z\":0.0169}},\"8985c4\":{\"lock\":false,\"pos\":{\"x\":-1.4983,\"y\":1.762,\"z\":-29.2296},\"rot\":{\"x\":359.9201,\"y\":269.9695,\"z\":0.0169}},\"8a689d\":{\"lock\":false,\"pos\":{\"x\":-17.1197,\"y\":1.6759,\"z\":-0.0295},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"9dab73\":{\"lock\":false,\"pos\":{\"x\":-2.7245,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9866,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9981,\"z\":0.0687}},\"ab39b9\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6816,\"z\":15.1897},\"rot\":{\"x\":359.9201,\"y\":269.9879,\"z\":0.0169}},\"d2cb13\":{\"lock\":false,\"pos\":{\"x\":-12.0254,\"y\":1.6722,\"z\":7.5293},\"rot\":{\"x\":359.9201,\"y\":269.9951,\"z\":0.0169}},\"da2cbd\":{\"lock\":false,\"pos\":{\"x\":-17.1196,\"y\":1.6737,\"z\":-11.5093},\"rot\":{\"x\":359.9201,\"y\":270.0104,\"z\":0.0169}},\"ddc104\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6563,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9859,\"z\":0.0169}},\"fe4e96\":{\"lock\":false,\"pos\":{\"x\":-12.0018,\"y\":1.7846,\"z\":11.1085},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":180.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -253872,6 +268532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253887,12 +268549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17807e" }, { @@ -253920,6 +268583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253935,12 +268600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a3caf" }, { @@ -253968,6 +268634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -253983,12 +268651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "261874" }, { @@ -254016,6 +268685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254070,7 +268741,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", @@ -254078,12 +268750,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -254110,6 +268783,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254125,12 +268800,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d1999" }, { @@ -254158,6 +268834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254173,12 +268851,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "532718" }, { @@ -254206,6 +268885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254221,12 +268902,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2bacc8" }, { @@ -254254,6 +268936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254269,12 +268953,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7bd85f" }, { @@ -254302,6 +268987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254317,12 +269004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "465e99" }, { @@ -254350,6 +269038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254365,12 +269055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5446ef" }, { @@ -254398,6 +269089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254413,12 +269106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8168a2" }, { @@ -254446,6 +269140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254461,12 +269157,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3971f0" }, { @@ -254494,6 +269191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254509,12 +269208,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "552d87" }, { @@ -254542,6 +269242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254557,12 +269259,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "857e76" }, { @@ -254590,6 +269293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254605,12 +269310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8cf94" }, { @@ -254638,6 +269344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254653,12 +269361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae8fc1" }, { @@ -254686,6 +269395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254701,12 +269412,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45bf23" }, { @@ -254734,6 +269446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254749,12 +269463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff6d58" }, { @@ -254782,6 +269497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254797,12 +269514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e2ad4" }, { @@ -254830,6 +269548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254845,12 +269565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6e2f7" }, { @@ -254878,6 +269599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254893,12 +269616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "061be3" }, { @@ -254926,6 +269650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254941,12 +269667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d20785" }, { @@ -254974,6 +269701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -254989,12 +269718,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "477aa0" }, { @@ -255022,6 +269752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255037,12 +269769,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25595d" }, { @@ -255070,6 +269803,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255085,12 +269820,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2604d8" }, { @@ -255118,6 +269854,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255133,12 +269871,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d295f3" }, { @@ -255166,6 +269905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255181,12 +269922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a379b5" }, { @@ -255214,6 +269956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255229,12 +269973,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4be693" }, { @@ -255262,6 +270007,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255277,12 +270024,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b5d39" }, { @@ -255310,6 +270058,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255325,12 +270075,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80049b" }, { @@ -255358,6 +270109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255373,12 +270126,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef00c9" }, { @@ -255406,6 +270160,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255421,12 +270177,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00fe22" }, { @@ -255454,6 +270211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255469,12 +270228,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f629b" }, { @@ -255502,6 +270262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255517,12 +270279,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b33d4b" }, { @@ -255550,6 +270313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255565,12 +270330,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "beb1d7" }, { @@ -255598,6 +270364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255613,12 +270381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e5e3f" }, { @@ -255646,6 +270415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255661,12 +270432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a6641" }, { @@ -255694,6 +270466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255709,12 +270483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f54d82" }, { @@ -255742,6 +270517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255757,12 +270534,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3902e3" }, { @@ -255790,6 +270568,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255805,12 +270585,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "faa975" }, { @@ -255838,6 +270619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255853,12 +270636,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63fe91" }, { @@ -255886,6 +270670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255901,12 +270687,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa4f85" } ], @@ -255937,6 +270724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -255955,9 +270744,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Delta Green'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "520889" }, { @@ -255985,6 +270774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256000,12 +270791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64b00f" }, { @@ -256033,6 +270825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256051,9 +270845,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -256081,6 +270875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256099,9 +270895,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -256129,6 +270925,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256147,9 +270945,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -256179,6 +270977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256188,9 +270988,9 @@ "Tablet": { "PageURL": "https://drive.google.com/file/d/1cgCvJtdae12JdDdoXrCh2gPYxPfbF1UT/view" }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8985c4" }, { @@ -256218,6 +271018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256239,7 +271041,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "108": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/", @@ -256247,12 +271050,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -256279,6 +271083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256294,12 +271100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65e544" }, { @@ -256327,6 +271134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256342,12 +271151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5e7e2" }, { @@ -256375,6 +271185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256390,12 +271202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "965fe9" }, { @@ -256423,6 +271236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256438,12 +271253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "939239" }, { @@ -256471,6 +271287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256486,12 +271304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecbc1b" } ], @@ -256522,6 +271341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256540,12 +271361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -256572,6 +271394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256587,12 +271411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72eba2" }, { @@ -256620,6 +271445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256635,12 +271462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e31e5" } ], @@ -256671,6 +271499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256689,9 +271519,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -256718,6 +271548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256737,7 +271569,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2698": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/", @@ -256745,12 +271578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -256777,6 +271611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256792,12 +271628,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "656e55" }, { @@ -256825,6 +271662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256840,12 +271679,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad37ea" }, { @@ -256873,6 +271713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256888,12 +271730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef035f" } ], @@ -256924,6 +271767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256944,12 +271789,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -256976,6 +271822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -256991,12 +271839,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2cb13" }, { @@ -257024,6 +271873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257039,12 +271890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56ea2a" }, { @@ -257072,6 +271924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257087,12 +271941,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "beeffb" }, { @@ -257120,6 +271975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257135,12 +271992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ee13a" } ], @@ -257171,6 +272029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257192,7 +272052,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "107": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/", @@ -257200,12 +272061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -257232,6 +272094,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257247,12 +272111,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6565b" }, { @@ -257280,6 +272145,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257295,12 +272162,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69d892" }, { @@ -257328,6 +272196,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257343,12 +272213,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e9ea8" }, { @@ -257376,6 +272247,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257391,12 +272264,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f98b3a" }, { @@ -257424,6 +272298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257439,12 +272315,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa0922" } ], @@ -257475,6 +272352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257499,7 +272378,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", @@ -257507,7 +272387,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2716": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788715128/94213F44A42FD55FE1C4C1708B1F813AABE7D935/", @@ -257515,12 +272396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -257547,6 +272429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257562,12 +272446,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "663eeb" }, { @@ -257595,6 +272480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257610,12 +272497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c89395" }, { @@ -257643,6 +272531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257658,12 +272548,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa4f85" }, { @@ -257691,6 +272582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257706,12 +272599,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9084f4" }, { @@ -257739,6 +272633,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257754,12 +272650,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cf87e" }, { @@ -257787,6 +272684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257802,12 +272701,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "150332" }, { @@ -257835,6 +272735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257850,12 +272752,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d295f3" }, { @@ -257883,6 +272786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257898,12 +272803,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1b190" } ], @@ -257934,6 +272840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257949,12 +272857,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "989196" }, { @@ -257982,6 +272891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -257997,12 +272908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0addaa" }, { @@ -258030,6 +272942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258045,12 +272959,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "363f15" } ], @@ -258094,6 +273009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258109,12 +273026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab39b9" }, { @@ -258142,6 +273060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258157,12 +273077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2cb13" }, { @@ -258190,6 +273111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258205,12 +273128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da2cbd" }, { @@ -258238,6 +273162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258260,7 +273186,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2701": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/961984061635564508/29222A6636BCB919A685D520DF2077612FC17614/", @@ -258268,12 +273195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -258300,6 +273228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258315,12 +273245,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5341f9" }, { @@ -258348,6 +273279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258363,12 +273296,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f6b8b" }, { @@ -258396,6 +273330,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258411,12 +273347,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cebce0" }, { @@ -258444,6 +273381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258459,12 +273398,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acd3c7" }, { @@ -258492,6 +273432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258507,12 +273449,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "339aa2" }, { @@ -258540,6 +273483,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258555,12 +273500,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e86a6" } ], @@ -258591,6 +273537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258637,7 +273585,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2703": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/", @@ -258645,12 +273594,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -258677,6 +273627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258692,12 +273644,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18c788" }, { @@ -258725,6 +273678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258740,12 +273695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4d543" }, { @@ -258773,6 +273729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258788,12 +273746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33703c" }, { @@ -258821,6 +273780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258836,12 +273797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d5cc4" }, { @@ -258869,6 +273831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258884,12 +273848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ab0cf" }, { @@ -258917,6 +273882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258932,12 +273899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46feba" }, { @@ -258965,6 +273933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -258980,12 +273950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c92bf8" }, { @@ -259013,6 +273984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259028,12 +274001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02deff" }, { @@ -259061,6 +274035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259076,12 +274052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cad344" }, { @@ -259109,6 +274086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259124,12 +274103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d3bb3" }, { @@ -259157,6 +274137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259172,12 +274154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00b35e" }, { @@ -259205,6 +274188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259220,12 +274205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b24d2b" }, { @@ -259253,6 +274239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259268,12 +274256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9650a" }, { @@ -259301,6 +274290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259316,12 +274307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70a6d9" }, { @@ -259349,6 +274341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259364,12 +274358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "487797" }, { @@ -259397,6 +274392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259412,12 +274409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dddc2" }, { @@ -259445,6 +274443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259460,12 +274460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05f16e" }, { @@ -259493,6 +274494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259508,12 +274511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d4797" }, { @@ -259541,6 +274545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259556,12 +274562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a1f1e" }, { @@ -259589,6 +274596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259604,12 +274613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c16e9" }, { @@ -259637,6 +274647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259652,12 +274664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5498f" }, { @@ -259685,6 +274698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259700,12 +274715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "476928" }, { @@ -259733,6 +274749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259748,12 +274766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62c52d" }, { @@ -259781,6 +274800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259796,12 +274817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "febccf" }, { @@ -259829,6 +274851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259844,12 +274868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eef239" }, { @@ -259877,6 +274902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259892,12 +274919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c4c04" }, { @@ -259925,6 +274953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259940,12 +274970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12924b" }, { @@ -259973,6 +275004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -259988,12 +275021,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4a801" }, { @@ -260021,6 +275055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260036,12 +275072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b25a8e" }, { @@ -260069,6 +275106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260084,12 +275123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd3957" } ], @@ -260143,6 +275183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260161,9 +275203,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0ce6bb\":{\"lock\":false,\"pos\":{\"x\":-12.6932,\"y\":1.6812,\"z\":6.9294},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"5127f6\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6662,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9998,\"z\":180.0686}},\"5e4e43\":{\"lock\":false,\"pos\":{\"x\":-13.2968,\"y\":1.6723,\"z\":-7.7574},\"rot\":{\"x\":359.9201,\"y\":270.028,\"z\":180.0168}},\"8075b9\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9854,\"z\":0.0169}},\"a08daa\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"b3cbc1\":{\"lock\":false,\"pos\":{\"x\":-3.8937,\"y\":1.5826,\"z\":-14.6014},\"rot\":{\"x\":359.9197,\"y\":270.0009,\"z\":0.0168}},\"c6a9ae\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7611,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9857,\"z\":180.0168}},\"dc50b3\":{\"lock\":false,\"pos\":{\"x\":-3.9555,\"y\":1.6556,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"ecbf8f\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6754,\"z\":-15.2799},\"rot\":{\"x\":359.9201,\"y\":270.0269,\"z\":180.0168}},\"f9fc71\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -260190,6 +275232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260212,7 +275256,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2": { "FaceURL": "https://i.imgur.com/5lwfXNg.jpg/", @@ -260220,12 +275265,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -260252,6 +275298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260266,12 +275314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" }, { @@ -260299,6 +275348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260313,12 +275364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "058b91" }, { @@ -260346,6 +275398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260360,12 +275414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "451714" }, { @@ -260393,6 +275448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260407,12 +275464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7667de" }, { @@ -260440,6 +275498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260454,12 +275514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c29ab7" }, { @@ -260487,6 +275548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260501,12 +275564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "612ad3" } ], @@ -260537,6 +275601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260581,7 +275647,8 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -260589,12 +275656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -260621,6 +275689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260634,12 +275704,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e0a27" }, { @@ -260667,6 +275738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260680,12 +275753,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "113033" }, { @@ -260713,6 +275787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260726,12 +275802,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05fb57" }, { @@ -260759,6 +275836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260772,12 +275851,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9af55" }, { @@ -260805,6 +275885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260819,12 +275901,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd4c83" }, { @@ -260852,6 +275935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260865,12 +275950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -260898,6 +275984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260911,12 +275999,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -260944,6 +276033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -260957,12 +276048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -260990,6 +276082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261003,12 +276097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -261036,6 +276131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261049,12 +276146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -261082,6 +276180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261095,12 +276195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -261128,6 +276229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261141,12 +276244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -261174,6 +276278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261187,12 +276293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" }, { @@ -261220,6 +276327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261233,12 +276342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -261266,6 +276376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261279,12 +276391,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -261312,6 +276425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261325,12 +276440,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e441a" }, { @@ -261358,6 +276474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261371,12 +276489,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67f705" }, { @@ -261404,6 +276523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261417,12 +276538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf03e4" }, { @@ -261450,6 +276572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261463,12 +276587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b7b" }, { @@ -261496,6 +276621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261509,12 +276636,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df668b" }, { @@ -261542,6 +276670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261555,12 +276685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" }, { @@ -261588,6 +276719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261601,12 +276734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -261634,6 +276768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261647,12 +276783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -261680,6 +276817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261693,12 +276832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -261726,6 +276866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261739,12 +276881,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "476433" }, { @@ -261772,6 +276915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261785,12 +276930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b124ef" }, { @@ -261818,6 +276964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261831,12 +276979,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd287a" }, { @@ -261864,6 +277013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261877,12 +277028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b06ff1" } ], @@ -261913,6 +277065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261932,12 +277086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -261964,6 +277119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -261978,12 +277135,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b67b6" }, { @@ -262011,6 +277169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262025,12 +277185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "400851" }, { @@ -262058,6 +277219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262072,12 +277235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed068c" } ], @@ -262108,6 +277272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262128,12 +277294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -262160,6 +277327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262174,12 +277343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d484eb" }, { @@ -262207,6 +277377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262221,12 +277393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31e3dd" }, { @@ -262254,6 +277427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262268,12 +277443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a7148" }, { @@ -262301,6 +277477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262315,12 +277493,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbc830" } ], @@ -262351,6 +277530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262366,12 +277547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc50b3" }, { @@ -262399,6 +277581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262417,9 +277601,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Curse of Amultep'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3cbc1" }, { @@ -262447,6 +277631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262468,12 +277654,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -262500,6 +277687,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262514,12 +277703,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebbc12" }, { @@ -262547,6 +277737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262561,12 +277753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca4f69" }, { @@ -262594,6 +277787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262608,12 +277803,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "274def" }, { @@ -262641,6 +277837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262655,12 +277853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f96252" }, { @@ -262688,6 +277887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262702,12 +277903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ee55f" } ], @@ -262738,6 +277940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262753,12 +277957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e4e43" }, { @@ -262786,6 +277991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262801,12 +278008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecbf8f" }, { @@ -262834,6 +278042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262849,12 +278059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9fc71" } ], @@ -262905,6 +278116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262933,9 +278146,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"011e57\":{\"lock\":false,\"pos\":{\"x\":7.4136,\"y\":1.5493,\"z\":-1.6503},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"14fd91\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0145,\"z\":0.0803}},\"2f4093\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"370ae5\":{\"lock\":false,\"pos\":{\"x\":7.3549,\"y\":1.5428,\"z\":0.9084},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"4339b6\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0055,\"z\":0.0168}},\"4736d9\":{\"lock\":false,\"pos\":{\"x\":-10.0405,\"y\":1.5945,\"z\":-3.243},\"rot\":{\"x\":359.9201,\"y\":270.0059,\"z\":0.0169}},\"68e1d9\":{\"lock\":false,\"pos\":{\"x\":-10.0449,\"y\":1.5965,\"z\":3.4829},\"rot\":{\"x\":359.9201,\"y\":269.9974,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.3859,\"y\":1.6313,\"z\":11.159},\"rot\":{\"x\":359.9316,\"y\":315.0293,\"z\":359.9554}},\"7b0f48\":{\"lock\":false,\"pos\":{\"x\":-10.0533,\"y\":1.5959,\"z\":1.2614},\"rot\":{\"x\":359.9201,\"y\":269.9979,\"z\":0.0169}},\"8f2b3d\":{\"lock\":false,\"pos\":{\"x\":-33.341,\"y\":1.6301,\"z\":7.293},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"a1514c\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7184,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.8848,\"y\":1.5826,\"z\":-14.7351},\"rot\":{\"x\":359.9197,\"y\":270.0318,\"z\":0.0168}},\"be5b52\":{\"lock\":false,\"pos\":{\"x\":1.6968,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9981,\"z\":0.0687}},\"be5d2b\":{\"lock\":false,\"pos\":{\"x\":-10.0804,\"y\":1.5953,\"z\":-1.0163},\"rot\":{\"x\":359.9201,\"y\":269.9913,\"z\":0.0169}},\"bf0eaa\":{\"lock\":false,\"pos\":{\"x\":-30.2261,\"y\":1.6983,\"z\":10.1027},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"c34f49\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"c5a4bf\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.709,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"d14543\":{\"lock\":false,\"pos\":{\"x\":-12.2221,\"y\":1.4168,\"z\":11.1913},\"rot\":{\"x\":0.08,\"y\":89.9905,\"z\":359.9831}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -262962,6 +278175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -262981,12 +278196,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -263013,6 +278229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263028,12 +278246,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b0634" }, { @@ -263061,6 +278280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263076,12 +278297,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7211e" }, { @@ -263109,6 +278331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263124,12 +278348,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d3ab9" } ], @@ -263160,6 +278385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263179,12 +278406,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -263211,6 +278439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263226,12 +278456,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7abb7c" }, { @@ -263259,6 +278490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263274,12 +278507,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47e8ab" }, { @@ -263307,6 +278541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263322,12 +278558,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e356f" } ], @@ -263358,6 +278595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263376,9 +278615,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -263405,6 +278644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263420,12 +278661,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1d444" }, { @@ -263453,6 +278695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263478,12 +278722,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -263510,6 +278755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263525,12 +278772,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "782c67" }, { @@ -263558,6 +278806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263573,12 +278823,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "812b0a" }, { @@ -263606,6 +278857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263621,12 +278874,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "034daf" }, { @@ -263654,6 +278908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263669,12 +278925,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0dc0c4" }, { @@ -263702,6 +278959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263717,12 +278976,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b9f0e" }, { @@ -263750,6 +279010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263765,12 +279027,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d132d8" }, { @@ -263798,6 +279061,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263813,12 +279078,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08afce" }, { @@ -263846,6 +279112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263861,12 +279129,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c0d8e" }, { @@ -263894,6 +279163,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263909,12 +279180,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "380a26" } ], @@ -263945,6 +279217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -263969,12 +279243,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -264001,6 +279276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264016,12 +279293,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88a411" }, { @@ -264049,6 +279327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264064,12 +279344,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f1d51" }, { @@ -264097,6 +279378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264112,12 +279395,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c865af" }, { @@ -264145,6 +279429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264160,12 +279446,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3844f2" }, { @@ -264193,6 +279480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264208,12 +279497,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe525f" }, { @@ -264241,6 +279531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264256,12 +279548,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59b24d" }, { @@ -264289,6 +279582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264304,12 +279599,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed037b" }, { @@ -264337,6 +279633,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264352,12 +279650,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "380a26" } ], @@ -264388,6 +279687,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264403,12 +279704,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13188c" }, { @@ -264436,6 +279738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264457,12 +279761,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -264489,6 +279794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264504,12 +279811,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95f3d0" }, { @@ -264537,6 +279845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264552,12 +279862,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c86ac4" }, { @@ -264585,6 +279896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264600,12 +279913,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c48ac4" }, { @@ -264633,6 +279947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264648,12 +279964,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c11c1" }, { @@ -264681,6 +279998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264696,12 +280015,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "004aa1" } ], @@ -264732,6 +280052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264747,12 +280069,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4afdfb" } ], @@ -264796,6 +280119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264832,12 +280157,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -264864,6 +280190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264879,12 +280207,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ca59b" }, { @@ -264912,6 +280241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264927,12 +280258,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "380a26" }, { @@ -264960,6 +280292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -264975,12 +280309,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77b5a8" }, { @@ -265008,6 +280343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265023,12 +280360,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "380a26" }, { @@ -265056,6 +280394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265071,12 +280411,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0dfd8" }, { @@ -265104,6 +280445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265119,12 +280462,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "380a26" }, { @@ -265152,6 +280496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265167,12 +280513,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "636f6e" }, { @@ -265200,6 +280547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265215,12 +280564,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "380a26" }, { @@ -265248,6 +280598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265263,12 +280615,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9be74" }, { @@ -265296,6 +280649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265311,12 +280666,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "380a26" }, { @@ -265344,6 +280700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265359,12 +280717,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d82a49" }, { @@ -265392,6 +280751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265407,12 +280768,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "380a26" }, { @@ -265440,6 +280802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265455,12 +280819,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ee41" }, { @@ -265488,6 +280853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265503,12 +280870,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "380a26" }, { @@ -265536,6 +280904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265551,12 +280921,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "277af9" }, { @@ -265584,6 +280955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265599,12 +280972,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "380a26" }, { @@ -265632,6 +281006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265647,12 +281023,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "609b0f" }, { @@ -265680,6 +281057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265695,12 +281074,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83aa3c" }, { @@ -265728,6 +281108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265743,12 +281125,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd24c4" }, { @@ -265776,6 +281159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265791,12 +281176,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da630e" } ], @@ -265827,6 +281213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265847,12 +281235,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -265879,6 +281268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265894,12 +281285,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "837394" }, { @@ -265927,6 +281319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265942,12 +281336,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "032c64" }, { @@ -265975,6 +281370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -265990,12 +281387,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1dbd7" }, { @@ -266023,6 +281421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266038,12 +281438,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5aa059" } ], @@ -266074,6 +281475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266094,12 +281497,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -266126,6 +281530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266141,12 +281547,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea88ed" }, { @@ -266174,6 +281581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266189,12 +281598,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d70b5e" }, { @@ -266222,6 +281632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266237,12 +281649,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5aa059" }, { @@ -266270,6 +281683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266285,12 +281700,13 @@ "NumWidth": 3, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4875f4" } ], @@ -266321,6 +281737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266336,12 +281754,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4339b6" }, { @@ -266369,6 +281788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266377,9 +281798,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n--- position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0516fb\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":359.991,\"z\":359.9201}},\"0b9a16\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}},\"136552\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9908,\"z\":359.9201}},\"3d2703\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}},\"63a979\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.602,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":359.9913,\"z\":359.9201}},\"766811\":{\"lock\":false,\"pos\":{\"x\":-23.6767,\"y\":1.6817,\"z\":-15.2801},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}},\"7a48d8\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":359.9906,\"z\":359.92}},\"95ae75\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0022,\"z\":0.0169}},\"9a3e53\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6726,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}},\"a76b5b\":{\"lock\":false,\"pos\":{\"x\":-20.3998,\"y\":1.6055,\"z\":-15.0719},\"rot\":{\"x\":359.92,\"y\":270.4527,\"z\":0.0163}},\"b1252d\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}},\"b76ce7\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":359.9908,\"z\":359.9201}},\"bc2d31\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}},\"c1e108\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}},\"c66ac0\":{\"lock\":false,\"pos\":{\"x\":-26.5181,\"y\":1.6196,\"z\":3.8153},\"rot\":{\"x\":0.0443,\"y\":44.7926,\"z\":359.9314}},\"cf5168\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9909,\"z\":359.9201}},\"d7f943\":{\"lock\":false,\"pos\":{\"x\":-20.3723,\"y\":1.6099,\"z\":0.1376},\"rot\":{\"x\":359.9201,\"y\":270.0007,\"z\":0.0169}},\"dea3d0\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":359.9911,\"z\":359.9201}},\"e56d08\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -266406,6 +281827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266421,12 +281844,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d2703" }, { @@ -266454,6 +281878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266472,9 +281898,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a48d8", "States": { "2": { @@ -266502,6 +281928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266520,9 +281948,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -266550,6 +281978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266568,9 +281998,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -266600,6 +282030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266615,12 +282047,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1252d" }, { @@ -266648,6 +282081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266666,9 +282101,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63a979", "States": { "2": { @@ -266696,6 +282131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266714,9 +282151,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -266744,6 +282181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266762,9 +282201,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -266794,6 +282233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266809,12 +282250,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a3e53" }, { @@ -266842,6 +282284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266860,9 +282304,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a76b5b", "States": { "2": { @@ -266890,6 +282334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266908,9 +282354,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -266938,6 +282384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -266956,9 +282404,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -266988,6 +282436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267003,12 +282453,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "766811" }, { @@ -267036,6 +282487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267054,9 +282507,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b76ce7", "States": { "2": { @@ -267084,6 +282537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267102,9 +282557,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -267132,6 +282587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267150,9 +282607,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -267182,6 +282639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267197,12 +282656,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc2d31" }, { @@ -267230,6 +282690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267248,9 +282710,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dea3d0", "States": { "2": { @@ -267278,6 +282740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267296,9 +282760,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -267326,6 +282790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267344,9 +282810,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -267376,6 +282842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267391,12 +282859,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e56d08" }, { @@ -267424,6 +282893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267442,9 +282913,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7f943", "States": { "2": { @@ -267472,6 +282943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267490,9 +282963,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -267520,6 +282993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267538,9 +283013,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -267570,6 +283045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267588,9 +283065,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf5168", "States": { "2": { @@ -267618,6 +283095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267636,9 +283115,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -267666,6 +283145,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267684,9 +283165,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -267716,6 +283197,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267731,12 +283214,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1e108" }, { @@ -267764,6 +283248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267782,9 +283268,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c66ac0", "States": { "2": { @@ -267812,6 +283298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267830,9 +283318,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -267860,6 +283348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267878,9 +283368,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -267910,6 +283400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267928,9 +283420,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "136552", "States": { "2": { @@ -267958,6 +283450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -267976,9 +283470,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -268006,6 +283500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268024,9 +283520,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -268056,6 +283552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268071,12 +283569,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b9a16" }, { @@ -268104,6 +283603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268122,9 +283623,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0516fb", "States": { "2": { @@ -268152,6 +283653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268170,9 +283673,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -268200,6 +283703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268218,9 +283723,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -268250,6 +283755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268265,12 +283772,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95ae75" } ], @@ -268301,6 +283809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268319,9 +283829,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68e1d9" }, { @@ -268349,6 +283859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268367,9 +283879,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b0f48" }, { @@ -268397,6 +283909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268415,9 +283929,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be5d2b" }, { @@ -268445,6 +283959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268463,9 +283979,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4736d9" }, { @@ -268493,6 +284009,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268508,12 +284026,13 @@ "NumWidth": 8, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf0eaa" }, { @@ -268541,6 +284060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268556,12 +284077,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f4093" }, { @@ -268589,6 +284111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268607,9 +284131,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f2b3d", "States": { "2": { @@ -268637,6 +284161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268655,9 +284181,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -268685,6 +284211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268703,9 +284231,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -268735,6 +284263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268753,9 +284283,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -268783,6 +284313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268801,9 +284333,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -268831,6 +284363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268849,9 +284383,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -268881,6 +284415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268896,12 +284432,13 @@ "NumWidth": 6, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5a4bf" }, { @@ -268929,6 +284466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -268947,9 +284486,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Consternation'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbb70a" } ], @@ -269000,6 +284539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269018,9 +284559,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"058b91\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"21c977\":{\"lock\":false,\"pos\":{\"x\":-21.0584,\"y\":1.6119,\"z\":3.505},\"rot\":{\"x\":359.9554,\"y\":225,\"z\":0.0684}},\"222582\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"23d608\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6535,\"z\":-5.0486},\"rot\":{\"x\":359.9197,\"y\":269.9854,\"z\":0.0169}},\"2ab9ac\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9964,\"z\":180.0169}},\"2e887e\":{\"lock\":false,\"pos\":{\"x\":-3.9083,\"y\":1.5825,\"z\":-15.1234},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"407732\":{\"lock\":false,\"pos\":{\"x\":-9.7271,\"y\":1.6676,\"z\":-0.255},\"rot\":{\"x\":359.9201,\"y\":269.9876,\"z\":0.0169}},\"4c7aff\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.6584,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":0.0687}},\"61b186\":{\"lock\":false,\"pos\":{\"x\":-11.155,\"y\":1.6791,\"z\":7.1548},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":180.0169}},\"6dca3e\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6551,\"z\":0.3736},\"rot\":{\"x\":359.9197,\"y\":269.9846,\"z\":0.0169}},\"6f54e2\":{\"lock\":false,\"pos\":{\"x\":-11.3147,\"y\":1.6797,\"z\":13.0979},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":359.9919,\"z\":359.92}},\"770eca\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.0169}},\"80fb47\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":180.0169}},\"a1b852\":{\"lock\":false,\"pos\":{\"x\":-11.2981,\"y\":1.7087,\"z\":10.3332},\"rot\":{\"x\":359.9201,\"y\":269.9856,\"z\":180.0169}},\"ab51fa\":{\"lock\":false,\"pos\":{\"x\":-20.3744,\"y\":1.6099,\"z\":0.0842},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"b83079\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7184,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":180.0168}},\"bfb121\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9953,\"z\":180.0169}},\"c6995b\":{\"lock\":false,\"pos\":{\"x\":-21.6704,\"y\":1.6106,\"z\":-3.7228},\"rot\":{\"x\":359.9316,\"y\":315.0002,\"z\":359.9554}},\"d46b84\":{\"lock\":false,\"pos\":{\"x\":-11.4019,\"y\":1.6887,\"z\":15.8439},\"rot\":{\"x\":359.9274,\"y\":269.9868,\"z\":180.3533}},\"eb22de\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9921,\"z\":359.9201}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -269047,6 +284588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269076,7 +284619,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3": { "FaceURL": "https://i.imgur.com/qwErffy.jpg/", @@ -269084,12 +284628,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -269116,6 +284661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269130,12 +284677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "243cdf" }, { @@ -269163,6 +284711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269177,12 +284727,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83a4c9" }, { @@ -269210,6 +284761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269224,12 +284777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "306e4a" }, { @@ -269257,6 +284811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269271,12 +284827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a8d1d" }, { @@ -269304,6 +284861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269318,12 +284877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -269351,6 +284911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269365,12 +284927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65866c" }, { @@ -269398,6 +284961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269412,12 +284977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed369b" }, { @@ -269445,6 +285011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269459,12 +285027,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e2a23" }, { @@ -269492,6 +285061,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269506,12 +285077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b0bb4" }, { @@ -269539,6 +285111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269553,12 +285127,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca1149" }, { @@ -269586,6 +285161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269600,12 +285177,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d22d25" }, { @@ -269633,6 +285211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269647,12 +285227,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7230c" }, { @@ -269680,6 +285261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269694,12 +285277,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" } ], @@ -269730,6 +285314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269766,12 +285352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -269798,6 +285385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269812,12 +285401,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -269845,6 +285435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269859,12 +285451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -269892,6 +285485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269906,12 +285501,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -269939,6 +285535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -269953,12 +285551,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e599" }, { @@ -269986,6 +285585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270000,12 +285601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -270033,6 +285635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270047,12 +285651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -270080,6 +285685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270094,12 +285701,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -270127,6 +285735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270141,12 +285751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -270174,6 +285785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270188,12 +285801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -270221,6 +285835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270235,12 +285851,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73438d" }, { @@ -270268,6 +285885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270282,12 +285901,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -270315,6 +285935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270329,12 +285951,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "522290" }, { @@ -270362,6 +285985,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270376,12 +286001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "366b26" }, { @@ -270409,6 +286035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270423,12 +286051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc154a" }, { @@ -270456,6 +286085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270470,12 +286101,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "656cd7" }, { @@ -270503,6 +286135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270517,12 +286151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e70c5" }, { @@ -270550,6 +286185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270564,12 +286201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfbfe3" }, { @@ -270597,6 +286235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270611,12 +286251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea3a6e" }, { @@ -270644,6 +286285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270658,12 +286301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a9df4" }, { @@ -270691,6 +286335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270705,12 +286351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8753b9" } ], @@ -270741,6 +286388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270761,12 +286410,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -270793,6 +286443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270807,12 +286459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d484eb" }, { @@ -270840,6 +286493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270854,12 +286509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "871485" }, { @@ -270887,6 +286543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270901,12 +286559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63101d" }, { @@ -270934,6 +286593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -270948,12 +286609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d484eb" } ], @@ -270984,6 +286646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271004,12 +286668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -271036,6 +286701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271050,12 +286717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d484eb" }, { @@ -271083,6 +286751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271097,12 +286767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "462108" }, { @@ -271130,6 +286801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271144,12 +286817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d484eb" }, { @@ -271177,6 +286851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271191,12 +286867,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d484eb" } ], @@ -271227,6 +286904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271242,12 +286921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "058b91" }, { @@ -271275,6 +286955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271293,9 +286975,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Colour out of Space'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e887e" }, { @@ -271323,6 +287005,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271342,12 +287026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -271374,6 +287059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271388,12 +287075,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "409536" }, { @@ -271421,6 +287109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271435,12 +287125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb4b19" }, { @@ -271468,6 +287159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271482,12 +287175,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cecccc" } ], @@ -271518,6 +287212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271550,12 +287246,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -271582,6 +287279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271596,12 +287295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfe252" }, { @@ -271629,6 +287329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271643,12 +287345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "538fc7" }, { @@ -271676,6 +287379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271690,12 +287395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f47f3" }, { @@ -271723,6 +287429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271737,12 +287445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ab20d" }, { @@ -271770,6 +287479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271784,12 +287495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74171c" }, { @@ -271817,6 +287529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271831,12 +287545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -271864,6 +287579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271878,12 +287595,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c20c4" }, { @@ -271911,6 +287629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271925,12 +287645,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03122e" }, { @@ -271958,6 +287679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -271972,12 +287695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df7969" }, { @@ -272005,6 +287729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272019,12 +287745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fedce9" }, { @@ -272052,6 +287779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272066,12 +287795,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "540ca2" }, { @@ -272099,6 +287829,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272113,12 +287845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55942d" }, { @@ -272146,6 +287879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272160,12 +287895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7bec79" }, { @@ -272193,6 +287929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272207,12 +287945,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da3846" }, { @@ -272240,6 +287979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272254,12 +287995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1372a" }, { @@ -272287,6 +288029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272301,12 +288045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11c6fc" } ], @@ -272337,6 +288082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272358,12 +288105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -272390,6 +288138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272404,12 +288154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -272437,6 +288188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272451,12 +288204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe4c8d" }, { @@ -272484,6 +288238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272498,12 +288254,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -272531,6 +288288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272545,12 +288304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5df9e" }, { @@ -272578,6 +288338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272592,12 +288354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42c8ed" } ], @@ -272628,6 +288391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272649,12 +288414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -272681,6 +288447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272696,12 +288464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "238ded" }, { @@ -272729,6 +288498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272743,12 +288514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f06fe" }, { @@ -272776,6 +288548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272790,12 +288564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4588c0" }, { @@ -272823,6 +288598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272837,12 +288614,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b07795" }, { @@ -272870,6 +288648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272884,12 +288664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "faa3b5" } ], @@ -272920,6 +288701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272942,12 +288725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -272974,6 +288758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -272988,12 +288774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "058b91" }, { @@ -273021,6 +288808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273035,12 +288824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "058b91" }, { @@ -273068,6 +288858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273082,12 +288874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "058b91" }, { @@ -273115,6 +288908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273130,12 +288925,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24191e" }, { @@ -273163,6 +288959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273178,12 +288976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40630f" }, { @@ -273211,6 +289010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273226,12 +289027,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a69086" } ], @@ -273262,6 +289064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273277,12 +289081,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bfb121" }, { @@ -273310,6 +289115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273328,9 +289135,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb22de", "States": { "2": { @@ -273358,6 +289165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273376,9 +289185,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -273406,6 +289215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273424,9 +289235,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -273456,6 +289267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273471,12 +289284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "770eca" }, { @@ -273504,6 +289318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273522,9 +289338,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -273552,6 +289368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273570,9 +289388,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -273600,6 +289418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273618,9 +289438,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -273650,6 +289470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273665,12 +289487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ab9ac" }, { @@ -273698,6 +289521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273716,9 +289541,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21c977", "States": { "2": { @@ -273746,6 +289571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273764,9 +289591,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -273794,6 +289621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273812,9 +289641,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -273844,6 +289673,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273862,9 +289693,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab51fa", "States": { "2": { @@ -273892,6 +289723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273910,9 +289743,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -273940,6 +289773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -273958,9 +289793,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -273990,6 +289825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274008,9 +289845,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6995b", "States": { "2": { @@ -274038,6 +289875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274056,9 +289895,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -274086,6 +289925,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274104,9 +289945,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -274136,6 +289977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274151,12 +289994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80fb47" }, { @@ -274184,6 +290028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274199,12 +290045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "222582" } ], @@ -274255,6 +290102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274273,9 +290122,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"00688d\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"010d85\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7344,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"149deb\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"150603\":{\"lock\":false,\"pos\":{\"x\":-4.4609,\"y\":1.5834,\"z\":-14.7893},\"rot\":{\"x\":359.9197,\"y\":269.9951,\"z\":0.0168}},\"20314c\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"27dc65\":{\"lock\":false,\"pos\":{\"x\":-20.5971,\"y\":1.6123,\"z\":7.2097},\"rot\":{\"x\":359.9201,\"y\":269.993,\"z\":0.0169}},\"368ca7\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":359.9832,\"y\":-0.0001,\"z\":359.9197}},\"45a6ec\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"5e7e07\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6935,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.0272,\"z\":180.0168}},\"643870\":{\"lock\":false,\"pos\":{\"x\":-20.1546,\"y\":1.6096,\"z\":0.0507},\"rot\":{\"x\":359.9201,\"y\":269.9931,\"z\":0.0169}},\"6f9258\":{\"lock\":false,\"pos\":{\"x\":-20.9414,\"y\":1.6117,\"z\":3.308},\"rot\":{\"x\":0.0776,\"y\":120,\"z\":0.0253}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.7421,\"y\":1.6081,\"z\":-7.8073},\"rot\":{\"x\":359.9201,\"y\":269.9929,\"z\":0.0169}},\"8ce0e1\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"8cf84a\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180.0001,\"z\":0.0799}},\"98b377\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9832,\"y\":-0.0021,\"z\":359.9197}},\"abd037\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"c29eac\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"d1bab1\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"f8005d\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"fa8210\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6545,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.9979,\"z\":0.0687}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -274302,6 +290151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274321,7 +290172,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -274329,12 +290181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -274361,6 +290214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274376,12 +290231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "899f2f" }, { @@ -274409,6 +290265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274424,12 +290282,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de24dc" }, { @@ -274457,6 +290316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274472,12 +290333,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "491a2b" } ], @@ -274508,6 +290370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274547,12 +290411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -274579,6 +290444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274592,12 +290459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" }, { @@ -274625,6 +290493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274638,12 +290508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e53b0" }, { @@ -274671,6 +290542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274684,12 +290557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -274717,6 +290591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274730,12 +290606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -274763,6 +290640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274776,12 +290655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -274809,6 +290689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274822,12 +290704,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" }, { @@ -274855,6 +290738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274868,12 +290753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -274901,6 +290787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274914,12 +290802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d60f3b" }, { @@ -274947,6 +290836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -274960,12 +290851,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -274993,6 +290885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275006,12 +290900,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -275039,6 +290934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275052,12 +290949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -275085,6 +290983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275098,12 +290998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -275131,6 +291032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275144,12 +291047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -275177,6 +291081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275190,12 +291096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a65f30" }, { @@ -275223,6 +291130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275236,12 +291145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4218a0" }, { @@ -275269,6 +291179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275282,12 +291194,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -275315,6 +291228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275328,12 +291243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c193f" }, { @@ -275361,6 +291277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275374,12 +291292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a13ae" }, { @@ -275407,6 +291326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275420,12 +291341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -275453,6 +291375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275466,12 +291390,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -275499,6 +291424,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275512,12 +291439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d84de0" }, { @@ -275545,6 +291473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275558,12 +291488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -275591,6 +291522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275604,12 +291537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" } ], @@ -275640,6 +291574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275659,12 +291595,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -275691,6 +291628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275704,12 +291643,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2e26b" }, { @@ -275737,6 +291677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275750,12 +291692,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4b426" }, { @@ -275783,6 +291726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275798,12 +291743,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05412e" } ], @@ -275834,6 +291780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275852,12 +291800,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -275884,6 +291833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275899,12 +291850,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "869a4a" }, { @@ -275932,6 +291884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275947,12 +291901,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0dd0ff" } ], @@ -275983,6 +291938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -275998,12 +291955,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8005d" }, { @@ -276031,6 +291989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276049,9 +292009,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Collector'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "150603" }, { @@ -276079,6 +292039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276094,12 +292056,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45a6ec" }, { @@ -276127,6 +292090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276145,9 +292110,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cf84a", "States": { "2": { @@ -276175,6 +292140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276193,9 +292160,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -276223,6 +292190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276241,9 +292210,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -276273,6 +292242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276288,12 +292259,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "149deb" }, { @@ -276321,6 +292293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276336,12 +292310,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c29eac" }, { @@ -276369,6 +292344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276387,9 +292364,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27dc65", "States": { "2": { @@ -276417,6 +292394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276435,9 +292414,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -276465,6 +292444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276483,9 +292464,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -276515,6 +292496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276530,12 +292513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e7e07" }, { @@ -276563,6 +292547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276581,9 +292567,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f9258", "States": { "2": { @@ -276611,6 +292597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276629,9 +292617,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -276659,6 +292647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276677,9 +292667,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -276709,6 +292699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276727,9 +292719,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "643870", "States": { "2": { @@ -276757,6 +292749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276775,9 +292769,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -276805,6 +292799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276823,9 +292819,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -276855,6 +292851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276873,9 +292871,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -276903,6 +292901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276921,9 +292921,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -276951,6 +292951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -276969,9 +292971,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -277001,6 +293003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277016,12 +293020,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abd037" }, { @@ -277049,6 +293054,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277064,12 +293071,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1bab1" }, { @@ -277097,6 +293105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277115,9 +293125,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20314c", "States": { "2": { @@ -277145,6 +293155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277163,9 +293175,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -277193,6 +293205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277211,9 +293225,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -277243,6 +293257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277258,12 +293274,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ce0e1" }, { @@ -277291,6 +293308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277306,12 +293325,13 @@ "NumWidth": 6, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00688d" } ], @@ -277362,6 +293382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277380,9 +293402,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0d7898\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"2d9794\":{\"lock\":false,\"pos\":{\"x\":-4.7969,\"y\":1.5838,\"z\":-15.0746},\"rot\":{\"x\":359.9197,\"y\":270.0009,\"z\":0.0168}},\"3be6e8\":{\"lock\":false,\"pos\":{\"x\":-10.0797,\"y\":1.674,\"z\":-0.4023},\"rot\":{\"x\":359.9201,\"y\":269.9863,\"z\":0.0169}},\"3dc34f\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9974,\"z\":0.0168}},\"50d3bc\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"5a9b00\":{\"lock\":false,\"pos\":{\"x\":-17.1198,\"y\":1.6754,\"z\":-15.2785},\"rot\":{\"x\":359.9201,\"y\":270.0052,\"z\":180.0169}},\"5d0fdd\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6846,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.005,\"z\":180.0169}},\"6e4a78\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0003,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":359.98,\"z\":359.9201}},\"8ed50d\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6935,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.0014,\"z\":180.0169}},\"8f569e\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.027,\"z\":0.0803}},\"9bcafb\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"a5b019\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.602,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.92}},\"bbb99f\":{\"lock\":false,\"pos\":{\"x\":-20.5275,\"y\":1.6078,\"z\":-7.7916},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"c51bff\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"cd676c\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6623,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":180.0007,\"z\":0.0803}},\"d7eb78\":{\"lock\":false,\"pos\":{\"x\":-19.5006,\"y\":1.612,\"z\":11.2137},\"rot\":{\"x\":0.0685,\"y\":134.9717,\"z\":0.0445}},\"d82996\":{\"lock\":false,\"pos\":{\"x\":-20.2633,\"y\":1.6053,\"z\":-15.0852},\"rot\":{\"x\":0.0799,\"y\":90,\"z\":359.9831}},\"da6072\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6585,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":0.0687}},\"dde586\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7237,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"dfff72\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"e413cc\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6179,\"z\":11.46},\"rot\":{\"x\":359.9832,\"y\":0.0153,\"z\":359.9201}},\"e7b998\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0052,\"z\":180.0169}},\"edb80f\":{\"lock\":false,\"pos\":{\"x\":-20.4959,\"y\":1.61,\"z\":-0.1873},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"f90f84\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.9201}},\"fcfbbe\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "DeckCustom", @@ -277409,6 +293431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277432,12 +293456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -277464,6 +293489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277471,9 +293498,9 @@ "Hands": true, "CardID": 108813, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "3dc34f" }, @@ -277502,6 +293529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277509,9 +293538,9 @@ "Hands": true, "CardID": 108811, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "3dc34f" }, @@ -277540,6 +293569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277554,12 +293585,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3889f2" }, { @@ -277587,6 +293619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277594,9 +293628,9 @@ "Hands": true, "CardID": 108810, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "3dc34f" }, @@ -277625,6 +293659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277632,9 +293668,9 @@ "Hands": true, "CardID": 108816, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "3dc34f" }, @@ -277663,6 +293699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277670,9 +293708,9 @@ "Hands": true, "CardID": 108806, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "3dc34f" }, @@ -277701,6 +293739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277708,9 +293748,9 @@ "Hands": true, "CardID": 108817, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "3dc34f" } @@ -277742,6 +293782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277779,7 +293821,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/", @@ -277787,12 +293830,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -277819,6 +293863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277832,12 +293878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -277865,6 +293912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277878,12 +293927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -277911,6 +293961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277925,12 +293977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -277958,6 +294011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -277971,12 +294026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" }, { @@ -278004,6 +294060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278017,12 +294075,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -278050,6 +294109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278063,12 +294124,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -278096,6 +294158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278110,12 +294174,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11351e" }, { @@ -278143,6 +294208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278157,12 +294224,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" }, { @@ -278190,6 +294258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278203,12 +294273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -278236,6 +294307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278249,12 +294322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -278282,6 +294356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278296,12 +294372,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9db000" }, { @@ -278329,6 +294406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278342,12 +294421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -278375,6 +294455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278388,12 +294470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -278421,6 +294504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278434,12 +294519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -278467,6 +294553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278480,12 +294568,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -278513,6 +294602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278527,12 +294618,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aaf18e" }, { @@ -278560,6 +294652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278574,12 +294668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -278607,6 +294702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278621,12 +294718,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd7179" }, { @@ -278654,6 +294752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278667,12 +294767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -278700,6 +294801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278713,12 +294816,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -278746,6 +294850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278760,12 +294866,13 @@ "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "539c59" } ], @@ -278796,6 +294903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278815,12 +294924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -278847,6 +294957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278862,12 +294974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "380017" }, { @@ -278895,6 +295008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278910,12 +295025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "afc22d" }, { @@ -278943,6 +295059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -278958,12 +295076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa1624" } ], @@ -278994,6 +295113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279012,12 +295133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -279044,6 +295166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279059,12 +295183,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d4179" }, { @@ -279092,6 +295217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279107,12 +295234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f51905" } ], @@ -279143,6 +295271,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279158,12 +295288,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3dc34f" }, { @@ -279191,6 +295322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279209,9 +295342,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Bridge of Sighs'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d9794" }, { @@ -279239,6 +295372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279254,12 +295389,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a9b00" }, { @@ -279287,6 +295423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279305,9 +295443,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5b019", "States": { "2": { @@ -279335,6 +295473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279353,9 +295493,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -279383,6 +295523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279401,9 +295543,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -279433,6 +295575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279448,12 +295592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50d3bc" }, { @@ -279481,6 +295626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279499,9 +295646,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -279529,6 +295676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279547,9 +295696,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -279577,6 +295726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279595,9 +295746,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -279627,6 +295778,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279642,12 +295795,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7b998" }, { @@ -279675,6 +295829,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279693,9 +295849,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e4a78", "States": { "2": { @@ -279723,6 +295879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279741,9 +295899,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -279771,6 +295929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279789,9 +295949,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -279821,6 +295981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279836,12 +295998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c51bff" }, { @@ -279869,6 +296032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279887,9 +296052,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7eb78", "States": { "2": { @@ -279917,6 +296082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279935,9 +296102,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -279965,6 +296132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -279983,9 +296152,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -280015,6 +296184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280033,9 +296204,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e413cc", "States": { "2": { @@ -280063,6 +296234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280081,9 +296254,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -280111,6 +296284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280129,9 +296304,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -280161,6 +296336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280176,12 +296353,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ed50d" }, { @@ -280209,6 +296387,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280227,9 +296407,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcfbbe", "States": { "2": { @@ -280257,6 +296437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280275,9 +296457,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -280305,6 +296487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280323,9 +296507,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -280355,6 +296539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280370,12 +296556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfff72" }, { @@ -280403,6 +296590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280418,12 +296607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bcafb" }, { @@ -280451,6 +296641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280466,12 +296658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d7898" }, { @@ -280499,6 +296692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280514,12 +296709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d0fdd" }, { @@ -280547,6 +296743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280565,9 +296763,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f90f84", "States": { "2": { @@ -280595,6 +296793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280613,9 +296813,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -280643,6 +296843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280661,9 +296863,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -280693,6 +296895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280711,9 +296915,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d82996", "States": { "2": { @@ -280741,6 +296945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280759,9 +296965,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -280789,6 +296995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280807,9 +297015,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -280839,6 +297047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280857,9 +297067,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbb99f", "States": { "2": { @@ -280887,6 +297097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280905,9 +297117,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -280935,6 +297147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -280953,9 +297167,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -280985,6 +297199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281003,9 +297219,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edb80f", "States": { "2": { @@ -281033,6 +297249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281051,9 +297269,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -281081,6 +297299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281099,9 +297319,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -281131,6 +297351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281149,12 +297371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -281181,6 +297404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281196,12 +297421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ea1ce" }, { @@ -281229,6 +297455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281244,12 +297472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79fe62" } ], @@ -281303,6 +297532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281321,9 +297552,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0488ba\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.7004,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"0acbd8\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"0d9dc2\":{\"lock\":false,\"pos\":{\"x\":-20.7379,\"y\":1.6093,\"z\":-3.7735},\"rot\":{\"x\":359.9747,\"y\":209.9999,\"z\":0.0776}},\"0eb577\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7611,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":180.0168}},\"1dd120\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"1e3806\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0096,\"z\":359.92}},\"225690\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"23bbd8\":{\"lock\":false,\"pos\":{\"x\":-27.2865,\"y\":1.6195,\"z\":-0.0152},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"33b200\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":0.0168}},\"479a5a\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.656,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"480533\":{\"lock\":false,\"pos\":{\"x\":-50.9243,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.931,\"z\":180.017}},\"4aaa9f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0095,\"z\":359.92}},\"4eeeb3\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0095,\"z\":359.92}},\"83b781\":{\"lock\":false,\"pos\":{\"x\":-4.3576,\"y\":1.5832,\"z\":-14.9888},\"rot\":{\"x\":359.9197,\"y\":270.0004,\"z\":0.0168}},\"a06ab2\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":180.0169}},\"a08d45\":{\"lock\":false,\"pos\":{\"x\":-26.798,\"y\":1.6211,\"z\":7.6211},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"a1dbf2\":{\"lock\":false,\"pos\":{\"x\":-9.5286,\"y\":1.6602,\"z\":-1.2349},\"rot\":{\"x\":359.9201,\"y\":269.997,\"z\":180.0169}},\"a3dc2f\":{\"lock\":false,\"pos\":{\"x\":-4.4458,\"y\":1.663,\"z\":14.3162},\"rot\":{\"x\":359.9197,\"y\":269.9745,\"z\":180.0169}},\"aa3bc3\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6982,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"acac22\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.6368,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":225,\"z\":0.0687}},\"ade1bd\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6585,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"ae20a4\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6765,\"z\":-11.51},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"b4a135\":{\"lock\":false,\"pos\":{\"x\":-26.9258,\"y\":1.6168,\"z\":-7.7032},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"b7e3ad\":{\"lock\":false,\"pos\":{\"x\":-20.2216,\"y\":1.6119,\"z\":7.3408},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"baff62\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"d33de6\":{\"lock\":false,\"pos\":{\"x\":-20.3424,\"y\":1.6076,\"z\":-7.7619},\"rot\":{\"x\":359.9201,\"y\":270.002,\"z\":0.0169}},\"e1bf6b\":{\"lock\":false,\"pos\":{\"x\":-26.9599,\"y\":1.6203,\"z\":3.9439},\"rot\":{\"x\":359.9316,\"y\":315.0001,\"z\":359.9554}},\"e90dde\":{\"lock\":false,\"pos\":{\"x\":-24.7567,\"y\":1.6149,\"z\":-3.8971},\"rot\":{\"x\":359.9832,\"y\":0.0096,\"z\":359.92}},\"ed48d8\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0096,\"z\":359.92}},\"ee673a\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0096,\"z\":359.92}},\"efe8d6\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"fda256\":{\"lock\":false,\"pos\":{\"x\":-27.7376,\"y\":1.619,\"z\":-4.1724},\"rot\":{\"x\":359.9316,\"y\":315.0002,\"z\":359.9554}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -281350,6 +297581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281374,7 +297607,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3": { "FaceURL": "https://i.imgur.com/mwKLjIs.jpg/", @@ -281382,12 +297616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -281414,6 +297649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281428,12 +297665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfc4" }, { @@ -281461,6 +297699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281475,12 +297715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a291ab" }, { @@ -281508,6 +297749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281522,12 +297765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfc4" }, { @@ -281555,6 +297799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281569,12 +297815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c13b0" }, { @@ -281602,6 +297849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281616,12 +297865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57eb31" }, { @@ -281649,6 +297899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281663,12 +297915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34de21" }, { @@ -281696,6 +297949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281710,12 +297965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4eeeb3" }, { @@ -281743,6 +297999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281757,12 +298015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f52dcc" } ], @@ -281793,6 +298052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281818,12 +298079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -281850,6 +298112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281864,12 +298128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfc4" }, { @@ -281897,6 +298162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281911,12 +298178,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21a5a9" }, { @@ -281944,6 +298212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -281958,12 +298228,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfc4" }, { @@ -281991,6 +298262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282005,12 +298278,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfc4" }, { @@ -282038,6 +298312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282052,12 +298328,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfc4" }, { @@ -282085,6 +298362,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282099,12 +298378,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfc4" }, { @@ -282132,6 +298412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282146,12 +298428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfc4" }, { @@ -282179,6 +298462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282193,12 +298478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfc4" }, { @@ -282226,6 +298512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282240,12 +298528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfc4" } ], @@ -282276,6 +298565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282320,12 +298611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -282352,6 +298644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282359,9 +298653,9 @@ "Hands": true, "CardID": 103, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282390,6 +298684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282397,9 +298693,9 @@ "Hands": true, "CardID": 104, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282428,6 +298724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282435,9 +298733,9 @@ "Hands": true, "CardID": 105, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282466,6 +298764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282473,9 +298773,9 @@ "Hands": true, "CardID": 106, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282504,6 +298804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282511,9 +298813,9 @@ "Hands": true, "CardID": 107, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282542,6 +298844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282549,9 +298853,9 @@ "Hands": true, "CardID": 108, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282580,6 +298884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282587,9 +298893,9 @@ "Hands": true, "CardID": 109, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282618,6 +298924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282625,9 +298933,9 @@ "Hands": true, "CardID": 110, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282656,6 +298964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282663,9 +298973,9 @@ "Hands": true, "CardID": 111, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282694,6 +299004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282701,9 +299013,9 @@ "Hands": true, "CardID": 112, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282732,6 +299044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282739,9 +299053,9 @@ "Hands": true, "CardID": 113, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282770,6 +299084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282777,9 +299093,9 @@ "Hands": true, "CardID": 114, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282808,6 +299124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282815,9 +299133,9 @@ "Hands": true, "CardID": 115, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282846,6 +299164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282853,9 +299173,9 @@ "Hands": true, "CardID": 116, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282884,6 +299204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282891,9 +299213,9 @@ "Hands": true, "CardID": 117, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282922,6 +299244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282929,9 +299253,9 @@ "Hands": true, "CardID": 118, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282960,6 +299284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -282967,9 +299293,9 @@ "Hands": true, "CardID": 119, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -282998,6 +299324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283005,9 +299333,9 @@ "Hands": true, "CardID": 120, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -283036,6 +299364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283043,9 +299373,9 @@ "Hands": true, "CardID": 121, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -283074,6 +299404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283081,9 +299413,9 @@ "Hands": true, "CardID": 122, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -283112,6 +299444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283119,9 +299453,9 @@ "Hands": true, "CardID": 123, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -283150,6 +299484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283157,9 +299493,9 @@ "Hands": true, "CardID": 124, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -283188,6 +299524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283195,9 +299533,9 @@ "Hands": true, "CardID": 125, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -283226,6 +299564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283233,9 +299573,9 @@ "Hands": true, "CardID": 126, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -283264,6 +299604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283271,9 +299613,9 @@ "Hands": true, "CardID": 127, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -283302,6 +299644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283309,9 +299653,9 @@ "Hands": true, "CardID": 128, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -283340,6 +299684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283347,9 +299693,9 @@ "Hands": true, "CardID": 129, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" }, @@ -283378,6 +299724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283385,9 +299733,9 @@ "Hands": true, "CardID": 130, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "14bfc4" } @@ -283419,6 +299767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283440,12 +299790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -283472,6 +299823,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283486,12 +299839,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb89ee" }, { @@ -283519,6 +299873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283533,12 +299889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b9fb9" }, { @@ -283566,6 +299923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283580,12 +299939,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51d460" }, { @@ -283613,6 +299973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283627,12 +299989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58a83e" }, { @@ -283660,6 +300023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283674,12 +300039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16f51e" } ], @@ -283710,6 +300076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283730,12 +300098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -283762,6 +300131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283776,12 +300147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb89ee" }, { @@ -283809,6 +300181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283823,12 +300197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bce43" }, { @@ -283856,6 +300231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283870,12 +300247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc3647" }, { @@ -283903,6 +300281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283917,12 +300297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1fd44" } ], @@ -283953,6 +300334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -283968,12 +300351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ade1bd" }, { @@ -284001,6 +300385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284019,9 +300405,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Blood Spilled in Salem'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "83b781" }, { @@ -284049,6 +300435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284073,12 +300461,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -284105,6 +300494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284120,12 +300511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1100ac" }, { @@ -284153,6 +300545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284168,12 +300562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "854af8" }, { @@ -284201,6 +300596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284216,12 +300613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97bad1" }, { @@ -284249,6 +300647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284264,12 +300664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f48aef" }, { @@ -284297,6 +300698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284312,12 +300715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95e5af" }, { @@ -284345,6 +300749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284360,12 +300766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a442e3" }, { @@ -284393,6 +300800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284408,12 +300817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "773984" }, { @@ -284441,6 +300851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284456,12 +300868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24b017" } ], @@ -284492,6 +300905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284507,12 +300922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "225690" }, { @@ -284540,6 +300956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284558,9 +300976,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee673a", "States": { "2": { @@ -284588,6 +301006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284606,9 +301026,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -284636,6 +301056,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284654,9 +301076,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -284686,6 +301108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284701,12 +301125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4eeeb3" }, { @@ -284734,6 +301159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284752,9 +301179,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -284782,6 +301209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284800,9 +301229,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -284830,6 +301259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284848,9 +301279,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -284880,6 +301311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284895,12 +301328,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "efe8d6" }, { @@ -284928,6 +301362,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284943,12 +301379,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae20a4" }, { @@ -284976,6 +301413,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -284994,9 +301433,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7e3ad", "States": { "2": { @@ -285024,6 +301463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285042,9 +301483,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -285072,6 +301513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285090,9 +301533,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -285122,6 +301565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285140,9 +301585,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d9dc2", "States": { "2": { @@ -285170,6 +301615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285188,9 +301635,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -285218,6 +301665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285236,9 +301685,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -285268,6 +301717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285286,9 +301737,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d33de6", "States": { "2": { @@ -285316,6 +301767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285334,9 +301787,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -285364,6 +301817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285382,9 +301837,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -285414,6 +301869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285429,12 +301886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dd120" }, { @@ -285462,6 +301920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285480,9 +301940,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed48d8", "States": { "2": { @@ -285510,6 +301970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285528,9 +301990,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -285558,6 +302020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285576,9 +302040,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -285608,6 +302072,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285623,12 +302089,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a06ab2" }, { @@ -285656,6 +302123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285674,9 +302143,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90dde", "States": { "2": { @@ -285704,6 +302173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285722,9 +302193,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -285752,6 +302223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285770,9 +302243,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -285802,6 +302275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285817,12 +302292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "baff62" }, { @@ -285850,6 +302326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285868,9 +302346,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a08d45", "States": { "2": { @@ -285898,6 +302376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285916,9 +302396,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -285946,6 +302426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -285964,9 +302446,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -285996,6 +302478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286014,9 +302498,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1bf6b", "States": { "2": { @@ -286044,6 +302528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286062,9 +302548,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -286092,6 +302578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286110,9 +302598,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -286142,6 +302630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286160,9 +302650,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23bbd8", "States": { "2": { @@ -286190,6 +302680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286208,9 +302700,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -286238,6 +302730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286256,9 +302750,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -286288,6 +302782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286306,9 +302802,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fda256", "States": { "2": { @@ -286336,6 +302832,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286354,9 +302852,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -286384,6 +302882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286402,9 +302902,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -286434,6 +302934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286452,9 +302954,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4a135", "States": { "2": { @@ -286482,6 +302984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286500,9 +303004,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -286530,6 +303034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286548,9 +303054,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -286580,6 +303086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286595,12 +303103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0488ba" }, { @@ -286628,6 +303137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286646,9 +303157,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4aaa9f", "States": { "2": { @@ -286676,6 +303187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286694,9 +303207,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -286724,6 +303237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286742,9 +303257,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -286774,6 +303289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286789,12 +303306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3bc3" }, { @@ -286822,6 +303340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286840,9 +303360,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e3806", "States": { "2": { @@ -286870,6 +303390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286888,9 +303410,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -286918,6 +303440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286936,9 +303460,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -286968,6 +303492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -286983,12 +303509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0acbd8" }, { @@ -287016,6 +303543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287031,12 +303560,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "480533" } ], @@ -287087,6 +303617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287115,9 +303647,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"20982e\":{\"lock\":false,\"pos\":{\"x\":8.3104,\"y\":1.2871,\"z\":7.5999},\"rot\":{\"x\":0.08,\"y\":89.9985,\"z\":359.9831}},\"266dcb\":{\"lock\":false,\"pos\":{\"x\":8.1241,\"y\":1.2846,\"z\":-1.7036},\"rot\":{\"x\":0.08,\"y\":89.9962,\"z\":359.9831}},\"3a3b5a\":{\"lock\":false,\"pos\":{\"x\":8.159,\"y\":1.286,\"z\":2.9166},\"rot\":{\"x\":0.08,\"y\":89.9925,\"z\":359.9831}},\"4d6544\":{\"lock\":false,\"pos\":{\"x\":7.9998,\"y\":1.282,\"z\":-11.3677},\"rot\":{\"x\":359.92,\"y\":270.0005,\"z\":0.0169}},\"67d524\":{\"lock\":false,\"pos\":{\"x\":8.0606,\"y\":1.2899,\"z\":15.9247},\"rot\":{\"x\":0.08,\"y\":89.9808,\"z\":359.9831}},\"7521a9\":{\"lock\":false,\"pos\":{\"x\":-3.5895,\"y\":1.5822,\"z\":-14.7357},\"rot\":{\"x\":359.9197,\"y\":270.0013,\"z\":0.0168}},\"84cdaf\":{\"lock\":false,\"pos\":{\"x\":8.0379,\"y\":1.2834,\"z\":-6.2152},\"rot\":{\"x\":0.08,\"y\":89.9981,\"z\":359.9831}},\"90aab1\":{\"lock\":false,\"pos\":{\"x\":8.0656,\"y\":1.2886,\"z\":11.2954},\"rot\":{\"x\":0.08,\"y\":89.983,\"z\":359.9831}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -287144,6 +303676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287152,9 +303686,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"29fbe7\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.6544,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.9999,\"z\":180.0686}},\"3f93f1\":{\"lock\":false,\"pos\":{\"x\":-2.6928,\"y\":1.655,\"z\":-5.0455},\"rot\":{\"x\":359.9197,\"y\":269.9966,\"z\":0.0168}},\"46cc04\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.08}},\"49a311\":{\"lock\":false,\"pos\":{\"x\":-20.482,\"y\":1.6078,\"z\":-7.5592},\"rot\":{\"x\":359.9201,\"y\":269.9865,\"z\":0.0169}},\"4a2a90\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"4bef96\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.5093,\"y\":1.61,\"z\":-0.2279},\"rot\":{\"x\":359.9201,\"y\":269.9434,\"z\":0.017}},\"7d0607\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"8b9011\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"a35da6\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.08}},\"a6b095\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9947,\"z\":0.0168}},\"bf19ca\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"c81219\":{\"lock\":false,\"pos\":{\"x\":-20.1952,\"y\":1.6086,\"z\":-3.4709},\"rot\":{\"x\":359.9747,\"y\":209.9998,\"z\":0.0777}},\"cc90b5\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"cd6909\":{\"lock\":false,\"pos\":{\"x\":-19.992,\"y\":1.6106,\"z\":4.2943},\"rot\":{\"x\":0.0684,\"y\":135.0001,\"z\":0.0445}},\"f6c752\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"f96697\":{\"lock\":false,\"pos\":{\"x\":-23.6767,\"y\":1.6868,\"z\":-7.6999},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"fc1f03\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":180.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -287181,6 +303715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287206,7 +303742,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/", @@ -287214,7 +303751,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/", @@ -287222,12 +303760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -287254,6 +303793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287269,12 +303810,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1fff1" }, { @@ -287302,6 +303844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287317,12 +303861,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89a0c4" }, { @@ -287350,6 +303895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287365,12 +303912,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "560cb8" }, { @@ -287398,6 +303946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287413,12 +303963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -287446,6 +303997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287461,12 +304014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7581c" }, { @@ -287494,6 +304048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287509,12 +304065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa22f" }, { @@ -287542,6 +304099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287557,12 +304116,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92819c" }, { @@ -287590,6 +304150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287605,12 +304167,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f6bc7" }, { @@ -287638,6 +304201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287653,12 +304218,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5df515" } ], @@ -287689,6 +304255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287708,12 +304276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -287740,6 +304309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287755,12 +304326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13f7dc" }, { @@ -287788,6 +304360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287803,12 +304377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7d3ee" }, { @@ -287836,6 +304411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287851,12 +304428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "517d86" } ], @@ -287887,6 +304465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287905,9 +304485,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46cc04", "States": { "2": { @@ -287935,6 +304515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -287953,9 +304535,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -287983,6 +304565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288001,9 +304585,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -288033,6 +304617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288051,9 +304637,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49a311", "States": { "2": { @@ -288081,6 +304667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288099,9 +304687,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -288129,6 +304717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288147,9 +304737,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -288179,6 +304769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288194,12 +304786,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a2a90" }, { @@ -288227,6 +304820,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288242,12 +304837,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bef96" }, { @@ -288275,6 +304871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288293,9 +304891,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -288323,6 +304921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288341,9 +304941,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -288371,6 +304971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288389,9 +304991,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -288421,6 +305023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288436,12 +305040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d0607" }, { @@ -288469,6 +305074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288484,12 +305091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b9011" }, { @@ -288517,6 +305125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288535,9 +305145,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a35da6", "States": { "2": { @@ -288565,6 +305175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288583,9 +305195,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -288613,6 +305225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288631,9 +305245,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -288663,6 +305277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288678,12 +305294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -288711,6 +305328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288726,12 +305345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf19ca" }, { @@ -288759,6 +305379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288777,9 +305399,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c81219", "States": { "2": { @@ -288807,6 +305429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288825,9 +305449,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -288855,6 +305479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288873,9 +305499,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -288905,6 +305531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288920,12 +305548,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc90b5" }, { @@ -288953,6 +305582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -288971,9 +305602,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd6909", "States": { "2": { @@ -289001,6 +305632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289019,9 +305652,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -289049,6 +305682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289067,9 +305702,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -289099,6 +305734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289117,9 +305754,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6c752", "States": { "2": { @@ -289147,6 +305784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289165,9 +305804,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -289195,6 +305834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289213,9 +305854,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -289245,6 +305886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289260,12 +305903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f96697" }, { @@ -289293,6 +305937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289333,7 +305979,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -289341,7 +305988,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2662": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -289349,12 +305997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -289381,6 +306030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289396,12 +306047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ad58f" }, { @@ -289429,6 +306081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289444,12 +306098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f882ec" }, { @@ -289477,6 +306132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289492,12 +306149,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3aec3" }, { @@ -289525,6 +306183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289540,12 +306200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e046a3" }, { @@ -289573,6 +306234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289588,12 +306251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9ceb2" }, { @@ -289621,6 +306285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289634,12 +306300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -289667,6 +306334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289680,12 +306349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -289713,6 +306383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289726,12 +306398,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -289759,6 +306432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289772,12 +306447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -289805,6 +306481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289818,12 +306496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -289851,6 +306530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289864,12 +306545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -289897,6 +306579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289910,12 +306594,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -289943,6 +306628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -289956,12 +306643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" }, { @@ -289989,6 +306677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290002,12 +306692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -290035,6 +306726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290048,12 +306741,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbc9d1" }, { @@ -290081,6 +306775,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290096,12 +306792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -290129,6 +306826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290142,12 +306841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -290175,6 +306875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290188,12 +306890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" }, { @@ -290221,6 +306924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290236,12 +306941,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ba87a" }, { @@ -290269,6 +306975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290284,12 +306992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e34f18" }, { @@ -290317,6 +307026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290332,12 +307043,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dfc4b" }, { @@ -290365,6 +307077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290380,12 +307094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4a1c9" }, { @@ -290413,6 +307128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290428,12 +307145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d79ef" }, { @@ -290461,6 +307179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290476,12 +307196,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d4f83" } ], @@ -290515,6 +307236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290523,9 +307246,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"03a960\":{\"lock\":false,\"pos\":{\"x\":-27.614,\"y\":1.6222,\"z\":7.3071},\"rot\":{\"x\":359.9201,\"y\":270.0771,\"z\":0.0168}},\"096002\":{\"lock\":false,\"pos\":{\"x\":-31.8248,\"y\":1.8429,\"z\":-0.2306},\"rot\":{\"x\":5.1623,\"y\":270.0025,\"z\":180.0302}},\"0ba33d\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"0f3de3\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.6705,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0003,\"z\":180.0168}},\"35c1a1\":{\"lock\":false,\"pos\":{\"x\":-26.8744,\"y\":1.6156,\"z\":-11.4015},\"rot\":{\"x\":359.9554,\"y\":225,\"z\":0.0685}},\"37601c\":{\"lock\":false,\"pos\":{\"x\":-26.8449,\"y\":1.6189,\"z\":-0.073},\"rot\":{\"x\":359.9201,\"y\":270.0302,\"z\":0.0168}},\"380db3\":{\"lock\":false,\"pos\":{\"x\":-31.7346,\"y\":1.8441,\"z\":-7.6662},\"rot\":{\"x\":359.9261,\"y\":270.0001,\"z\":180.0155}},\"3cbafc\":{\"lock\":false,\"pos\":{\"x\":-31.6423,\"y\":1.7427,\"z\":-15.2539},\"rot\":{\"x\":359.9202,\"y\":270.0008,\"z\":180.0169}},\"3db33f\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"419f77\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"5c9eec\":{\"lock\":false,\"pos\":{\"x\":-26.4593,\"y\":1.6162,\"z\":-7.4412},\"rot\":{\"x\":359.9201,\"y\":270.0302,\"z\":0.0168}},\"6e20a1\":{\"lock\":false,\"pos\":{\"x\":-31.6006,\"y\":1.7496,\"z\":7.7325},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":180.0169}},\"6f90fa\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.3852,\"y\":1.6121,\"z\":7.3348},\"rot\":{\"x\":359.9201,\"y\":270.0302,\"z\":0.0169}},\"767b41\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.7663,\"z\":14.2786},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":180.0686}},\"78a09e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"7a9beb\":{\"lock\":false,\"pos\":{\"x\":-2.6737,\"y\":1.6602,\"z\":15.0567},\"rot\":{\"x\":359.9197,\"y\":270.0135,\"z\":0.0168}},\"7bc943\":{\"lock\":false,\"pos\":{\"x\":-50.9243,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"95fb21\":{\"lock\":false,\"pos\":{\"x\":-25.0482,\"y\":1.8391,\"z\":7.0155},\"rot\":{\"x\":359.9214,\"y\":270.0396,\"z\":180.0204}},\"a4f503\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"bf1500\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9178,\"y\":270.0001,\"z\":180.0176}},\"c7455c\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.7004,\"z\":7.57},\"rot\":{\"x\":359.92,\"y\":270.0001,\"z\":180.0169}},\"c7be0d\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"d2adc8\":{\"lock\":false,\"pos\":{\"x\":-11.7322,\"y\":1.6817,\"z\":7.1093},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"d3b37b\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"d6a33e\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":180.0169}},\"d7a166\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"e22a23\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6981,\"z\":-0.03},\"rot\":{\"x\":359.917,\"y\":269.9999,\"z\":180.018}},\"e460f8\":{\"lock\":false,\"pos\":{\"x\":-19.9534,\"y\":1.6071,\"z\":-7.6826},\"rot\":{\"x\":359.9201,\"y\":270.0302,\"z\":0.0168}},\"f5cb30\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9989,\"z\":0.0168}},\"f7581c\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6937,\"z\":-15.28},\"rot\":{\"x\":359.92,\"y\":270.0001,\"z\":180.0169}},\"fce4b3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6912,\"z\":7.5702},\"rot\":{\"x\":359.9185,\"y\":269.9984,\"z\":180.0175}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -290552,6 +307275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290570,9 +307295,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a960", "States": { "2": { @@ -290600,6 +307325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290618,9 +307345,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -290648,6 +307375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290666,9 +307395,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -290698,6 +307427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290713,12 +307444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "096002" }, { @@ -290746,6 +307478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290761,12 +307495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ba33d" }, { @@ -290794,6 +307529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290821,7 +307558,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/", @@ -290829,12 +307567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -290861,6 +307600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290874,12 +307615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" }, { @@ -290907,6 +307649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290920,12 +307664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -290953,6 +307698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -290966,12 +307713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbc9d1" }, { @@ -290999,6 +307747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291014,12 +307764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67ba8e" }, { @@ -291047,6 +307798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291062,12 +307815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "967747" }, { @@ -291095,6 +307849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291110,12 +307866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -291143,6 +307900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291158,12 +307917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -291191,6 +307951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291206,12 +307968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -291239,6 +308002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291254,12 +308019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -291287,6 +308053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291302,12 +308070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -291335,6 +308104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291350,12 +308121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" } ], @@ -291386,6 +308158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291404,9 +308178,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35c1a1", "States": { "2": { @@ -291434,6 +308208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291452,9 +308228,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -291482,6 +308258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291500,9 +308278,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -291532,6 +308310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291550,9 +308330,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37601c", "States": { "2": { @@ -291580,6 +308360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291598,9 +308380,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -291628,6 +308410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291646,9 +308430,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -291678,6 +308462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291693,12 +308479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "380db3" }, { @@ -291726,6 +308513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291741,12 +308530,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cbafc" }, { @@ -291774,6 +308564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291792,9 +308584,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3db33f", "States": { "2": { @@ -291822,6 +308614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291840,9 +308634,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -291870,6 +308664,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291888,9 +308684,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -291920,6 +308716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291938,9 +308736,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "419f77", "States": { "2": { @@ -291968,6 +308766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -291986,9 +308786,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -292016,6 +308816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292034,9 +308836,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -292066,6 +308868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292084,9 +308888,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c9eec", "States": { "2": { @@ -292114,6 +308918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292132,9 +308938,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -292162,6 +308968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292180,9 +308988,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -292212,6 +309020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292227,12 +309037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e20a1" }, { @@ -292260,6 +309071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292275,12 +309088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f90fa" }, { @@ -292308,6 +309122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292326,9 +309142,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -292356,6 +309172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292374,9 +309192,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -292404,6 +309222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292422,9 +309242,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -292454,6 +309274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292500,12 +309322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -292532,6 +309355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292547,12 +309372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59a5b6" }, { @@ -292580,6 +309406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292595,12 +309423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aba734" }, { @@ -292628,6 +309457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292643,12 +309474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "290196" }, { @@ -292676,6 +309508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292691,12 +309525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35b546" }, { @@ -292724,6 +309559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292739,12 +309576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e9e59" }, { @@ -292772,6 +309610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292787,12 +309627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74f7f0" }, { @@ -292820,6 +309661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292835,12 +309678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8898b" }, { @@ -292868,6 +309712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292883,12 +309729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f19fca" }, { @@ -292916,6 +309763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292931,12 +309780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bfd162" }, { @@ -292964,6 +309814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -292979,12 +309831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d6b09" }, { @@ -293012,6 +309865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293027,12 +309882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2e9d8" }, { @@ -293060,6 +309916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293075,12 +309933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e08ba0" }, { @@ -293108,6 +309967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293123,12 +309984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "406991" }, { @@ -293156,6 +310018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293171,12 +310035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "917cda" }, { @@ -293204,6 +310069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293219,12 +310086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cfc42" }, { @@ -293252,6 +310120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293267,12 +310137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e84a81" }, { @@ -293300,6 +310171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293315,12 +310188,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "766b79" }, { @@ -293348,6 +310222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293363,12 +310239,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "815946" }, { @@ -293396,6 +310273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293411,12 +310290,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2244da" }, { @@ -293444,6 +310324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293459,12 +310341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "efbaec" }, { @@ -293492,6 +310375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293507,12 +310392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "782f4e" }, { @@ -293540,6 +310426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293555,12 +310443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "173716" }, { @@ -293588,6 +310477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293603,12 +310494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56fa0c" }, { @@ -293636,6 +310528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293651,12 +310545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -293684,6 +310579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293699,12 +310596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6cf29" }, { @@ -293732,6 +310630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293747,12 +310647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bd27b" }, { @@ -293780,6 +310681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293795,12 +310698,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "795bd8" }, { @@ -293828,6 +310732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293843,12 +310749,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bac473" }, { @@ -293876,6 +310783,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293891,12 +310800,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -293924,6 +310834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293939,12 +310851,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "223e6d" } ], @@ -293975,6 +310888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -293993,9 +310908,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78a09e", "States": { "2": { @@ -294023,6 +310938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294041,9 +310958,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -294071,6 +310988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294089,9 +311008,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -294121,6 +311040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294142,7 +311063,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/", @@ -294150,7 +311072,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/", @@ -294158,12 +311081,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -294190,6 +311114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294205,12 +311131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -294238,6 +311165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294253,12 +311182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "619dea" }, { @@ -294286,6 +311216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294301,12 +311233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7581c" }, { @@ -294334,6 +311267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294349,12 +311284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "560cb8" }, { @@ -294382,6 +311318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294397,12 +311335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4157cd" } ], @@ -294433,6 +311372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294448,12 +311389,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7bc943" }, { @@ -294481,6 +311423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294496,12 +311440,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95fb21" }, { @@ -294529,6 +311474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294547,9 +311494,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4f503", "States": { "2": { @@ -294577,6 +311524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294595,9 +311544,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -294625,6 +311574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294643,9 +311594,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -294675,6 +311626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294690,12 +311643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf1500" }, { @@ -294723,6 +311677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294738,12 +311694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7455c" }, { @@ -294771,6 +311728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294786,12 +311745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7be0d" }, { @@ -294819,6 +311779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294846,12 +311808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -294878,6 +311841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294893,12 +311858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c48d2" }, { @@ -294926,6 +311892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294941,12 +311909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7581c" }, { @@ -294974,6 +311943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -294989,12 +311960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7581c" }, { @@ -295022,6 +311994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295037,12 +312011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7581c" }, { @@ -295070,6 +312045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295085,12 +312062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67d03e" }, { @@ -295118,6 +312096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295133,12 +312113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af9a5e" }, { @@ -295166,6 +312147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295181,12 +312164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7581c" }, { @@ -295214,6 +312198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295229,12 +312215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c961f" }, { @@ -295262,6 +312249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295277,12 +312266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7581c" }, { @@ -295310,6 +312300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295325,12 +312317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e9b7a" }, { @@ -295358,6 +312351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295373,12 +312368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7581c" } ], @@ -295409,6 +312405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295424,12 +312422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3b37b" }, { @@ -295457,6 +312456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295472,12 +312473,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6a33e" }, { @@ -295505,6 +312507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295524,12 +312528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -295556,6 +312561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295571,12 +312578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -295604,6 +312612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295619,12 +312629,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45bf58" }, { @@ -295652,6 +312663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295667,12 +312680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" } ], @@ -295703,6 +312717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295718,12 +312734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e22a23" }, { @@ -295751,6 +312768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295769,9 +312788,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e460f8", "States": { "2": { @@ -295799,6 +312818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295817,9 +312838,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -295847,6 +312868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295865,9 +312888,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -295897,6 +312920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295917,12 +312942,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -295949,6 +312975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -295964,12 +312992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -295997,6 +313026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296012,12 +313043,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "750cba" }, { @@ -296045,6 +313077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296060,12 +313094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -296093,6 +313128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296108,12 +313145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" } ], @@ -296144,6 +313182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296159,12 +313199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7581c" }, { @@ -296192,6 +313233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296207,12 +313250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fce4b3" } ], @@ -296243,6 +313287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296251,9 +313297,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"02ccc9\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.993,\"z\":0.0168}},\"1b6853\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":0.0168}},\"2a17f9\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"6f10f6\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"6fb30e\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.001,\"z\":359.92}},\"7ea46a\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"87e61c\":{\"lock\":false,\"pos\":{\"x\":-26.6201,\"y\":1.6164,\"z\":-7.4558},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"8b474c\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.6614,\"z\":14.2787},\"rot\":{\"x\":359.9552,\"y\":224.9999,\"z\":180.0686}},\"aecab0\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"b97e33\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"bb5609\":{\"lock\":false,\"pos\":{\"x\":-20.5861,\"y\":1.6079,\"z\":-7.8876},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"c4ffff\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0011,\"z\":359.92}},\"dd5f8a\":{\"lock\":false,\"pos\":{\"x\":-3.93,\"y\":1.8144,\"z\":5.773},\"rot\":{\"x\":359.9197,\"y\":269.9971,\"z\":180.0168}},\"ea12d1\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.993,\"z\":0.0168}},\"f7581c\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"f75c42\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0011,\"z\":359.92}},\"fcba41\":{\"lock\":false,\"pos\":{\"x\":-20.9966,\"y\":1.6118,\"z\":3.6071},\"rot\":{\"x\":359.9747,\"y\":209.9999,\"z\":0.0777}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -296280,6 +313326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296299,12 +313347,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -296331,6 +313380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296346,12 +313397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -296379,6 +313431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296394,12 +313448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41a9cc" }, { @@ -296427,6 +313482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296442,12 +313499,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" } ], @@ -296478,6 +313536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296493,12 +313553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b6853" }, { @@ -296526,6 +313587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296541,12 +313604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a17f9" }, { @@ -296574,6 +313638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296589,12 +313655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f10f6" }, { @@ -296622,6 +313689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296637,12 +313706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fb30e" }, { @@ -296670,6 +313740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296688,9 +313760,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -296718,6 +313790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296736,9 +313810,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -296766,6 +313840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296784,9 +313860,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -296816,6 +313892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296831,12 +313909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ea46a" }, { @@ -296864,6 +313943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296882,9 +313963,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87e61c", "States": { "2": { @@ -296912,6 +313993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296930,9 +314013,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -296960,6 +314043,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -296978,9 +314063,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -297010,6 +314095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297030,7 +314117,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/", @@ -297038,7 +314126,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/", @@ -297046,12 +314135,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -297078,6 +314168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297093,12 +314185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "560cb8" }, { @@ -297126,6 +314219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297141,12 +314236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -297174,6 +314270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297189,12 +314287,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65948b" }, { @@ -297222,6 +314321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297237,12 +314338,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ead3f" } ], @@ -297273,6 +314375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297288,12 +314392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aecab0" }, { @@ -297321,6 +314426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297336,12 +314443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b97e33" }, { @@ -297369,6 +314477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297387,9 +314497,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb5609", "States": { "2": { @@ -297417,6 +314527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297435,9 +314547,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -297465,6 +314577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297483,9 +314597,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -297515,6 +314629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297533,9 +314649,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ffff", "States": { "2": { @@ -297563,6 +314679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297581,9 +314699,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -297611,6 +314729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297629,9 +314749,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -297661,6 +314781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297715,7 +314837,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2662": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -297723,7 +314846,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -297731,12 +314855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -297763,6 +314888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297778,12 +314905,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "479ec9" }, { @@ -297811,6 +314939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297826,12 +314956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b6aef" }, { @@ -297859,6 +314990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297874,12 +315007,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d50d6" }, { @@ -297907,6 +315041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297920,12 +315056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -297953,6 +315090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -297968,12 +315107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "795bd8" }, { @@ -298001,6 +315141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298016,12 +315158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bac473" }, { @@ -298049,6 +315192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298062,12 +315207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -298095,6 +315241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298108,12 +315256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -298141,6 +315290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298156,12 +315307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18032f" }, { @@ -298189,6 +315341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298204,12 +315358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e34f18" }, { @@ -298237,6 +315392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298250,12 +315407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -298283,6 +315441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298298,12 +315458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d79ef" }, { @@ -298331,6 +315492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298346,12 +315509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -298379,6 +315543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298394,12 +315560,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db7442" }, { @@ -298427,6 +315594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298440,12 +315609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -298473,6 +315643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298488,12 +315660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "501c44" }, { @@ -298521,6 +315694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298536,12 +315711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9ceb2" }, { @@ -298569,6 +315745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298584,12 +315762,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f882ec" }, { @@ -298617,6 +315796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298632,12 +315813,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ad58f" }, { @@ -298665,6 +315847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298680,12 +315864,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bd27b" }, { @@ -298713,6 +315898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298728,12 +315915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dcbb5" }, { @@ -298761,6 +315949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298776,12 +315966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45a733" }, { @@ -298809,6 +316000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298824,12 +316017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6cf29" }, { @@ -298857,6 +316051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298872,12 +316068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24dee4" }, { @@ -298905,6 +316102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298920,12 +316119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -298953,6 +316153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -298968,12 +316170,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3aec3" }, { @@ -299001,6 +316204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299016,12 +316221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f9a82" }, { @@ -299049,6 +316255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299062,12 +316270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbc9d1" }, { @@ -299095,6 +316304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299110,12 +316321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a44f5" }, { @@ -299143,6 +316355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299158,12 +316372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -299191,6 +316406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299204,12 +316421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -299237,6 +316455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299250,12 +316470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" }, { @@ -299283,6 +316504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299296,12 +316519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -299329,6 +316553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299344,12 +316570,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "223e6d" }, { @@ -299377,6 +316604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299392,12 +316621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e046a3" }, { @@ -299425,6 +316655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299440,12 +316672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4a1c9" }, { @@ -299473,6 +316706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299486,12 +316721,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -299519,6 +316755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299534,12 +316772,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9990c8" } ], @@ -299570,6 +316809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299589,12 +316830,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -299621,6 +316863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299636,12 +316880,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -299669,6 +316914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299684,12 +316931,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48616b" }, { @@ -299717,6 +316965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299732,12 +316982,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" } ], @@ -299768,6 +317019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299783,12 +317036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7581c" }, { @@ -299816,6 +317070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299834,9 +317090,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f75c42", "States": { "2": { @@ -299864,6 +317120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299882,9 +317140,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -299912,6 +317170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299930,9 +317190,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -299962,6 +317222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -299980,9 +317242,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcba41", "States": { "2": { @@ -300010,6 +317272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300028,9 +317292,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -300058,6 +317322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300076,9 +317342,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -300111,6 +317377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300119,9 +317387,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"1e19b2\":{\"lock\":false,\"pos\":{\"x\":-2.6892,\"y\":1.655,\"z\":-5.0406},\"rot\":{\"x\":359.9197,\"y\":270.0391,\"z\":0.0168}},\"2ffc66\":{\"lock\":false,\"pos\":{\"x\":-23.6767,\"y\":1.6846,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"4f2ee1\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6835,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"6bf301\":{\"lock\":false,\"pos\":{\"x\":-3.9585,\"y\":1.6556,\"z\":-10.4497},\"rot\":{\"x\":359.9197,\"y\":270.0502,\"z\":0.0168}},\"704b7d\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3735},\"rot\":{\"x\":359.9197,\"y\":270.0194,\"z\":0.0168}},\"91259f\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6931,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9974,\"z\":180.0169}},\"a46fae\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0502,\"z\":0.0168}},\"cba1b5\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.6651,\"z\":14.2787},\"rot\":{\"x\":359.9552,\"y\":224.9999,\"z\":180.0686}},\"ee15fa\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7664,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":180.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -300148,6 +317416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300167,12 +317437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -300199,6 +317470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300214,12 +317487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -300247,6 +317521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300262,12 +317538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7eb6c" }, { @@ -300295,6 +317572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300310,12 +317589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" } ], @@ -300346,6 +317626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300361,12 +317643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ffc66" }, { @@ -300394,6 +317677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300414,12 +317699,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -300446,6 +317732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300461,12 +317749,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4110f7" }, { @@ -300494,6 +317783,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300509,12 +317800,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2cead8" }, { @@ -300542,6 +317834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300557,12 +317851,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3017e" }, { @@ -300590,6 +317885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300605,12 +317902,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7581c" } ], @@ -300641,6 +317939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300656,12 +317956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bf301" }, { @@ -300689,6 +317990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300708,12 +318011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -300740,6 +318044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300755,12 +318061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -300788,6 +318095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300803,12 +318112,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "847e46" }, { @@ -300836,6 +318146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300851,12 +318163,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" } ], @@ -300887,6 +318200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300906,12 +318221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -300938,6 +318254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -300953,12 +318271,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63505d" }, { @@ -300986,6 +318305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301001,12 +318322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1538e8" }, { @@ -301034,6 +318356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301049,12 +318373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ac1fe" } ], @@ -301085,6 +318410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301100,12 +318427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a46fae" }, { @@ -301133,6 +318461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301160,7 +318490,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/", @@ -301168,7 +318499,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2662": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -301176,12 +318508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -301208,6 +318541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301223,12 +318558,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "560cb8" }, { @@ -301256,6 +318592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301271,12 +318609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c068e1" }, { @@ -301304,6 +318643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301319,12 +318660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "560cb8" }, { @@ -301352,6 +318694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301367,12 +318711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "560cb8" }, { @@ -301400,6 +318745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301415,12 +318762,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -301448,6 +318796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301463,12 +318813,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "846c53" }, { @@ -301496,6 +318847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301511,12 +318864,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d79ef" }, { @@ -301544,6 +318898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301559,12 +318915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4a1c9" }, { @@ -301592,6 +318949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301607,12 +318966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "764e4e" }, { @@ -301640,6 +319000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301655,12 +319017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e34f18" }, { @@ -301688,6 +319051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301703,12 +319068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e37e63" } ], @@ -301739,6 +319105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301784,7 +319152,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2669": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -301792,7 +319161,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2676": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/", @@ -301800,12 +319170,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -301832,6 +319203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301847,12 +319220,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bd27b" }, { @@ -301880,6 +319254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301895,12 +319271,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51e989" }, { @@ -301928,6 +319305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301943,12 +319322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e469b2" }, { @@ -301976,6 +319356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -301991,12 +319373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab88d6" }, { @@ -302024,6 +319407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302039,12 +319424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92e9e6" }, { @@ -302072,6 +319458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302087,12 +319475,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "806202" }, { @@ -302120,6 +319509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302135,12 +319526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c92694" }, { @@ -302168,6 +319560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302183,12 +319577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ffe9d" }, { @@ -302216,6 +319611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302231,12 +319628,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8cabf" }, { @@ -302264,6 +319662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302279,12 +319679,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7d796" }, { @@ -302312,6 +319713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302327,12 +319730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b3628" }, { @@ -302360,6 +319764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302375,12 +319781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7478da" }, { @@ -302408,6 +319815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302423,12 +319832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "410fd7" }, { @@ -302456,6 +319866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302471,12 +319883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9408a1" }, { @@ -302504,6 +319917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302519,12 +319934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "795bd8" }, { @@ -302552,6 +319968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302567,12 +319985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98c40f" }, { @@ -302600,6 +320019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302615,12 +320036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d74d1" }, { @@ -302648,6 +320070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302663,12 +320087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ada190" }, { @@ -302696,6 +320121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302711,12 +320138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a900b" }, { @@ -302744,6 +320172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302759,12 +320189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec982f" }, { @@ -302792,6 +320223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302807,12 +320240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b840f" }, { @@ -302840,6 +320274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302855,12 +320291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "891dd6" }, { @@ -302888,6 +320325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302903,12 +320342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "223e6d" }, { @@ -302936,6 +320376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302951,12 +320393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bac473" }, { @@ -302984,6 +320427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -302999,12 +320444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6cf29" }, { @@ -303032,6 +320478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303047,12 +320495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -303080,6 +320529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303095,12 +320546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -303128,6 +320580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303143,12 +320597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "730bb5" }, { @@ -303176,6 +320631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303191,12 +320648,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e6fb1" } ], @@ -303230,6 +320688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303238,9 +320698,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"033f48\":{\"lock\":false,\"pos\":{\"x\":-3.9374,\"y\":1.7238,\"z\":5.7636},\"rot\":{\"x\":359.9198,\"y\":269.8966,\"z\":180.017}},\"040771\":{\"lock\":false,\"pos\":{\"x\":1.6845,\"y\":1.7504,\"z\":14.2929},\"rot\":{\"x\":359.9551,\"y\":225.009,\"z\":180.0686}},\"0f956f\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.602,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9916,\"z\":0.08}},\"331358\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9838,\"z\":180.0169}},\"34fcda\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6754,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.0149,\"z\":180.0168}},\"35e962\":{\"lock\":false,\"pos\":{\"x\":-11.5119,\"y\":1.6657,\"z\":7.9554},\"rot\":{\"x\":359.9201,\"y\":270.0151,\"z\":180.0168}},\"4bc608\":{\"lock\":false,\"pos\":{\"x\":-2.729,\"y\":1.6551,\"z\":0.3688},\"rot\":{\"x\":359.9198,\"y\":269.9243,\"z\":0.0169}},\"638bd0\":{\"lock\":false,\"pos\":{\"x\":-2.696,\"y\":1.655,\"z\":-5.0398},\"rot\":{\"x\":359.9197,\"y\":270.0367,\"z\":0.0168}},\"681d42\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0149,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9917,\"z\":0.08}},\"dfe2ba\":{\"lock\":false,\"pos\":{\"x\":-11.7508,\"y\":1.6724,\"z\":11.1724},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"e62de4\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0149,\"z\":180.0168}},\"f7581c\":{\"lock\":false,\"pos\":{\"x\":-3.9631,\"y\":1.6585,\"z\":-10.4426},\"rot\":{\"x\":359.9197,\"y\":269.9838,\"z\":180.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -303267,6 +320727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303304,7 +320766,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -303312,12 +320775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -303344,6 +320808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303359,12 +320825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ad58f" }, { @@ -303392,6 +320859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303407,12 +320876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f882ec" }, { @@ -303440,6 +320910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303455,12 +320927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3aec3" }, { @@ -303488,6 +320961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303503,12 +320978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e046a3" }, { @@ -303536,6 +321012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303551,12 +321029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9ceb2" }, { @@ -303584,6 +321063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303599,12 +321080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -303632,6 +321114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303647,12 +321131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6cf29" }, { @@ -303680,6 +321165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303695,12 +321182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bd27b" }, { @@ -303728,6 +321216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303743,12 +321233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "795bd8" }, { @@ -303776,6 +321267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303791,12 +321284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bac473" }, { @@ -303824,6 +321318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303839,12 +321335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -303872,6 +321369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303887,12 +321386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "223e6d" }, { @@ -303920,6 +321420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303933,12 +321435,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b7b" }, { @@ -303966,6 +321469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -303979,12 +321484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df668b" }, { @@ -304012,6 +321518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304025,12 +321533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" }, { @@ -304058,6 +321567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304071,12 +321582,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -304104,6 +321616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304117,12 +321631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -304150,6 +321665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304163,12 +321680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -304196,6 +321714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304209,12 +321729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" }, { @@ -304242,6 +321763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304255,12 +321778,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -304288,6 +321812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304301,12 +321827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbc9d1" } ], @@ -304337,6 +321864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304380,12 +321909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -304412,6 +321942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304427,12 +321959,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "147d52" }, { @@ -304460,6 +321993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304475,12 +322010,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c79ebf" }, { @@ -304508,6 +322044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304523,12 +322061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c318a" }, { @@ -304556,6 +322095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304571,12 +322112,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -304604,6 +322146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304619,12 +322163,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59a5b6" }, { @@ -304652,6 +322197,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304667,12 +322214,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aba734" }, { @@ -304700,6 +322248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304715,12 +322265,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "290196" }, { @@ -304748,6 +322299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304763,12 +322316,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35b546" }, { @@ -304796,6 +322350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304811,12 +322367,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e9e59" }, { @@ -304844,6 +322401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304859,12 +322418,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74f7f0" }, { @@ -304892,6 +322452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304907,12 +322469,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8898b" }, { @@ -304940,6 +322503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -304955,12 +322520,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f19fca" }, { @@ -304988,6 +322554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305003,12 +322571,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bfd162" }, { @@ -305036,6 +322605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305051,12 +322622,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d6b09" }, { @@ -305084,6 +322656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305099,12 +322673,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2e9d8" }, { @@ -305132,6 +322707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305147,12 +322724,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e08ba0" }, { @@ -305180,6 +322758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305195,12 +322775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "406991" }, { @@ -305228,6 +322809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305243,12 +322826,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "917cda" }, { @@ -305276,6 +322860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305291,12 +322877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cfc42" }, { @@ -305324,6 +322911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305339,12 +322928,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e84a81" }, { @@ -305372,6 +322962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305387,12 +322979,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "766b79" }, { @@ -305420,6 +323013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305435,12 +323030,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "815946" }, { @@ -305468,6 +323064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305483,12 +323081,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2244da" }, { @@ -305516,6 +323115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305531,12 +323132,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "efbaec" }, { @@ -305564,6 +323166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305579,12 +323183,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "782f4e" }, { @@ -305612,6 +323217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305627,12 +323234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "173716" }, { @@ -305660,6 +323268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305675,12 +323285,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56fa0c" } ], @@ -305711,6 +323322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305729,9 +323342,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f956f", "States": { "2": { @@ -305759,6 +323372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305777,9 +323392,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -305807,6 +323422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305825,9 +323442,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -305857,6 +323474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305872,12 +323491,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "331358" }, { @@ -305905,6 +323525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305920,12 +323542,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34fcda" }, { @@ -305953,6 +323576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -305977,7 +323602,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/", @@ -305985,12 +323611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -306017,6 +323644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306032,12 +323661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e8d0d" }, { @@ -306065,6 +323695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306080,12 +323712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c3be1" }, { @@ -306113,6 +323746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306128,12 +323763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19ef09" }, { @@ -306161,6 +323797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306176,12 +323814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cd1e0" }, { @@ -306209,6 +323848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306216,9 +323857,9 @@ "Hands": true, "CardID": 164, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "f7581c" }, @@ -306247,6 +323888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306254,9 +323897,9 @@ "Hands": true, "CardID": 165, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "f7581c" }, @@ -306285,6 +323928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306292,9 +323937,9 @@ "Hands": true, "CardID": 166, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "f7581c" }, @@ -306323,6 +323968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306330,9 +323977,9 @@ "Hands": true, "CardID": 167, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "f7581c" } @@ -306364,6 +324011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306384,12 +324033,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -306416,6 +324066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306431,12 +324083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -306464,6 +324117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306479,12 +324134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51bac7" }, { @@ -306512,6 +324168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306527,12 +324185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -306560,6 +324219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306575,12 +324236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" } ], @@ -306611,6 +324273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306630,12 +324294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -306662,6 +324327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306677,12 +324344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -306710,6 +324378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306725,12 +324395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66f1d2" }, { @@ -306758,6 +324429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306773,12 +324446,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" } ], @@ -306809,6 +324483,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306824,12 +324500,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "681d42" }, { @@ -306857,6 +324534,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306875,9 +324554,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -306905,6 +324584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306923,9 +324604,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -306953,6 +324634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -306971,9 +324654,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -307003,6 +324686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307022,7 +324707,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/", @@ -307030,12 +324716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -307062,6 +324749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307077,12 +324766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31da7c" }, { @@ -307110,6 +324800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307125,12 +324817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74fcce" }, { @@ -307158,6 +324851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307173,12 +324868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cbc1f0" } ], @@ -307209,6 +324905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307224,12 +324922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e62de4" }, { @@ -307257,6 +324956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307272,12 +324973,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7581c" } ], @@ -307308,6 +325010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307316,9 +325020,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"10ce87\":{\"lock\":false,\"pos\":{\"x\":1.6958,\"y\":1.6597,\"z\":14.2782},\"rot\":{\"x\":359.9552,\"y\":224.9984,\"z\":180.0687}},\"19ef09\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6585,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0216,\"z\":180.0168}},\"20b6d1\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6754,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.0044,\"z\":180.0169}},\"22f69c\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.602,\"z\":-11.51},\"rot\":{\"x\":0.0168,\"y\":180.0165,\"z\":0.08}},\"472846\":{\"lock\":false,\"pos\":{\"x\":-2.7269,\"y\":1.6551,\"z\":0.3701},\"rot\":{\"x\":359.9197,\"y\":270.0139,\"z\":0.0168}},\"4e8a38\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0242,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0166,\"z\":0.08}},\"945cf2\":{\"lock\":false,\"pos\":{\"x\":-3.942,\"y\":1.8304,\"z\":5.7487},\"rot\":{\"x\":359.9197,\"y\":270.0869,\"z\":180.0167}},\"9cc274\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0216,\"z\":180.0168}},\"f42e2f\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0048,\"z\":180.0169}},\"f49c18\":{\"lock\":false,\"pos\":{\"x\":-2.6925,\"y\":1.6543,\"z\":-5.0473},\"rot\":{\"x\":359.9197,\"y\":269.9846,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -307345,6 +325049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307371,7 +325077,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/", @@ -307379,12 +325086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -307411,6 +325119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307426,12 +325136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d64b7f" }, { @@ -307459,6 +325170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307474,12 +325187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -307507,6 +325221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307522,12 +325238,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -307555,6 +325272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307570,12 +325289,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb6a48" }, { @@ -307603,6 +325323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307618,12 +325340,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c37c4" }, { @@ -307651,6 +325374,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307666,12 +325391,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c21b03" }, { @@ -307699,6 +325425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307714,12 +325442,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f119f" }, { @@ -307747,6 +325476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307762,12 +325493,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fff558" }, { @@ -307795,6 +325527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307810,12 +325544,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d03213" }, { @@ -307843,6 +325578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307858,12 +325595,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a5b49" } ], @@ -307894,6 +325632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307909,12 +325649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19ef09" }, { @@ -307942,6 +325683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -307957,12 +325700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20b6d1" }, { @@ -307990,6 +325734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308008,9 +325754,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22f69c", "States": { "2": { @@ -308038,6 +325784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308056,9 +325804,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -308086,6 +325834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308104,9 +325854,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -308136,6 +325886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308156,12 +325908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -308188,6 +325941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308203,12 +325958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -308236,6 +325992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308251,12 +326009,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bffad" }, { @@ -308284,6 +326043,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308299,12 +326060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -308332,6 +326094,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308347,12 +326111,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" } ], @@ -308383,6 +326148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308398,12 +326165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e8a38" }, { @@ -308431,6 +326199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308449,9 +326219,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -308479,6 +326249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308497,9 +326269,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -308527,6 +326299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308545,9 +326319,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -308577,6 +326351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308634,7 +326410,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/", @@ -308642,12 +326419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -308674,6 +326452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308687,12 +326467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -308720,6 +326501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308733,12 +326516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -308766,6 +326550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308779,12 +326565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -308812,6 +326599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308825,12 +326614,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -308858,6 +326648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308871,12 +326663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -308904,6 +326697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308917,12 +326712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -308950,6 +326746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -308963,12 +326761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -308996,6 +326795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309011,12 +326812,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -309044,6 +326846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309059,12 +326863,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6cf29" }, { @@ -309092,6 +326897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309107,12 +326914,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bd27b" }, { @@ -309140,6 +326948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309155,12 +326965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "795bd8" }, { @@ -309188,6 +326999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309203,12 +327016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bac473" }, { @@ -309236,6 +327050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309251,12 +327067,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -309284,6 +327101,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309299,12 +327118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "223e6d" }, { @@ -309332,6 +327152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309347,12 +327169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74f7f0" }, { @@ -309380,6 +327203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309395,12 +327220,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8898b" }, { @@ -309428,6 +327254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309443,12 +327271,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f19fca" }, { @@ -309476,6 +327305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309491,12 +327322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bfd162" }, { @@ -309524,6 +327356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309539,12 +327373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d6b09" }, { @@ -309572,6 +327407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309587,12 +327424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2e9d8" }, { @@ -309620,6 +327458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309635,12 +327475,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e08ba0" }, { @@ -309668,6 +327509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309683,12 +327526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "406991" }, { @@ -309716,6 +327560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309731,12 +327577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "917cda" }, { @@ -309764,6 +327611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309779,12 +327628,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cfc42" }, { @@ -309812,6 +327662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309827,12 +327679,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e84a81" }, { @@ -309860,6 +327713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309875,12 +327730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "766b79" }, { @@ -309908,6 +327764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309923,12 +327781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "815946" }, { @@ -309956,6 +327815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -309971,12 +327832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2244da" }, { @@ -310004,6 +327866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310019,12 +327883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "efbaec" }, { @@ -310052,6 +327917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310067,12 +327934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "782f4e" }, { @@ -310100,6 +327968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310115,12 +327985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "173716" }, { @@ -310148,6 +328019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310163,12 +328036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56fa0c" }, { @@ -310196,6 +328070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310211,12 +328087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c0d8f1" }, { @@ -310244,6 +328121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310259,12 +328138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a46fa" }, { @@ -310292,6 +328172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310307,12 +328189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2dc8d6" }, { @@ -310340,6 +328223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310355,12 +328240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" }, { @@ -310388,6 +328274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310403,12 +328291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11cb5a" }, { @@ -310436,6 +328325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310451,12 +328342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18ea67" }, { @@ -310484,6 +328376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310499,12 +328393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a0e04" }, { @@ -310532,6 +328427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310547,12 +328444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4e228" }, { @@ -310580,6 +328478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310595,12 +328495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11b78d" } ], @@ -310631,6 +328532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310646,12 +328549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cc274" }, { @@ -310679,6 +328583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310694,12 +328600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f42e2f" }, { @@ -310727,6 +328634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310748,12 +328657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -310780,6 +328690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310795,12 +328707,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -310828,6 +328741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310843,12 +328758,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed6432" }, { @@ -310876,6 +328792,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310891,12 +328809,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -310924,6 +328843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310939,12 +328860,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" }, { @@ -310972,6 +328894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -310987,12 +328911,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b095" } ], @@ -311026,6 +328951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311034,9 +328961,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_PDF", @@ -311063,6 +328990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311075,9 +329004,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "884358" } ], @@ -311108,6 +329037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311126,9 +329057,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Approaching Storm'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "7521a9" } ], @@ -311179,6 +329110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311197,9 +329130,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"06f882\":{\"lock\":true,\"pos\":{\"x\":-3.769,\"y\":4.1352,\"z\":5.6708},\"rot\":{\"x\":0,\"y\":90,\"z\":0}},\"0c01a1\":{\"lock\":false,\"pos\":{\"x\":1.2422,\"y\":1.3947,\"z\":0.1206},\"rot\":{\"x\":359.9832,\"y\":0.0007,\"z\":359.9197}},\"0e52c8\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"0f6d69\":{\"lock\":false,\"pos\":{\"x\":-20.4015,\"y\":1.6099,\"z\":-0.1772},\"rot\":{\"x\":0.0799,\"y\":90.0005,\"z\":359.9831}},\"1ac3ac\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0313,\"z\":0.0168}},\"1ee2a5\":{\"lock\":false,\"pos\":{\"x\":-33.3772,\"y\":1.628,\"z\":-0.0078},\"rot\":{\"x\":0.0799,\"y\":90.0005,\"z\":359.9831}},\"201524\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.0351,\"z\":0.08}},\"309b74\":{\"lock\":false,\"pos\":{\"x\":-12.4322,\"y\":1.6796,\"z\":7.3153},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":0.0169}},\"45ae28\":{\"lock\":false,\"pos\":{\"x\":-9.3921,\"y\":1.5611,\"z\":-27.1341},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"5f661f\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0056,\"z\":0.0168}},\"60ad05\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6317,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0349,\"z\":0.0799}},\"6791fd\":{\"lock\":false,\"pos\":{\"x\":1.6969,\"y\":1.5583,\"z\":14.2784},\"rot\":{\"x\":359.9551,\"y\":224.9981,\"z\":0.0687}},\"686672\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.7067,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"6f2827\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7664,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9933,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.0342,\"z\":0.0799}},\"82e1ed\":{\"lock\":false,\"pos\":{\"x\":-4.0012,\"y\":1.5828,\"z\":-14.59},\"rot\":{\"x\":359.9197,\"y\":269.9926,\"z\":0.0168}},\"86cbee\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0349,\"z\":0.08}},\"88a1cf\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.7022,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"9caa1f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.0349,\"z\":0.08}},\"9e701d\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9826,\"z\":0.0169}},\"a69955\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6949,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":0.0169}},\"ad6736\":{\"lock\":false,\"pos\":{\"x\":-1.1127,\"y\":1.7619,\"z\":-27.6436},\"rot\":{\"x\":359.9201,\"y\":269.9693,\"z\":0.0169}},\"b3ec68\":{\"lock\":false,\"pos\":{\"x\":-12.7351,\"y\":1.6676,\"z\":-7.6861},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"b6a235\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0349,\"z\":0.08}},\"d807d4\":{\"lock\":false,\"pos\":{\"x\":-26.8814,\"y\":1.619,\"z\":-0.0326},\"rot\":{\"x\":0.0799,\"y\":90.0005,\"z\":359.9831}},\"dda3d5\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0349,\"z\":0.08}},\"e47eca\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.0349,\"z\":0.08}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "ScriptingTrigger", @@ -311226,15 +329159,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06f882" }, { @@ -311262,6 +329197,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311270,9 +329207,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -311299,6 +329236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311320,12 +329259,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -311352,6 +329292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311367,12 +329309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "555fd0" }, { @@ -311400,6 +329343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311415,12 +329360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e87bf" }, { @@ -311448,6 +329394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311463,12 +329411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d48f9a" }, { @@ -311496,6 +329445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311511,12 +329462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ba63e" }, { @@ -311544,6 +329496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311559,12 +329513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f80c71" } ], @@ -311595,6 +329550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311603,9 +329560,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -311632,6 +329589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311647,12 +329606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a3e7c" }, { @@ -311680,6 +329640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311695,12 +329657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1005d" }, { @@ -311728,6 +329691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311743,12 +329708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f64ead" }, { @@ -311776,6 +329742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311791,12 +329759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "498a00" } ], @@ -311827,6 +329796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311835,9 +329806,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -311864,6 +329835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311879,12 +329852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bda031" }, { @@ -311912,6 +329886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311927,12 +329903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af067a" }, { @@ -311960,6 +329937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -311975,12 +329954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d7398" }, { @@ -312008,6 +329988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312023,12 +330005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "597c69" } ], @@ -312059,6 +330042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312067,9 +330052,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -312096,6 +330081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312111,12 +330098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57a01b" }, { @@ -312144,6 +330132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312159,12 +330149,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86aecd" }, { @@ -312192,6 +330183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312207,12 +330200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76d8e1" }, { @@ -312240,6 +330234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312255,12 +330251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74db2c" } ], @@ -312291,6 +330288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312299,9 +330298,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -312328,6 +330327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312343,12 +330344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb5f8b" }, { @@ -312376,6 +330378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312391,12 +330395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c027" }, { @@ -312424,6 +330429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312439,12 +330446,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e601f" }, { @@ -312472,6 +330480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312487,12 +330497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03052d" } ], @@ -312523,6 +330534,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312531,9 +330544,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -312560,6 +330573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312575,12 +330590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "039291" }, { @@ -312608,6 +330624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312623,12 +330641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b67ef8" }, { @@ -312656,6 +330675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312671,12 +330692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acefbf" }, { @@ -312704,6 +330726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312719,12 +330743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "359a15" } ], @@ -312758,6 +330783,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312773,12 +330800,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e52c8" }, { @@ -312806,6 +330834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312824,9 +330854,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f6d69", "States": { "2": { @@ -312854,6 +330884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312872,9 +330904,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -312902,6 +330934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312920,9 +330954,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -312952,6 +330986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -312967,12 +331003,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ac3ac" }, { @@ -313000,6 +331037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313018,9 +331057,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ee2a5", "States": { "2": { @@ -313048,6 +331087,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313066,9 +331107,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -313096,6 +331137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313114,9 +331157,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -313146,6 +331189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313164,9 +331209,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "201524", "States": { "2": { @@ -313194,6 +331239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313212,9 +331259,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -313242,6 +331289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313260,9 +331309,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -313292,6 +331341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313310,12 +331361,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -313342,6 +331394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313357,12 +331411,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17d996" }, { @@ -313390,6 +331445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313405,12 +331462,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75dc93" } ], @@ -313441,6 +331499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313456,12 +331516,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45ae28" }, { @@ -313489,6 +331550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313508,12 +331571,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -313540,6 +331604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313555,12 +331621,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96da49" }, { @@ -313588,6 +331655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313603,12 +331672,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d71af" }, { @@ -313636,6 +331706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313651,12 +331723,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2eb57" } ], @@ -313687,6 +331760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313705,9 +331780,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60ad05", "States": { "2": { @@ -313735,6 +331810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313753,9 +331830,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -313783,6 +331860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313801,9 +331880,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -313833,6 +331912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313851,9 +331932,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -313880,6 +331961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313900,12 +331983,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -313932,6 +332016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313947,12 +332033,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2a00a" }, { @@ -313980,6 +332067,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -313995,12 +332084,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4ca7c" }, { @@ -314028,6 +332118,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314043,12 +332135,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7e985" }, { @@ -314076,6 +332169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314091,12 +332186,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "522f71" } ], @@ -314127,6 +332223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314147,12 +332245,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -314179,6 +332278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314194,12 +332295,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49e0bf" }, { @@ -314227,6 +332329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314242,12 +332346,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd15eb" }, { @@ -314275,6 +332380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314290,12 +332397,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b7e9" }, { @@ -314323,6 +332431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314338,12 +332448,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fb42e" } ], @@ -314374,6 +332485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314393,12 +332506,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -314425,6 +332539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314440,12 +332556,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc2a0c" }, { @@ -314473,6 +332590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314488,12 +332607,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecd352" }, { @@ -314521,6 +332641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314536,12 +332658,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c4632" } ], @@ -314572,6 +332695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314590,12 +332715,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -314622,6 +332748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314637,12 +332765,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ee13d" }, { @@ -314670,6 +332799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314685,12 +332816,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "114be3" } ], @@ -314721,6 +332853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314739,12 +332873,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -314771,6 +332906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314786,12 +332923,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e52c8" }, { @@ -314819,6 +332957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314834,12 +332974,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d93ccf" } ], @@ -314870,6 +333011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314888,12 +333031,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -314920,6 +333064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314935,12 +333081,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00c966" }, { @@ -314968,6 +333115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -314983,12 +333132,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec7d0b" } ], @@ -315019,6 +333169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315040,12 +333192,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -315072,6 +333225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315087,12 +333242,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -315120,6 +333276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315135,12 +333293,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8204ea" }, { @@ -315168,6 +333327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315183,12 +333344,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -315216,6 +333378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315231,12 +333395,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -315264,6 +333429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315279,12 +333446,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87b4c8" } ], @@ -315331,6 +333499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315346,12 +333516,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "686672" }, { @@ -315379,6 +333550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315424,12 +333597,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -315456,6 +333630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315471,12 +333647,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "536c2f" }, { @@ -315504,6 +333681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315519,12 +333698,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -315552,6 +333732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315567,12 +333749,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c256e0" }, { @@ -315600,6 +333783,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315615,12 +333800,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e3d7c" }, { @@ -315648,6 +333834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315663,12 +333851,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "776b84" }, { @@ -315696,6 +333885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315711,12 +333902,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -315744,6 +333936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315759,12 +333953,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -315792,6 +333987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315807,12 +334004,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da637f" }, { @@ -315840,6 +334038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315855,12 +334055,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -315888,6 +334089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315903,12 +334106,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -315936,6 +334140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315951,12 +334157,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -315984,6 +334191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -315999,12 +334208,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "927ced" }, { @@ -316032,6 +334242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316047,12 +334259,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -316080,6 +334293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316095,12 +334310,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -316128,6 +334344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316143,12 +334361,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -316176,6 +334395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316191,12 +334412,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e556b0" }, { @@ -316224,6 +334446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316239,12 +334463,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -316272,6 +334497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316287,12 +334514,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51da1d" }, { @@ -316320,6 +334548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316335,12 +334565,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -316368,6 +334599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316383,12 +334616,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -316416,6 +334650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316431,12 +334667,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -316464,6 +334701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316479,12 +334718,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -316512,6 +334752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316527,12 +334769,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0224ae" }, { @@ -316560,6 +334803,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316575,12 +334820,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bee61c" }, { @@ -316608,6 +334854,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316623,12 +334871,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -316656,6 +334905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316671,12 +334922,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dea686" }, { @@ -316704,6 +334956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316719,12 +334973,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" }, { @@ -316752,6 +335007,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316767,12 +335024,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc57dd" }, { @@ -316800,6 +335058,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316815,12 +335075,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79b98" } ], @@ -316851,6 +335112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316869,9 +335132,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -316899,6 +335162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316917,9 +335182,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -316947,6 +335212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -316965,9 +335232,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -316997,6 +335264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317015,9 +335284,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Bread and Circuses'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "82e1ed" }, { @@ -317045,6 +335314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317063,9 +335334,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86cbee", "States": { "2": { @@ -317093,6 +335364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317111,9 +335384,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -317141,6 +335414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317159,9 +335434,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -317191,6 +335466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317206,12 +335483,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88a1cf" }, { @@ -317239,6 +335517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317257,9 +335537,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9caa1f", "States": { "2": { @@ -317287,6 +335567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317305,9 +335587,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -317335,6 +335617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317353,9 +335637,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -317385,6 +335669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317404,12 +335690,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -317436,6 +335723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317451,12 +335740,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aef4a6" }, { @@ -317484,6 +335774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317499,12 +335791,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "602342" }, { @@ -317532,6 +335825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317547,12 +335842,13 @@ "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "142b14" } ], @@ -317583,6 +335879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317602,12 +335900,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -317634,6 +335933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317649,12 +335950,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a9a57" }, { @@ -317682,6 +335984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317697,12 +336001,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6dfb7" }, { @@ -317730,6 +336035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317745,12 +336052,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74b4b9" } ], @@ -317781,6 +336089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317790,9 +336100,9 @@ "Tablet": { "PageURL": "https://drive.google.com/file/d/1q7MvOv39MZZrL7eIb3DRsPAyjpUX_6rs/view" }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad6736" }, { @@ -317820,6 +336130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317841,12 +336153,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -317873,6 +336186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317888,12 +336203,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6272cc" }, { @@ -317921,6 +336237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317936,12 +336254,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13b008" }, { @@ -317969,6 +336288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -317984,12 +336305,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a29217" }, { @@ -318017,6 +336339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318032,12 +336356,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4068ea" }, { @@ -318065,6 +336390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318080,12 +336407,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a421fc" } ], @@ -318116,6 +336444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318134,9 +336464,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6a235", "States": { "2": { @@ -318164,6 +336494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318182,9 +336514,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -318212,6 +336544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318230,9 +336564,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -318262,6 +336596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318280,9 +336616,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d807d4", "States": { "2": { @@ -318310,6 +336646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318328,9 +336666,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -318358,6 +336696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318376,9 +336716,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -318408,6 +336748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318426,9 +336768,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dda3d5", "States": { "2": { @@ -318456,6 +336798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318474,9 +336818,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -318504,6 +336848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318522,9 +336868,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -318554,6 +336900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318572,9 +336920,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e47eca", "States": { "2": { @@ -318602,6 +336950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318620,9 +336970,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -318650,6 +337000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318668,9 +337020,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -318723,6 +337075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318741,9 +337095,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"134d83\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7078,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9877,\"z\":180.0169}},\"44573a\":{\"lock\":false,\"pos\":{\"x\":-4.6376,\"y\":1.407,\"z\":13.8226},\"rot\":{\"x\":359.9831,\"y\":-0.0009,\"z\":359.9196}},\"73e53d\":{\"lock\":false,\"pos\":{\"x\":-11.3273,\"y\":1.4143,\"z\":7.0884},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}},\"917668\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0331,\"z\":0.0803}},\"921551\":{\"lock\":false,\"pos\":{\"x\":-3.9083,\"y\":1.5503,\"z\":-21.7157},\"rot\":{\"x\":359.9201,\"y\":269.9823,\"z\":0.0169}},\"9d0d56\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9853,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"cf0c00\":{\"lock\":false,\"pos\":{\"x\":-3.7325,\"y\":1.5823,\"z\":-14.9941},\"rot\":{\"x\":359.9197,\"y\":270.0021,\"z\":0.0168}},\"d47bca\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6623,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":180.0327,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -318770,6 +337124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318778,9 +337134,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -318807,6 +337163,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318822,12 +337180,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "569b06" }, { @@ -318855,6 +337214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318868,12 +337229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96ae32" }, { @@ -318901,6 +337263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318914,12 +337278,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e86419" }, { @@ -318947,6 +337312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -318978,12 +337345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -319010,6 +337378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319023,12 +337393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2281d8" }, { @@ -319056,6 +337427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319069,12 +337442,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b1301" }, { @@ -319102,6 +337476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319115,12 +337491,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20972b" }, { @@ -319148,6 +337525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319161,12 +337540,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67af79" }, { @@ -319194,6 +337574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319207,12 +337589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00ae1b" }, { @@ -319240,6 +337623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319255,12 +337640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49a9d3" }, { @@ -319288,6 +337674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319303,12 +337691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "528887" }, { @@ -319336,6 +337725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319349,12 +337740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fe6c7" }, { @@ -319382,6 +337774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319395,12 +337789,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e37396" }, { @@ -319428,6 +337823,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319441,12 +337838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81741e" }, { @@ -319474,6 +337872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319487,12 +337887,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db62d1" }, { @@ -319520,6 +337921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319533,12 +337936,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "551a7b" }, { @@ -319566,6 +337970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319579,12 +337985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "891bde" }, { @@ -319612,6 +338019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319625,12 +338034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b796e" }, { @@ -319658,6 +338068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319671,12 +338083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "259a79" } ], @@ -319710,6 +338123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319728,9 +338143,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -319757,6 +338172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319772,12 +338189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74840a" }, { @@ -319805,6 +338223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319820,12 +338240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7b748" }, { @@ -319853,6 +338274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319868,12 +338291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37a76b" } ], @@ -319917,6 +338341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319936,12 +338362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -319968,6 +338395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -319981,12 +338410,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16c364" }, { @@ -320014,6 +338444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320027,12 +338459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef1ce2" }, { @@ -320060,6 +338493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320073,12 +338508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ea5ab" } ], @@ -320109,6 +338545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320143,12 +338581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -320175,6 +338614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320188,12 +338629,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcd44f" }, { @@ -320221,6 +338663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320234,12 +338678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1b747" }, { @@ -320267,6 +338712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320280,12 +338727,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3b19e" }, { @@ -320313,6 +338761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320326,12 +338776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7fddb" }, { @@ -320359,6 +338810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320372,12 +338825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "005e92" }, { @@ -320405,6 +338859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320418,12 +338874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3621c" }, { @@ -320451,6 +338908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320464,12 +338923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9dfc0" }, { @@ -320497,6 +338957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320510,12 +338972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d5122" }, { @@ -320543,6 +339006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320556,12 +339021,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9dfc0" }, { @@ -320589,6 +339055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320602,12 +339070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59477d" }, { @@ -320635,6 +339104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320648,12 +339119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "225198" }, { @@ -320681,6 +339153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320694,12 +339168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c297d" }, { @@ -320727,6 +339202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320740,12 +339217,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78cad4" }, { @@ -320773,6 +339251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320786,12 +339266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bddadf" }, { @@ -320819,6 +339300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320832,12 +339315,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "290595" }, { @@ -320865,6 +339349,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320878,12 +339364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79bc73" }, { @@ -320911,6 +339398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320924,12 +339413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eba049" }, { @@ -320957,6 +339447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -320970,12 +339462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd576f" } ], @@ -321006,6 +339499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321024,12 +339519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -321056,6 +339552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321069,12 +339567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb968b" }, { @@ -321102,6 +339601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321115,12 +339616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "548a9a" } ], @@ -321151,6 +339653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321166,12 +339670,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d0d56" }, { @@ -321199,6 +339704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321217,9 +339724,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Curse of the Rougarou'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf0c00" }, { @@ -321247,6 +339754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321267,12 +339776,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -321299,6 +339809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321314,12 +339826,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df9762" }, { @@ -321347,6 +339860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321362,12 +339877,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c9b49" }, { @@ -321395,6 +339911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321410,12 +339928,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3a2d" }, { @@ -321443,6 +339962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321458,12 +339979,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dccafc" } ], @@ -321494,6 +340016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321502,9 +340026,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function onCollisionEnter(collision_info)\r\n self.shuffle() \r\n self.shuffle() \r\n self.shuffle() \r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -321531,6 +340055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321550,12 +340076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -321582,6 +340109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321597,12 +340126,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b7d4c" }, { @@ -321630,6 +340160,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321645,12 +340177,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03b080" }, { @@ -321678,6 +340211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321693,12 +340228,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c5ea8" } ], @@ -321729,6 +340265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321748,12 +340286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -321780,6 +340319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321795,12 +340336,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63f502" }, { @@ -321828,6 +340370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321843,12 +340387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab18a" }, { @@ -321876,6 +340421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321891,12 +340438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "499281" } ], @@ -321927,6 +340475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321946,12 +340496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -321978,6 +340529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -321993,12 +340546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26b322" }, { @@ -322026,6 +340580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322041,12 +340597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15983c" }, { @@ -322074,6 +340631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322089,12 +340648,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "552a1d" } ], @@ -322125,6 +340685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322144,12 +340706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -322176,6 +340739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322191,12 +340756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e103cf" }, { @@ -322224,6 +340790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322239,12 +340807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab9d69" }, { @@ -322272,6 +340841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322287,12 +340858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5034e" } ], @@ -322349,6 +340921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322367,9 +340941,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0368c1\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0048,\"z\":0.0169}},\"12d492\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"1e7f1b\":{\"lock\":false,\"pos\":{\"x\":-14.3799,\"y\":1.7565,\"z\":-0.214},\"rot\":{\"x\":356.8583,\"y\":270.0027,\"z\":0.0168}},\"2e4956\":{\"lock\":false,\"pos\":{\"x\":-11.6656,\"y\":1.6757,\"z\":9.0735},\"rot\":{\"x\":359.9201,\"y\":269.9792,\"z\":0.0169}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"4cc43d\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7504,\"z\":5.7571},\"rot\":{\"x\":359.9198,\"y\":269.9697,\"z\":180.0169}},\"4d3553\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9845,\"z\":359.92}},\"655937\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0419,\"z\":0.0803}},\"81a6f5\":{\"lock\":false,\"pos\":{\"x\":-26.8136,\"y\":1.6167,\"z\":-7.5513},\"rot\":{\"x\":0.0799,\"y\":90,\"z\":359.9831}},\"949c7d\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"a49fb6\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0169,\"y\":179.9575,\"z\":0.0802}},\"a5891b\":{\"lock\":false,\"pos\":{\"x\":-3.5539,\"y\":1.5821,\"z\":-14.78},\"rot\":{\"x\":359.9197,\"y\":270.0027,\"z\":0.0168}},\"aa7abc\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"ab0576\":{\"lock\":false,\"pos\":{\"x\":-20.6238,\"y\":1.6124,\"z\":7.2554},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"b676d8\":{\"lock\":false,\"pos\":{\"x\":-20.6237,\"y\":1.608,\"z\":-7.5965},\"rot\":{\"x\":0.0799,\"y\":90.0001,\"z\":359.9831}},\"bb43b8\":{\"lock\":false,\"pos\":{\"x\":-11.5593,\"y\":1.6764,\"z\":11.8573},\"rot\":{\"x\":359.9201,\"y\":270.0077,\"z\":0.0169}},\"d5e519\":{\"lock\":false,\"pos\":{\"x\":-3.406,\"y\":1.5547,\"z\":-23.1512},\"rot\":{\"x\":359.9201,\"y\":269.9986,\"z\":0.0169}},\"eb8aad\":{\"lock\":false,\"pos\":{\"x\":-11.5609,\"y\":1.6712,\"z\":6.3668},\"rot\":{\"x\":359.9201,\"y\":269.9869,\"z\":0.0169}},\"fde05d\":{\"lock\":false,\"pos\":{\"x\":-27.0646,\"y\":1.6215,\"z\":7.5852},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -322396,6 +340970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322411,12 +340987,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e7f1b" }, { @@ -322444,6 +341021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322459,12 +341038,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0368c1" }, { @@ -322492,6 +341072,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322510,9 +341092,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12d492", "States": { "3": { @@ -322540,6 +341122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322558,9 +341142,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -322588,6 +341172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322606,9 +341192,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -322638,6 +341224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322653,12 +341241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e7f1b" }, { @@ -322686,6 +341275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322709,12 +341300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -322741,6 +341333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322756,12 +341350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2d9d3" }, { @@ -322789,6 +341384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322804,12 +341401,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d6af5" }, { @@ -322837,6 +341435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322852,12 +341452,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f2498" }, { @@ -322885,6 +341486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322900,12 +341503,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "124288" }, { @@ -322933,6 +341537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322948,12 +341554,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48d3db" }, { @@ -322981,6 +341588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -322996,12 +341605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04cdf3" }, { @@ -323029,6 +341639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323044,12 +341656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4260f0" } ], @@ -323080,6 +341693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323098,9 +341713,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -323128,6 +341743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323146,9 +341763,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -323176,6 +341793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323194,9 +341813,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -323226,6 +341845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323268,12 +341889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -323300,6 +341922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323313,12 +341937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f39f35" }, { @@ -323346,6 +341971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323359,12 +341986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f3ad2" }, { @@ -323392,6 +342020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323405,12 +342035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac4b72" }, { @@ -323438,6 +342069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323451,12 +342084,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97cc02" }, { @@ -323484,6 +342118,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323497,12 +342133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "10d41c" }, { @@ -323530,6 +342167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323543,12 +342182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe04b3" }, { @@ -323576,6 +342216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323589,12 +342231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "32a6e2" }, { @@ -323622,6 +342265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323635,12 +342280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79e1a4" }, { @@ -323668,6 +342314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323681,12 +342329,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27fab1" }, { @@ -323714,6 +342363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323727,12 +342378,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dbec9d" }, { @@ -323760,6 +342412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323773,12 +342427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f119dc" }, { @@ -323806,6 +342461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323819,12 +342476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "649527" }, { @@ -323852,6 +342510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323865,12 +342525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e89a0a" }, { @@ -323898,6 +342559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323911,12 +342574,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b39ab7" }, { @@ -323944,6 +342608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -323957,12 +342623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "febff1" }, { @@ -323990,6 +342657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324003,12 +342672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95047c" }, { @@ -324036,6 +342706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324049,12 +342721,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c1bf" }, { @@ -324082,6 +342755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324095,12 +342770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "027b2f" }, { @@ -324128,6 +342804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324141,12 +342819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "399d65" }, { @@ -324174,6 +342853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324187,12 +342868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4448e3" }, { @@ -324220,6 +342902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324233,12 +342917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "453252" }, { @@ -324266,6 +342951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324279,12 +342966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4701c" }, { @@ -324312,6 +343000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324325,12 +343015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "916af7" }, { @@ -324358,6 +343049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324371,12 +343064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c3ec" }, { @@ -324404,6 +343098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324417,12 +343113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b0f6c" }, { @@ -324450,6 +343147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324463,12 +343162,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "470ba8" } ], @@ -324499,6 +343199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324517,9 +343219,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d3553", "States": { "3": { @@ -324547,6 +343249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324565,9 +343269,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -324595,6 +343299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324613,9 +343319,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -324645,6 +343351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324664,12 +343372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -324696,6 +343405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324711,12 +343422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e15f60" }, { @@ -324744,6 +343456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324759,12 +343473,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e76b4f" }, { @@ -324792,6 +343507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324807,12 +343524,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fda7fe" } ], @@ -324843,6 +343561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324861,9 +343581,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81a6f5", "States": { "3": { @@ -324891,6 +343611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324909,9 +343631,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -324939,6 +343661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -324957,9 +343681,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -324989,6 +343713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325007,9 +343733,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "949c7d", "States": { "3": { @@ -325037,6 +343763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325055,9 +343783,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -325085,6 +343813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325103,9 +343833,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -325135,6 +343865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325153,9 +343885,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -325182,6 +343914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325197,12 +343931,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d3a26" }, { @@ -325230,6 +343965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325250,12 +343987,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -325282,6 +344020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325295,12 +344035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "080d4a" }, { @@ -325328,6 +344069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325341,12 +344084,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3b3a9" }, { @@ -325374,6 +344118,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325387,12 +344133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f54e7" }, { @@ -325420,6 +344167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325433,12 +344182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a42f33" } ], @@ -325485,6 +344235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325504,12 +344256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -325536,6 +344289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325551,12 +344306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92e6b7" }, { @@ -325584,6 +344340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325599,12 +344357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4b83b" }, { @@ -325632,6 +344391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325647,12 +344408,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec65b0" } ], @@ -325683,6 +344445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325701,9 +344465,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Carnevale of Horrors'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5891b" }, { @@ -325731,6 +344495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325746,12 +344512,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa7abc" }, { @@ -325779,6 +344546,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325797,9 +344566,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab0576", "States": { "3": { @@ -325827,6 +344596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325845,9 +344616,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -325875,6 +344646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325893,9 +344666,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -325925,6 +344698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325943,9 +344718,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b676d8", "States": { "3": { @@ -325973,6 +344748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -325991,9 +344768,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -326021,6 +344798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326039,9 +344818,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -326071,6 +344850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326094,12 +344875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -326126,6 +344908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326141,12 +344925,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be4dc6" }, { @@ -326174,6 +344959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326189,12 +344976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "659820" }, { @@ -326222,6 +345010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326237,12 +345027,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "105277" }, { @@ -326270,6 +345061,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326285,12 +345078,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44845f" }, { @@ -326318,6 +345112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326333,12 +345129,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f64f68" }, { @@ -326366,6 +345163,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326381,12 +345180,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a2381" }, { @@ -326414,6 +345214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326429,12 +345231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d6b52" } ], @@ -326465,6 +345268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326488,12 +345293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -326520,6 +345326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326535,12 +345343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "810ae4" }, { @@ -326568,6 +345377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326583,12 +345394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "124422" }, { @@ -326616,6 +345428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326631,12 +345445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c4fa7" }, { @@ -326664,6 +345479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326679,12 +345496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b68d07" }, { @@ -326712,6 +345530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326727,12 +345547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fa708" }, { @@ -326760,6 +345581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326775,12 +345598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "888bfe" }, { @@ -326808,6 +345632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326823,12 +345649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c4fa7" } ], @@ -326859,6 +345686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326874,12 +345703,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb8aad" }, { @@ -326907,6 +345737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326925,9 +345757,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fde05d", "States": { "3": { @@ -326955,6 +345787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -326973,9 +345807,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -327003,6 +345837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327021,9 +345857,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -327076,6 +345912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327094,9 +345932,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"14808b\":{\"lock\":false,\"pos\":{\"x\":9.7604,\"y\":1.2864,\"z\":11.7484},\"rot\":{\"x\":0.0799,\"y\":89.9983,\"z\":359.9831}},\"2ea2a2\":{\"lock\":false,\"pos\":{\"x\":9.5356,\"y\":1.2881,\"z\":16.2747},\"rot\":{\"x\":0.0799,\"y\":89.9969,\"z\":359.9831}},\"5ef0ce\":{\"lock\":false,\"pos\":{\"x\":-8.6494,\"y\":1.7726,\"z\":-27.1446},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"76b476\":{\"lock\":false,\"pos\":{\"x\":9.7067,\"y\":1.2852,\"z\":7.2515},\"rot\":{\"x\":0.0799,\"y\":89.9911,\"z\":359.9831}},\"79b534\":{\"lock\":false,\"pos\":{\"x\":10.0441,\"y\":1.2826,\"z\":0.5236},\"rot\":{\"x\":0.0799,\"y\":89.9995,\"z\":359.9831}},\"c352ac\":{\"lock\":false,\"pos\":{\"x\":9.4217,\"y\":1.2811,\"z\":-7.7254},\"rot\":{\"x\":0.0799,\"y\":89.9979,\"z\":359.9831}},\"c7c4c1\":{\"lock\":false,\"pos\":{\"x\":9.6417,\"y\":1.2822,\"z\":-3.4464},\"rot\":{\"x\":0.0799,\"y\":89.991,\"z\":359.9831}},\"f4dcee\":{\"lock\":false,\"pos\":{\"x\":-3.7547,\"y\":1.5823,\"z\":-14.8894},\"rot\":{\"x\":359.9197,\"y\":270.0037,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -327123,6 +345961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327131,9 +345971,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"018291\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9646,\"z\":0.0802}},\"300c56\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9967,\"z\":0.0803}},\"350b61\":{\"lock\":false,\"pos\":{\"x\":1.6955,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"817446\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"99eeeb\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9983,\"z\":0.0169}},\"9f6ed8\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"a5ba22\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"aa6ad6\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"c69095\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4411},\"rot\":{\"x\":359.9197,\"y\":269.9983,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -327160,6 +346000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327178,9 +346020,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -327207,6 +346049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327215,9 +346059,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -327244,6 +346088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327259,12 +346105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "839314" }, { @@ -327292,6 +346139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327307,12 +346156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774c0b" }, { @@ -327340,6 +346190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327355,12 +346207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d4c1e" }, { @@ -327388,6 +346241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327403,12 +346258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c7570" }, { @@ -327436,6 +346292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327455,12 +346313,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -327487,6 +346346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327502,12 +346363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ce8bf" }, { @@ -327535,6 +346397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327550,12 +346414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fcb18" }, { @@ -327583,6 +346448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327598,12 +346465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f97fe2" } ], @@ -327634,6 +346502,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327649,12 +346519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76a7f5" }, { @@ -327682,6 +346553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327701,12 +346574,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -327733,6 +346607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327748,12 +346624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d13692" }, { @@ -327781,6 +346658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327796,12 +346675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5eb4c2" }, { @@ -327829,6 +346709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327844,12 +346726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "323435" } ], @@ -327880,6 +346763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327895,12 +346780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "945939" }, { @@ -327928,6 +346814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327943,12 +346831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38826f" } ], @@ -327979,6 +346868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -327997,12 +346888,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -328029,6 +346921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328044,12 +346938,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598744" }, { @@ -328077,6 +346972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328092,12 +346989,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" } ], @@ -328128,6 +347026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328143,12 +347043,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -328176,6 +347077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328191,12 +347094,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7399a5" }, { @@ -328224,6 +347128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328239,12 +347145,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -328272,6 +347179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328287,12 +347196,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc2822" }, { @@ -328320,6 +347230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328335,12 +347247,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -328368,6 +347281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328383,12 +347298,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -328416,6 +347332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328431,12 +347349,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" } ], @@ -328480,6 +347399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328520,12 +347441,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -328552,6 +347474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328567,12 +347491,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -328600,6 +347525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328615,12 +347542,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d50777" }, { @@ -328648,6 +347576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328663,12 +347593,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86ca2a" }, { @@ -328696,6 +347627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328711,12 +347644,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bf255" }, { @@ -328744,6 +347678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328759,12 +347695,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2927c6" }, { @@ -328792,6 +347729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328807,12 +347746,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -328840,6 +347780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328855,12 +347797,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -328888,6 +347831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328903,12 +347848,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b2c36" }, { @@ -328936,6 +347882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328951,12 +347899,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc896" }, { @@ -328984,6 +347933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -328999,12 +347950,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -329032,6 +347984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329047,12 +348001,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa340" }, { @@ -329080,6 +348035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329095,12 +348052,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0872f7" }, { @@ -329128,6 +348086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329143,12 +348103,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -329176,6 +348137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329191,12 +348154,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47bd50" }, { @@ -329224,6 +348188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329239,12 +348205,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -329272,6 +348239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329287,12 +348256,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf90c6" }, { @@ -329320,6 +348290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329335,12 +348307,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -329368,6 +348341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329383,12 +348358,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e15d" }, { @@ -329416,6 +348392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329431,12 +348409,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -329464,6 +348443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329479,12 +348460,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -329512,6 +348494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329527,12 +348511,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774f5f" }, { @@ -329560,6 +348545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329575,12 +348562,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -329608,6 +348596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329623,12 +348613,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d18a7d" }, { @@ -329656,6 +348647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329671,12 +348664,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a1943" } ], @@ -329707,6 +348701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329726,12 +348722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -329758,6 +348755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329773,12 +348772,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c30682" }, { @@ -329806,6 +348806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329821,12 +348823,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d52dd" }, { @@ -329854,6 +348857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329869,12 +348874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce775" } ], @@ -329905,6 +348911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329924,12 +348932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -329956,6 +348965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -329971,12 +348982,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "318613" }, { @@ -330004,6 +349016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330019,12 +349033,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c450f" }, { @@ -330052,6 +349067,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330067,12 +349084,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02cc53" } ], @@ -330103,6 +349121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330118,12 +349138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c69095" }, { @@ -330151,6 +349172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330166,12 +349189,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -330199,6 +349223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330214,12 +349240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa6ad6" }, { @@ -330247,6 +349274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330262,12 +349291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f6ed8" }, { @@ -330295,6 +349325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330310,12 +349342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99eeeb" } ], @@ -330346,6 +349379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330354,9 +349389,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"025095\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"300c56\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0144,\"z\":0.0803}},\"38826f\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"412475\":{\"lock\":false,\"pos\":{\"x\":1.6955,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"61d2f2\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6751,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0101,\"z\":0.0169}},\"817446\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"99a909\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9981,\"z\":0.0803}},\"b59d21\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"c69095\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4411},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -330383,6 +349418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330401,9 +349438,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -330430,6 +349467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330438,9 +349477,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -330467,6 +349506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330482,12 +349523,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d4c1e" }, { @@ -330515,6 +349557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330530,12 +349574,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774c0b" }, { @@ -330563,6 +349608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330578,12 +349625,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76a7f5" }, { @@ -330611,6 +349659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330630,12 +349680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -330662,6 +349713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330677,12 +349730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5eb4c2" }, { @@ -330710,6 +349764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330725,12 +349781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d13692" }, { @@ -330758,6 +349815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330773,12 +349832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "323435" } ], @@ -330809,6 +349869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330824,12 +349886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "839314" }, { @@ -330857,6 +349920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330872,12 +349937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f6ed8" }, { @@ -330905,6 +349971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330920,12 +349988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa6ad6" }, { @@ -330953,6 +350022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -330968,12 +350039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "945939" } ], @@ -331004,6 +350076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331019,12 +350093,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7399a5" }, { @@ -331052,6 +350127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331070,12 +350147,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -331102,6 +350180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331117,12 +350197,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598744" }, { @@ -331150,6 +350231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331165,12 +350248,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" } ], @@ -331201,6 +350285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331216,12 +350302,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -331249,6 +350336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331264,12 +350353,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc2822" }, { @@ -331297,6 +350387,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331312,12 +350404,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -331345,6 +350438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331360,12 +350455,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -331393,6 +350489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331408,12 +350506,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -331441,6 +350540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331456,12 +350557,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" } ], @@ -331505,6 +350607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331545,12 +350649,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -331577,6 +350682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331592,12 +350699,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -331625,6 +350733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331640,12 +350750,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d50777" }, { @@ -331673,6 +350784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331688,12 +350801,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86ca2a" }, { @@ -331721,6 +350835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331736,12 +350852,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bf255" }, { @@ -331769,6 +350886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331784,12 +350903,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2927c6" }, { @@ -331817,6 +350937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331832,12 +350954,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -331865,6 +350988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331880,12 +351005,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -331913,6 +351039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331928,12 +351056,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b2c36" }, { @@ -331961,6 +351090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -331976,12 +351107,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc896" }, { @@ -332009,6 +351141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332024,12 +351158,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -332057,6 +351192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332072,12 +351209,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa340" }, { @@ -332105,6 +351243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332120,12 +351260,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0872f7" }, { @@ -332153,6 +351294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332168,12 +351311,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -332201,6 +351345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332216,12 +351362,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47bd50" }, { @@ -332249,6 +351396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332264,12 +351413,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -332297,6 +351447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332312,12 +351464,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf90c6" }, { @@ -332345,6 +351498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332360,12 +351515,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -332393,6 +351549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332408,12 +351566,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e15d" }, { @@ -332441,6 +351600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332456,12 +351617,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -332489,6 +351651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332504,12 +351668,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -332537,6 +351702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332552,12 +351719,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774f5f" }, { @@ -332585,6 +351753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332600,12 +351770,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -332633,6 +351804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332648,12 +351821,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d18a7d" }, { @@ -332681,6 +351855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332696,12 +351872,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a1943" } ], @@ -332732,6 +351909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332751,12 +351930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -332783,6 +351963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332798,12 +351980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c30682" }, { @@ -332831,6 +352014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332846,12 +352031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d52dd" }, { @@ -332879,6 +352065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332894,12 +352082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce775" } ], @@ -332930,6 +352119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332949,12 +352140,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -332981,6 +352173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -332996,12 +352190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "318613" }, { @@ -333029,6 +352224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333044,12 +352241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "119a43" }, { @@ -333077,6 +352275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333092,12 +352292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e2b9c" } ], @@ -333128,6 +352329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333143,12 +352346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c69095" }, { @@ -333176,6 +352380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333191,12 +352397,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -333224,6 +352431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333244,12 +352453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -333276,6 +352486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333291,12 +352503,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ce8bf" }, { @@ -333324,6 +352537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333339,12 +352554,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fcb18" }, { @@ -333372,6 +352588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333387,12 +352605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c7570" }, { @@ -333420,6 +352639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333435,12 +352656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f97fe2" } ], @@ -333471,6 +352693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333486,12 +352710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38826f" }, { @@ -333519,6 +352744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333534,12 +352761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "025095" } ], @@ -333570,6 +352798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333578,9 +352808,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"148730\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6766,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9937,\"z\":0.0169}},\"300c56\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"66b85c\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.7397,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9961,\"z\":180.0168}},\"6bb098\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9947,\"z\":0.0803}},\"7399a5\":{\"lock\":false,\"pos\":{\"x\":-11.6077,\"y\":1.6725,\"z\":10.5839},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"817446\":{\"lock\":false,\"pos\":{\"x\":-12.1298,\"y\":1.6721,\"z\":6.8296},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6955,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"c69095\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0003,\"z\":0.0168}},\"cf5c1d\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -333607,6 +352837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333625,9 +352857,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -333654,6 +352886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333662,9 +352896,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -333691,6 +352925,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333706,12 +352942,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774c0b" }, { @@ -333739,6 +352976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333754,12 +352993,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "323435" }, { @@ -333787,6 +353027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333802,12 +353044,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d13692" }, { @@ -333835,6 +353078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333850,12 +353095,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "945939" }, { @@ -333883,6 +353129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333898,12 +353146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5eb4c2" }, { @@ -333931,6 +353180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333946,12 +353197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d4c1e" }, { @@ -333979,6 +353231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -333994,12 +353248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "839314" }, { @@ -334027,6 +353282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334042,12 +353299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38826f" }, { @@ -334075,6 +353333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334090,12 +353350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f6ed8" }, { @@ -334123,6 +353384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334138,12 +353401,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76a7f5" }, { @@ -334171,6 +353435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334186,12 +353452,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa6ad6" }, { @@ -334219,6 +353486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334234,12 +353503,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c7570" } ], @@ -334270,6 +353540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334288,12 +353560,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -334320,6 +353593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334335,12 +353610,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598744" }, { @@ -334368,6 +353644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334383,12 +353661,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" } ], @@ -334419,6 +353698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334434,12 +353715,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc2822" }, { @@ -334467,6 +353749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334482,12 +353766,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -334515,6 +353800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334530,12 +353817,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -334563,6 +353851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334578,12 +353868,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -334611,6 +353902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334626,12 +353919,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -334659,6 +353953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334674,12 +353970,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" } ], @@ -334723,6 +354020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334763,12 +354062,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -334795,6 +354095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334810,12 +354112,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -334843,6 +354146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334858,12 +354163,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d50777" }, { @@ -334891,6 +354197,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334906,12 +354214,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86ca2a" }, { @@ -334939,6 +354248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -334954,12 +354265,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bf255" }, { @@ -334987,6 +354299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335002,12 +354316,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2927c6" }, { @@ -335035,6 +354350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335050,12 +354367,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -335083,6 +354401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335098,12 +354418,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -335131,6 +354452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335146,12 +354469,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b2c36" }, { @@ -335179,6 +354503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335194,12 +354520,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc896" }, { @@ -335227,6 +354554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335242,12 +354571,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -335275,6 +354605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335290,12 +354622,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa340" }, { @@ -335323,6 +354656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335338,12 +354673,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0872f7" }, { @@ -335371,6 +354707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335386,12 +354724,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -335419,6 +354758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335434,12 +354775,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47bd50" }, { @@ -335467,6 +354809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335482,12 +354826,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -335515,6 +354860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335530,12 +354877,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf90c6" }, { @@ -335563,6 +354911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335578,12 +354928,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -335611,6 +354962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335626,12 +354979,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e15d" }, { @@ -335659,6 +355013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335674,12 +355030,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -335707,6 +355064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335722,12 +355081,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -335755,6 +355115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335770,12 +355132,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774f5f" }, { @@ -335803,6 +355166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335818,12 +355183,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -335851,6 +355217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335866,12 +355234,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d18a7d" }, { @@ -335899,6 +355268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335914,12 +355285,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a1943" } ], @@ -335950,6 +355322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -335969,12 +355343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -336001,6 +355376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336016,12 +355393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c30682" }, { @@ -336049,6 +355427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336064,12 +355444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d52dd" }, { @@ -336097,6 +355478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336112,12 +355495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce775" } ], @@ -336148,6 +355532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336167,12 +355553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -336199,6 +355586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336214,12 +355603,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "318613" }, { @@ -336247,6 +355637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336262,12 +355654,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d3634" }, { @@ -336295,6 +355688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336310,12 +355705,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae9723" } ], @@ -336346,6 +355742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336361,12 +355759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c69095" }, { @@ -336394,6 +355793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336409,12 +355810,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7399a5" }, { @@ -336442,6 +355844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336457,12 +355861,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -336490,6 +355895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336509,12 +355916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -336541,6 +355949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336556,12 +355966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f97fe2" }, { @@ -336589,6 +356000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336604,12 +356017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ce8bf" }, { @@ -336637,6 +356051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336652,12 +356068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fcb18" } ], @@ -336688,6 +356105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336703,12 +356122,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf5c1d" } ], @@ -336739,6 +356159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336747,9 +356169,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0b6efa\":{\"lock\":false,\"pos\":{\"x\":-11.5922,\"y\":1.6725,\"z\":7.5505},\"rot\":{\"x\":359.9201,\"y\":269.9959,\"z\":0.0169}},\"17a731\":{\"lock\":false,\"pos\":{\"x\":1.6955,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"64e243\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6766,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"817446\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"81c2f9\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9874,\"z\":0.0803}},\"b711b7\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9883,\"z\":0.0169}},\"bca98b\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0032,\"z\":0.0803}},\"c69095\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9883,\"z\":0.0169}},\"e82e35\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -336776,6 +356198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336794,9 +356218,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -336823,6 +356247,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336831,9 +356257,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -336860,6 +356286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336875,12 +356303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d4c1e" }, { @@ -336908,6 +356337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336923,12 +356354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "803008" }, { @@ -336956,6 +356388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -336971,12 +356405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774c0b" }, { @@ -337004,6 +356439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337019,12 +356456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76a7f5" }, { @@ -337052,6 +356490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337067,12 +356507,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "839314" }, { @@ -337100,6 +356541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337115,12 +356558,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "945939" }, { @@ -337148,6 +356592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337163,12 +356609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c7570" }, { @@ -337196,6 +356643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337211,12 +356660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa6ad6" }, { @@ -337244,6 +356694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337259,12 +356711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a0757" }, { @@ -337292,6 +356745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337311,12 +356766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -337343,6 +356799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337358,12 +356816,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d13692" }, { @@ -337391,6 +356850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337406,12 +356867,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "323435" }, { @@ -337439,6 +356901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337454,12 +356918,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5eb4c2" } ], @@ -337493,6 +356958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337508,12 +356975,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -337541,6 +357009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337559,12 +357029,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -337591,6 +357062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337606,12 +357079,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598744" }, { @@ -337639,6 +357113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337654,12 +357130,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" } ], @@ -337690,6 +357167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337705,12 +357184,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -337738,6 +357218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337753,12 +357235,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -337786,6 +357269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337801,12 +357286,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5e76a" }, { @@ -337834,6 +357320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337849,12 +357337,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -337882,6 +357371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337897,12 +357388,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7399a5" }, { @@ -337930,6 +357422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337945,12 +357439,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -337978,6 +357473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -337993,12 +357490,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" } ], @@ -338042,6 +357540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338082,12 +357582,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -338114,6 +357615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338129,12 +357632,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -338162,6 +357666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338177,12 +357683,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f26ea" }, { @@ -338210,6 +357717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338225,12 +357734,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -338258,6 +357768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338273,12 +357785,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bf255" }, { @@ -338306,6 +357819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338321,12 +357836,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2927c6" }, { @@ -338354,6 +357870,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338369,12 +357887,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -338402,6 +357921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338417,12 +357938,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -338450,6 +357972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338465,12 +357989,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b2c36" }, { @@ -338498,6 +358023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338513,12 +358040,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc896" }, { @@ -338546,6 +358074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338561,12 +358091,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -338594,6 +358125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338609,12 +358142,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa340" }, { @@ -338642,6 +358176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338657,12 +358193,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0872f7" }, { @@ -338690,6 +358227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338705,12 +358244,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -338738,6 +358278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338753,12 +358295,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47bd50" }, { @@ -338786,6 +358329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338801,12 +358346,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -338834,6 +358380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338849,12 +358397,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf90c6" }, { @@ -338882,6 +358431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338897,12 +358448,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -338930,6 +358482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338945,12 +358499,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e15d" }, { @@ -338978,6 +358533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -338993,12 +358550,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -339026,6 +358584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339041,12 +358601,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -339074,6 +358635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339089,12 +358652,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774f5f" }, { @@ -339122,6 +358686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339137,12 +358703,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -339170,6 +358737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339185,12 +358754,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d18a7d" }, { @@ -339218,6 +358788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339233,12 +358805,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a1943" } ], @@ -339269,6 +358842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339288,12 +358863,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -339320,6 +358896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339335,12 +358913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a9dcc" }, { @@ -339368,6 +358947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339383,12 +358964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "107633" }, { @@ -339416,6 +358998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339431,12 +359015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7d7cc" } ], @@ -339467,6 +359052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339486,12 +359073,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -339518,6 +359106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339533,12 +359123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53cf0a" }, { @@ -339566,6 +359157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339581,12 +359174,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d3634" }, { @@ -339614,6 +359208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339629,12 +359225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae9723" } ], @@ -339665,6 +359262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339680,12 +359279,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c69095" }, { @@ -339713,6 +359313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339735,12 +359337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -339767,6 +359370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339782,12 +359387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b634cc" }, { @@ -339815,6 +359421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339830,12 +359438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88055" }, { @@ -339863,6 +359472,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339878,12 +359489,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5499a4" }, { @@ -339911,6 +359523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339926,12 +359540,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dc445" }, { @@ -339959,6 +359574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -339974,12 +359591,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b4513" }, { @@ -340007,6 +359625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340022,12 +359642,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5b434" } ], @@ -340058,6 +359679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340073,12 +359696,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -340106,6 +359730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340125,12 +359751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -340157,6 +359784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340172,12 +359801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ce8bf" }, { @@ -340205,6 +359835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340220,12 +359852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fcb18" }, { @@ -340253,6 +359886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340268,12 +359903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f97fe2" } ], @@ -340304,6 +359940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340319,12 +359957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b711b7" } ], @@ -340355,6 +359994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340363,9 +360004,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"04a162\":{\"lock\":false,\"pos\":{\"x\":1.6955,\"y\":1.5583,\"z\":14.279},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"078f41\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0154,\"z\":0.0169}},\"0b6efa\":{\"lock\":false,\"pos\":{\"x\":-11.2956,\"y\":1.6722,\"z\":8.1598},\"rot\":{\"x\":359.9201,\"y\":270.0205,\"z\":0.0168}},\"397fe8\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"6a0757\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"817446\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"9ed94a\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9918,\"z\":0.0803}},\"aa6ad6\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"bca98b\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0028,\"z\":0.0803}},\"c69095\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0154,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -340392,6 +360033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340410,9 +360053,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -340439,6 +360082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340447,9 +360092,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -340476,6 +360121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340491,12 +360138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "945939" }, { @@ -340524,6 +360172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340539,12 +360189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d4c1e" }, { @@ -340572,6 +360223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340592,12 +360245,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -340624,6 +360278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340639,12 +360295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c7570" }, { @@ -340672,6 +360329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340687,12 +360346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ce8bf" }, { @@ -340720,6 +360380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340735,12 +360397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fcb18" }, { @@ -340768,6 +360431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340783,12 +360448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f97fe2" } ], @@ -340819,6 +360485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340838,12 +360506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -340870,6 +360539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340885,12 +360556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d13692" }, { @@ -340918,6 +360590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340933,12 +360607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "323435" }, { @@ -340966,6 +360641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -340981,12 +360658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5eb4c2" } ], @@ -341017,6 +360695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341032,12 +360712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76a7f5" }, { @@ -341065,6 +360746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341080,12 +360763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774c0b" }, { @@ -341113,6 +360797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341128,12 +360814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "803008" }, { @@ -341161,6 +360848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341176,12 +360865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "839314" } ], @@ -341212,6 +360902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341227,12 +360919,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7399a5" }, { @@ -341260,6 +360953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341278,12 +360973,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -341310,6 +361006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341325,12 +361023,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598744" }, { @@ -341358,6 +361057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341373,12 +361074,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" } ], @@ -341409,6 +361111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341424,12 +361128,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -341457,6 +361162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341472,12 +361179,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -341505,6 +361213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341520,12 +361230,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -341553,6 +361264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341568,12 +361281,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -341601,6 +361315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341616,12 +361332,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5e76a" }, { @@ -341649,6 +361366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341664,12 +361383,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -341697,6 +361417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341712,12 +361434,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" } ], @@ -341761,6 +361484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341801,12 +361526,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -341833,6 +361559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341848,12 +361576,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bf255" }, { @@ -341881,6 +361610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341896,12 +361627,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2927c6" }, { @@ -341929,6 +361661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341944,12 +361678,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -341977,6 +361712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -341992,12 +361729,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -342025,6 +361763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342040,12 +361780,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b2c36" }, { @@ -342073,6 +361814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342088,12 +361831,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc896" }, { @@ -342121,6 +361865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342136,12 +361882,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -342169,6 +361916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342184,12 +361933,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa340" }, { @@ -342217,6 +361967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342232,12 +361984,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0872f7" }, { @@ -342265,6 +362018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342280,12 +362035,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -342313,6 +362069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342328,12 +362086,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47bd50" }, { @@ -342361,6 +362120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342376,12 +362137,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -342409,6 +362171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342424,12 +362188,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf90c6" }, { @@ -342457,6 +362222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342472,12 +362239,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -342505,6 +362273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342520,12 +362290,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e15d" }, { @@ -342553,6 +362324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342568,12 +362341,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -342601,6 +362375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342616,12 +362392,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -342649,6 +362426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342664,12 +362443,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774f5f" }, { @@ -342697,6 +362477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342712,12 +362494,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -342745,6 +362528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342760,12 +362545,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d18a7d" }, { @@ -342793,6 +362579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342808,12 +362596,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a1943" }, { @@ -342841,6 +362630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342856,12 +362647,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -342889,6 +362681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342904,12 +362698,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f26ea" }, { @@ -342937,6 +362732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -342952,12 +362749,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" } ], @@ -342988,6 +362786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343007,12 +362807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -343039,6 +362840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343054,12 +362857,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a9dcc" }, { @@ -343087,6 +362891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343102,12 +362908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "107633" }, { @@ -343135,6 +362942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343150,12 +362959,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7d7cc" } ], @@ -343186,6 +362996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343205,12 +363017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -343237,6 +363050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343252,12 +363067,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53cf0a" }, { @@ -343285,6 +363101,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343300,12 +363118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02cc53" }, { @@ -343333,6 +363152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343348,12 +363169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c450f" } ], @@ -343384,6 +363206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343399,12 +363223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c69095" }, { @@ -343432,6 +363257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343454,12 +363281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -343486,6 +363314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343501,12 +363331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b634cc" }, { @@ -343534,6 +363365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343549,12 +363382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88055" }, { @@ -343582,6 +363416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343597,12 +363433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5499a4" }, { @@ -343630,6 +363467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343645,12 +363484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dc445" }, { @@ -343678,6 +363518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343693,12 +363535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5b434" }, { @@ -343726,6 +363569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343741,12 +363586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b4513" } ], @@ -343777,6 +363623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343792,12 +363640,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -343825,6 +363674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343840,12 +363691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa6ad6" }, { @@ -343873,6 +363725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343888,12 +363742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a0757" }, { @@ -343921,6 +363776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343936,12 +363793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "078f41" } ], @@ -343972,6 +363830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -343980,9 +363840,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0b6efa\":{\"lock\":false,\"pos\":{\"x\":-12.0161,\"y\":1.6728,\"z\":6.7037},\"rot\":{\"x\":359.9201,\"y\":270.0052,\"z\":0.0169}},\"5f4b00\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"6c7570\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"7d512a\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0061,\"z\":0.0803}},\"803008\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"817446\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.5762},\"rot\":{\"x\":359.9201,\"y\":269.9754,\"z\":0.0169}},\"bca98b\":{\"lock\":false,\"pos\":{\"x\":-2.7264,\"y\":1.6566,\"z\":0.3753},\"rot\":{\"x\":0.0167,\"y\":180.0867,\"z\":0.0803}},\"c69095\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9889,\"z\":0.0169}},\"d89e46\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9889,\"z\":0.0169}},\"fce372\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":225.0074,\"z\":0.0687}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -344009,6 +363869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344027,9 +363889,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -344056,6 +363918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344071,12 +363935,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -344104,6 +363969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344119,12 +363986,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7399a5" }, { @@ -344152,6 +364020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344170,12 +364040,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -344202,6 +364073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344217,12 +364090,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598744" }, { @@ -344250,6 +364124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344265,12 +364141,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" } ], @@ -344301,6 +364178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344316,12 +364195,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -344349,6 +364229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344364,12 +364246,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -344397,6 +364280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344412,12 +364297,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -344445,6 +364331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344460,12 +364348,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -344493,6 +364382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344508,12 +364399,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5e76a" }, { @@ -344541,6 +364433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344556,12 +364450,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -344589,6 +364484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344597,9 +364494,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -344626,6 +364523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344641,12 +364540,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76a7f5" }, { @@ -344674,6 +364574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344689,12 +364591,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a0757" }, { @@ -344722,6 +364625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344737,12 +364642,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa6ad6" }, { @@ -344770,6 +364676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344785,12 +364693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774c0b" }, { @@ -344818,6 +364727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344833,12 +364744,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d4c1e" }, { @@ -344866,6 +364778,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344881,12 +364795,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "839314" }, { @@ -344914,6 +364829,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344929,12 +364846,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "945939" }, { @@ -344962,6 +364880,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -344981,12 +364901,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -345013,6 +364934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345028,12 +364951,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fcb18" }, { @@ -345061,6 +364985,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345076,12 +365002,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ce8bf" }, { @@ -345109,6 +365036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345124,12 +365053,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f97fe2" } ], @@ -345160,6 +365090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345179,12 +365111,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -345211,6 +365144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345226,12 +365161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5eb4c2" }, { @@ -345259,6 +365195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345274,12 +365212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "323435" }, { @@ -345307,6 +365246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345322,12 +365263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d13692" } ], @@ -345377,6 +365319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345417,12 +365361,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -345449,6 +365394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345464,12 +365411,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bf255" }, { @@ -345497,6 +365445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345512,12 +365462,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2927c6" }, { @@ -345545,6 +365496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345560,12 +365513,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -345593,6 +365547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345608,12 +365564,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -345641,6 +365598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345656,12 +365615,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b2c36" }, { @@ -345689,6 +365649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345704,12 +365666,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc896" }, { @@ -345737,6 +365700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345752,12 +365717,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -345785,6 +365751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345800,12 +365768,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa340" }, { @@ -345833,6 +365802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345848,12 +365819,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0872f7" }, { @@ -345881,6 +365853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345896,12 +365870,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -345929,6 +365904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345944,12 +365921,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47bd50" }, { @@ -345977,6 +365955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -345992,12 +365972,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -346025,6 +366006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346040,12 +366023,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf90c6" }, { @@ -346073,6 +366057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346088,12 +366074,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -346121,6 +366108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346136,12 +366125,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e15d" }, { @@ -346169,6 +366159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346184,12 +366176,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -346217,6 +366210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346232,12 +366227,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -346265,6 +366261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346280,12 +366278,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774f5f" }, { @@ -346313,6 +366312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346328,12 +366329,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -346361,6 +366363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346376,12 +366380,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d18a7d" }, { @@ -346409,6 +366414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346424,12 +366431,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a1943" }, { @@ -346457,6 +366465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346472,12 +366482,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -346505,6 +366516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346520,12 +366533,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f26ea" }, { @@ -346553,6 +366567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346568,12 +366584,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" } ], @@ -346604,6 +366621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346623,12 +366642,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -346655,6 +366675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346670,12 +366692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a9dcc" }, { @@ -346703,6 +366726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346718,12 +366743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "107633" }, { @@ -346751,6 +366777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346766,12 +366794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7d7cc" } ], @@ -346802,6 +366831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346821,12 +366852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -346853,6 +366885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346868,12 +366902,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53cf0a" }, { @@ -346901,6 +366936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346916,12 +366953,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1962b" }, { @@ -346949,6 +366987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -346964,12 +367004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33dafa" } ], @@ -347000,6 +367041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347015,12 +367058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c69095" }, { @@ -347048,6 +367092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347070,12 +367116,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -347102,6 +367149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347117,12 +367166,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b634cc" }, { @@ -347150,6 +367200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347165,12 +367217,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88055" }, { @@ -347198,6 +367251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347213,12 +367268,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5499a4" }, { @@ -347246,6 +367302,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347261,12 +367319,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dc445" }, { @@ -347294,6 +367353,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347309,12 +367370,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5b434" }, { @@ -347342,6 +367404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347357,12 +367421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b4513" } ], @@ -347393,6 +367458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347408,12 +367475,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -347441,6 +367509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347456,12 +367526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "803008" }, { @@ -347489,6 +367560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347504,12 +367577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c7570" }, { @@ -347537,6 +367611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347552,12 +367628,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d89e46" } ], @@ -347588,6 +367665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347606,9 +367685,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Labyrinths of Lunacy'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4dcee" }, { @@ -347636,6 +367715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347645,9 +367726,9 @@ "Tablet": { "PageURL": "https://docs.google.com/viewer?url=https://images-cdn.fantasyflightgames.com/filer_public/3a/bc/3abc09ae-b9f5-4426-863f-540c548870ee/the_labyrinths_of_lunacy_rules.pdf" }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ef0ce" } ], @@ -347698,6 +367779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347726,9 +367809,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0ba29a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"0f58ed\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6817,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.0023,\"z\":0.0169}},\"227fad\":{\"lock\":false,\"pos\":{\"x\":-0.2311,\"y\":1.6586,\"z\":-10.4794},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"37760f\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"4146bf\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.6976,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"45facd\":{\"lock\":false,\"pos\":{\"x\":-1.4655,\"y\":1.5473,\"z\":-26.9304},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"56a08d\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0014,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0016,\"z\":359.9201}},\"74eec6\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9981,\"z\":0.0687}},\"888a6b\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"89314b\":{\"lock\":false,\"pos\":{\"x\":-27.2138,\"y\":1.6206,\"z\":3.9104},\"rot\":{\"x\":359.9316,\"y\":314.9952,\"z\":359.9554}},\"9a82ba\":{\"lock\":false,\"pos\":{\"x\":-27.057,\"y\":1.6192,\"z\":0.0521},\"rot\":{\"x\":359.92,\"y\":270.1797,\"z\":0.0166}},\"9a9f9a\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.995,\"z\":0.0169}},\"a78d38\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":0.0169}},\"b1e599\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4414},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.8865,\"y\":1.5827,\"z\":-14.4341},\"rot\":{\"x\":359.9197,\"y\":270.0306,\"z\":0.0168}},\"c630c5\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":0.0015,\"z\":359.92}},\"d71f11\":{\"lock\":false,\"pos\":{\"x\":-3.3174,\"y\":1.6622,\"z\":14.9915},\"rot\":{\"x\":359.9197,\"y\":269.9979,\"z\":0.0168}},\"fd4231\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7291,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -347755,6 +367838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347770,12 +367855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ba29a" }, { @@ -347803,6 +367889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347818,12 +367906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f58ed" }, { @@ -347851,6 +367940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347872,12 +367963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -347904,6 +367996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347919,12 +368013,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e26f60" }, { @@ -347952,6 +368047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -347967,12 +368064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -348000,6 +368098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348015,12 +368115,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be354d" }, { @@ -348048,6 +368149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348063,12 +368166,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6779fe" }, { @@ -348096,6 +368200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348111,12 +368217,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ac93f" } ], @@ -348147,6 +368254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348165,12 +368274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -348197,6 +368307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348212,12 +368324,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1c002" }, { @@ -348245,6 +368358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348260,12 +368375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ea038" } ], @@ -348296,6 +368412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348311,12 +368429,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4146bf" }, { @@ -348344,6 +368463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348359,12 +368480,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45facd", "States": { "13": { @@ -348392,6 +368514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348407,12 +368531,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ce342" }, "12": { @@ -348440,6 +368565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348455,12 +368582,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "537250" }, "11": { @@ -348488,6 +368616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348503,12 +368633,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e04c72" }, "10": { @@ -348536,6 +368667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348551,12 +368684,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "630d74" }, "9": { @@ -348584,6 +368718,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348599,12 +368735,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9e4e9" }, "8": { @@ -348632,6 +368769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348647,12 +368786,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dec02a" }, "7": { @@ -348680,6 +368820,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348695,12 +368837,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a81b44" }, "6": { @@ -348728,6 +368871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348743,12 +368888,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "212aec" }, "2": { @@ -348776,6 +368922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348791,12 +368939,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8aff87" }, "3": { @@ -348824,6 +368973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348839,12 +368990,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5e605" }, "4": { @@ -348872,6 +369024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348887,12 +369041,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7ed10" }, "5": { @@ -348920,6 +369075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348935,12 +369092,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b49e" } } @@ -348970,6 +369128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -348988,9 +369148,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56a08d", "States": { "2": { @@ -349018,6 +369178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349036,9 +369198,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -349066,6 +369228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349084,9 +369248,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -349116,6 +369280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349134,9 +369300,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -349164,6 +369330,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349182,9 +369350,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -349212,6 +369380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349230,9 +369400,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -349262,6 +369432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349280,9 +369452,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -349309,6 +369481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349335,12 +369509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -349367,6 +369542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349382,12 +369559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad9989" }, { @@ -349415,6 +369593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349430,12 +369610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "371ecc" }, { @@ -349463,6 +369644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349478,12 +369661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4bac7" }, { @@ -349511,6 +369695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349526,12 +369712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bb58e" }, { @@ -349559,6 +369746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349574,12 +369763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d48b3b" }, { @@ -349607,6 +369797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349622,12 +369814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c7b37" }, { @@ -349655,6 +369848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349670,12 +369865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6506d9" }, { @@ -349703,6 +369899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349718,12 +369916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a7486" }, { @@ -349751,6 +369950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349766,12 +369967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae0f38" }, { @@ -349799,6 +370001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349814,12 +370018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d4cbc" } ], @@ -349850,6 +370055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349865,12 +370072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -349898,6 +370106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349913,12 +370123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -349946,6 +370157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -349961,12 +370174,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -349994,6 +370208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350009,12 +370225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -350042,6 +370259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350057,12 +370276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -350090,6 +370310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350109,12 +370331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -350141,6 +370364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350156,12 +370381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -350189,6 +370415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350204,12 +370432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "363bfa" }, { @@ -350237,6 +370466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350252,12 +370483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "870ee1" } ], @@ -350288,6 +370520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350307,12 +370541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -350339,6 +370574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350354,12 +370591,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -350387,6 +370625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350402,12 +370642,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19a53b" }, { @@ -350435,6 +370676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350450,12 +370693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa6826" } ], @@ -350486,6 +370730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350505,12 +370751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -350537,6 +370784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350552,12 +370801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -350585,6 +370835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350600,12 +370852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f2492" }, { @@ -350633,6 +370886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350648,12 +370903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3480cc" } ], @@ -350684,6 +370940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350703,12 +370961,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -350735,6 +370994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350750,12 +371011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -350783,6 +371045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350798,12 +371062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b50ce8" }, { @@ -350831,6 +371096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350846,12 +371113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4441df" } ], @@ -350882,6 +371150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350901,12 +371171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -350933,6 +371204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350948,12 +371221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -350981,6 +371255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -350996,12 +371272,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c4124" }, { @@ -351029,6 +371306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351044,12 +371323,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7613e0" } ], @@ -351080,6 +371360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351095,12 +371377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c76d9" }, { @@ -351128,6 +371411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351147,12 +371432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -351179,6 +371465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351194,12 +371482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9de2ac" }, { @@ -351227,6 +371516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351242,12 +371533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f4625" }, { @@ -351275,6 +371567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351290,12 +371584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" } ], @@ -351326,6 +371621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351341,12 +371638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5630c2" }, { @@ -351374,6 +371672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351395,12 +371695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -351427,6 +371728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351442,12 +371745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70e5f9" }, { @@ -351475,6 +371779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351490,12 +371796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3ed47" }, { @@ -351523,6 +371830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351538,12 +371847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "423356" }, { @@ -351571,6 +371881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351586,12 +371898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f24e3" }, { @@ -351619,6 +371932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351634,12 +371949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "120736" } ], @@ -351686,6 +372002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351704,12 +372022,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -351736,6 +372055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351751,12 +372072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "463cbd" }, { @@ -351784,6 +372106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351799,12 +372123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad9989" } ], @@ -351835,6 +372160,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351853,9 +372180,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89314b", "States": { "2": { @@ -351883,6 +372210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351901,9 +372230,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -351931,6 +372260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351949,9 +372280,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -351981,6 +372312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -351999,9 +372332,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a82ba", "States": { "2": { @@ -352029,6 +372362,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352047,9 +372382,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -352077,6 +372412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352095,9 +372432,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -352127,6 +372464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352142,12 +372481,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a9f9a" }, { @@ -352175,6 +372515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352190,12 +372532,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a78d38" }, { @@ -352223,6 +372566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352238,12 +372583,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1e599" }, { @@ -352271,6 +372617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352289,9 +372637,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Excelsior'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbb70a" }, { @@ -352319,6 +372667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352337,9 +372687,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c630c5", "States": { "2": { @@ -352367,6 +372717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352385,9 +372737,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -352415,6 +372767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352433,9 +372787,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -352465,6 +372819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352480,12 +372836,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d71f11" }, { @@ -352513,6 +372870,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352551,12 +372910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -352583,6 +372943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352598,12 +372960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b413df" }, { @@ -352631,6 +372994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352646,12 +373011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -352679,6 +373045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352694,12 +373062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66b07b" }, { @@ -352727,6 +373096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352742,12 +373113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -352775,6 +373147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352790,12 +373164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -352823,6 +373198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352838,12 +373215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "574dae" }, { @@ -352871,6 +373249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352886,12 +373266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99bf87" }, { @@ -352919,6 +373300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352934,12 +373317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -352967,6 +373351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -352982,12 +373368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c958cc" }, { @@ -353015,6 +373402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353030,12 +373419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -353063,6 +373453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353078,12 +373470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -353111,6 +373504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353126,12 +373521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd162" }, { @@ -353159,6 +373555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353174,12 +373572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -353207,6 +373606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353222,12 +373623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -353255,6 +373657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353270,12 +373674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -353303,6 +373708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353318,12 +373725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ceeb1" }, { @@ -353351,6 +373759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353366,12 +373776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -353399,6 +373810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353414,12 +373827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -353447,6 +373861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353462,12 +373878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "953a77" }, { @@ -353495,6 +373912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353510,12 +373929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c7c45" }, { @@ -353543,6 +373963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353558,12 +373980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23b849" }, { @@ -353591,6 +374014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353606,12 +374031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" } ], @@ -353665,6 +374091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353683,9 +374111,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"578bcb\":{\"lock\":false,\"pos\":{\"x\":-10.5053,\"y\":1.4873,\"z\":-30.0198},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"57e33a\":{\"lock\":false,\"pos\":{\"x\":1.837,\"y\":1.5434,\"z\":-24.5812},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"82e1ed\":{\"lock\":false,\"pos\":{\"x\":-3.7965,\"y\":1.5822,\"z\":-15.4413},\"rot\":{\"x\":359.9197,\"y\":269.9945,\"z\":0.0168}},\"9ff406\":{\"lock\":false,\"pos\":{\"x\":-10.4343,\"y\":1.4893,\"z\":-22.9196},\"rot\":{\"x\":359.9201,\"y\":269.9976,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -353712,6 +374140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353730,9 +374160,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"06998d\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0346,\"z\":0.0803}},\"17291b\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7344,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9972,\"z\":180.0168}},\"41f836\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"80f19f\":{\"lock\":false,\"pos\":{\"x\":1.7124,\"y\":1.5408,\"z\":-34.1378},\"rot\":{\"x\":359.9201,\"y\":269.9801,\"z\":0.0169}},\"85b67c\":{\"lock\":false,\"pos\":{\"x\":1.6957,\"y\":1.5583,\"z\":14.273},\"rot\":{\"x\":359.9551,\"y\":224.999,\"z\":0.0687}},\"964685\":{\"lock\":false,\"pos\":{\"x\":-12.2014,\"y\":1.6745,\"z\":11.6578},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"9ed124\":{\"lock\":false,\"pos\":{\"x\":-5.618,\"y\":1.7302,\"z\":-10.4319},\"rot\":{\"x\":3.3649,\"y\":270.0142,\"z\":0.017}},\"afc7b5\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6339,\"z\":-10.4413},\"rot\":{\"x\":359.9168,\"y\":269.9985,\"z\":0.0159}},\"c81564\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9621,\"z\":0.0802}},\"cfa863\":{\"lock\":false,\"pos\":{\"x\":-11.8536,\"y\":1.6822,\"z\":8.1349},\"rot\":{\"x\":359.9201,\"y\":269.9986,\"z\":180.0169}},\"d43cb8\":{\"lock\":false,\"pos\":{\"x\":-13.2795,\"y\":1.6705,\"z\":-13.6664},\"rot\":{\"x\":0.0169,\"y\":180.0015,\"z\":180.0799}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -353759,6 +374189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353774,12 +374206,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d43cb8" }, { @@ -353807,6 +374240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353822,12 +374257,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41f836" }, { @@ -353855,6 +374291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353882,12 +374320,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -353914,6 +374353,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353929,12 +374370,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8187f" }, { @@ -353962,6 +374404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -353977,12 +374421,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "500bf1" }, { @@ -354010,6 +374455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354025,12 +374472,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5e2f5" }, { @@ -354058,6 +374506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354073,12 +374523,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fde12" }, { @@ -354106,6 +374557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354121,12 +374574,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb6b7a" }, { @@ -354154,6 +374608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354169,12 +374625,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cf015" }, { @@ -354202,6 +374659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354217,12 +374676,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dd75b" }, { @@ -354250,6 +374710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354265,12 +374727,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ea1c7" }, { @@ -354298,6 +374761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354313,12 +374778,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46ecbb" }, { @@ -354346,6 +374812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354361,12 +374829,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8bc37" }, { @@ -354394,6 +374863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354409,12 +374880,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90dfd" } ], @@ -354445,6 +374917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354467,12 +374941,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -354499,6 +374974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354514,12 +374991,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72726a" }, { @@ -354547,6 +375025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354562,12 +375042,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e97907" }, { @@ -354595,6 +375076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354610,12 +375093,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9d9d7" }, { @@ -354643,6 +375127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354658,12 +375144,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fba81e" }, { @@ -354691,6 +375178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354706,12 +375195,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "915fda" }, { @@ -354739,6 +375229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354754,12 +375246,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d9573" } ], @@ -354790,6 +375283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354808,9 +375303,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -354837,6 +375332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354852,12 +375349,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf96b9" }, { @@ -354885,6 +375383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354900,12 +375400,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc674e" }, { @@ -354933,6 +375434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -354954,12 +375457,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -354986,6 +375490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355001,12 +375507,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c32ef" }, { @@ -355034,6 +375541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355049,12 +375558,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "768755" }, { @@ -355082,6 +375592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355097,12 +375609,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17e165" }, { @@ -355130,6 +375643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355145,12 +375660,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8ae8" }, { @@ -355178,6 +375694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355193,12 +375711,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19bf4f" } ], @@ -355229,6 +375748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355244,12 +375765,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdbf89" }, { @@ -355277,6 +375799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355295,12 +375819,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -355327,6 +375852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355342,12 +375869,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a91c0" }, { @@ -355375,6 +375903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355390,12 +375920,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60018e" } ], @@ -355426,6 +375957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355441,12 +375974,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1484da" } ], @@ -355490,6 +376024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355509,12 +376045,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -355541,6 +376078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355556,12 +376095,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93dd4c" }, { @@ -355589,6 +376129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355604,12 +376146,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "158b35" }, { @@ -355637,6 +376180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355652,12 +376197,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c715c9" } ], @@ -355688,6 +376234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355706,7 +376254,8 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2708": { "FaceURL": "https://i.imgur.com/HLQOkvy.jpg", @@ -355714,12 +376263,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -355746,6 +376296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355761,12 +376313,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "023684" }, { @@ -355794,6 +376347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355809,12 +376364,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05b7a2" } ], @@ -355845,6 +376401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355884,7 +376442,8 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2662": { "FaceURL": "https://i.imgur.com/HLQOkvy.jpg", @@ -355892,12 +376451,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -355924,6 +376484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355939,12 +376501,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c67a9" }, { @@ -355972,6 +376535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -355987,12 +376552,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9283d5" }, { @@ -356020,6 +376586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356035,12 +376603,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90dfd" }, { @@ -356068,6 +376637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356083,12 +376654,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6e9f2" }, { @@ -356116,6 +376688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356131,12 +376705,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c2807" }, { @@ -356164,6 +376739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356179,12 +376756,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8948ac" }, { @@ -356212,6 +376790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356227,12 +376807,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f210df" }, { @@ -356260,6 +376841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356275,12 +376858,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3ee15" }, { @@ -356308,6 +376892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356323,12 +376909,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7eda6c" }, { @@ -356356,6 +376943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356371,12 +376960,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f2bda" }, { @@ -356404,6 +376994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356419,12 +377011,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "500bf1" }, { @@ -356452,6 +377045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356467,12 +377062,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c118b2" }, { @@ -356500,6 +377096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356515,12 +377113,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "173e8a" }, { @@ -356548,6 +377147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356563,12 +377164,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "563177" }, { @@ -356596,6 +377198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356611,12 +377215,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fde12" }, { @@ -356644,6 +377249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356659,12 +377266,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a03b8" }, { @@ -356692,6 +377300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356707,12 +377317,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "676e6a" }, { @@ -356740,6 +377351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356755,12 +377368,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cbc9d" }, { @@ -356788,6 +377402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356803,12 +377419,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4dd7a" }, { @@ -356836,6 +377453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356851,12 +377470,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc639e" }, { @@ -356884,6 +377504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356899,12 +377521,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef54c7" }, { @@ -356932,6 +377555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356947,12 +377572,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0aae5d" }, { @@ -356980,6 +377606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -356995,12 +377623,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d113d1" } ], @@ -357031,6 +377660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357045,12 +377676,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {0,0,0,98}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,1.45},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1, y=1, z=1},\r\n font_size=350,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "afc7b5" }, { @@ -357078,6 +377710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357092,12 +377726,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {0,0,0,98}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,1.45},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1, y=1, z=1},\r\n font_size=350,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "9ed124" }, { @@ -357125,6 +377760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357140,12 +377777,13 @@ "NumWidth": 5, "NumHeight": 6, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80f19f", "States": { "4": { @@ -357173,6 +377811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357188,12 +377828,13 @@ "NumWidth": 5, "NumHeight": 6, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04c4b4" }, "5": { @@ -357221,6 +377862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357236,12 +377879,13 @@ "NumWidth": 5, "NumHeight": 6, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac3d9c" }, "2": { @@ -357269,6 +377913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357284,12 +377930,13 @@ "NumWidth": 5, "NumHeight": 6, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c804f7" }, "3": { @@ -357317,6 +377964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357332,12 +377981,13 @@ "NumWidth": 5, "NumHeight": 6, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4087fd" } } @@ -357390,6 +378040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357405,12 +378057,13 @@ "NumWidth": 5, "NumHeight": 6, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57e33a", "States": { "5": { @@ -357438,6 +378091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357453,12 +378108,13 @@ "NumWidth": 5, "NumHeight": 6, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "337b16" }, "3": { @@ -357486,6 +378142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357501,12 +378159,13 @@ "NumWidth": 5, "NumHeight": 6, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2778c0" }, "4": { @@ -357534,6 +378193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357549,12 +378210,13 @@ "NumWidth": 5, "NumHeight": 6, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "565245" }, "2": { @@ -357582,6 +378244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357597,12 +378261,13 @@ "NumWidth": 5, "NumHeight": 6, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "865758" } } @@ -357632,6 +378297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357650,9 +378317,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Strange Aeons'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "82e1ed" }, { @@ -357680,6 +378347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357698,9 +378367,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"046379\":{\"lock\":false,\"pos\":{\"x\":-20.0426,\"y\":1.6127,\"z\":10.9861},\"rot\":{\"x\":359.9316,\"y\":314.9999,\"z\":359.9555}},\"0a7aa9\":{\"lock\":false,\"pos\":{\"x\":1.8043,\"y\":1.5406,\"z\":-34.3527},\"rot\":{\"x\":359.9201,\"y\":270.0178,\"z\":0.0168}},\"2b516a\":{\"lock\":false,\"pos\":{\"x\":-10.8742,\"y\":1.6707,\"z\":4.7825},\"rot\":{\"x\":359.9201,\"y\":270.019,\"z\":0.0168}},\"377362\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0803}},\"3e5b77\":{\"lock\":false,\"pos\":{\"x\":-27.2225,\"y\":1.6216,\"z\":7.1061},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"41f836\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"446c93\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0061,\"z\":359.92}},\"45c2bd\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7611,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0008,\"z\":180.0168}},\"4cef7f\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0078,\"z\":0.0803}},\"4e1b71\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.006,\"z\":359.92}},\"7e34fb\":{\"lock\":false,\"pos\":{\"x\":-11.5408,\"y\":1.6649,\"z\":-14.9971},\"rot\":{\"x\":0.0169,\"y\":179.9994,\"z\":0.0799}},\"82ed12\":{\"lock\":false,\"pos\":{\"x\":-20.6463,\"y\":1.6124,\"z\":7.1657},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"893ca0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"913835\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"957a1e\":{\"lock\":false,\"pos\":{\"x\":-23.6806,\"y\":1.6179,\"z\":11.46},\"rot\":{\"x\":359.9831,\"y\":0.006,\"z\":359.92}},\"b7af99\":{\"lock\":false,\"pos\":{\"x\":-5.8297,\"y\":1.7191,\"z\":-10.4672},\"rot\":{\"x\":2.9776,\"y\":270.0087,\"z\":0.0167}},\"bb722a\":{\"lock\":false,\"pos\":{\"x\":-27.3364,\"y\":1.6207,\"z\":3.5967},\"rot\":{\"x\":359.9316,\"y\":315.0001,\"z\":359.9555}},\"d2de0e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6907,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"d5e312\":{\"lock\":false,\"pos\":{\"x\":-20.7701,\"y\":1.6115,\"z\":3.6738},\"rot\":{\"x\":0.0446,\"y\":45.0015,\"z\":359.9315}},\"e19c97\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6339,\"z\":-10.4412},\"rot\":{\"x\":359.9182,\"y\":269.9995,\"z\":0.0163}},\"ead562\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9907,\"z\":0.0169}},\"fb63e7\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"fcb007\":{\"lock\":false,\"pos\":{\"x\":-27.5292,\"y\":1.623,\"z\":10.5186},\"rot\":{\"x\":359.9747,\"y\":209.9999,\"z\":0.0777}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -357727,6 +378396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357742,12 +378413,13 @@ "NumWidth": 5, "NumHeight": 6, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a7aa9", "States": { "3": { @@ -357775,6 +378447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357790,12 +378464,13 @@ "NumWidth": 5, "NumHeight": 6, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e7c6" }, "2": { @@ -357823,6 +378498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357838,12 +378515,13 @@ "NumWidth": 5, "NumHeight": 6, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fbdac" } } @@ -357873,6 +378551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357888,12 +378568,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e34fb" }, { @@ -357921,6 +378602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357943,12 +378626,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -357975,6 +378659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -357990,12 +378676,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fba81e" }, { @@ -358023,6 +378710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358038,12 +378727,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d9573" }, { @@ -358071,6 +378761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358086,12 +378778,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "915fda" }, { @@ -358119,6 +378812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358134,12 +378829,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e97907" }, { @@ -358167,6 +378863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358182,12 +378880,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9d9d7" }, { @@ -358215,6 +378914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358230,12 +378931,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72726a" } ], @@ -358266,6 +378968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358284,9 +378988,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5e312", "States": { "2": { @@ -358314,6 +379018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358332,9 +379038,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -358362,6 +379068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358380,9 +379088,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -358412,6 +379120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358430,9 +379140,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82ed12", "States": { "2": { @@ -358460,6 +379170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358478,9 +379190,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -358508,6 +379220,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358526,9 +379240,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -358558,6 +379272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358573,12 +379289,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ead562" }, { @@ -358606,6 +379323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358624,9 +379343,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "046379", "States": { "2": { @@ -358654,6 +379373,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358672,9 +379393,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -358702,6 +379423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358720,9 +379443,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -358752,6 +379475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358770,9 +379495,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "957a1e", "States": { "2": { @@ -358800,6 +379525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358818,9 +379545,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -358848,6 +379575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358866,9 +379595,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -358898,6 +379627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358913,12 +379644,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2de0e" }, { @@ -358946,6 +379678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -358964,9 +379698,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcb007", "States": { "2": { @@ -358994,6 +379728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359012,9 +379748,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -359042,6 +379778,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359060,9 +379798,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -359092,6 +379830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359107,12 +379847,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e1b71" }, { @@ -359140,6 +379881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359155,12 +379898,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb63e7" }, { @@ -359188,6 +379932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359206,9 +379952,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb722a", "States": { "2": { @@ -359236,6 +379982,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359254,9 +380002,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -359284,6 +380032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359302,9 +380052,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -359334,6 +380084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359352,9 +380104,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e5b77", "States": { "2": { @@ -359382,6 +380134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359400,9 +380154,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -359430,6 +380184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359448,9 +380204,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -359480,6 +380236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359498,9 +380256,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "446c93", "States": { "2": { @@ -359528,6 +380286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359546,9 +380306,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -359576,6 +380336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359594,9 +380356,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -359626,6 +380388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359641,12 +380405,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "893ca0" }, { @@ -359674,6 +380439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359692,9 +380459,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -359722,6 +380489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359740,9 +380509,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -359770,6 +380539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359788,9 +380559,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -359820,6 +380591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359835,12 +380608,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41f836" }, { @@ -359868,6 +380642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359887,12 +380663,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -359919,6 +380696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359934,12 +380713,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ebdb5" }, { @@ -359967,6 +380747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -359982,12 +380764,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86be88" }, { @@ -360015,6 +380798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360030,12 +380815,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1ba64" } ], @@ -360066,6 +380852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360085,12 +380873,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -360117,6 +380906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360132,12 +380923,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c9c6b" }, { @@ -360165,6 +380957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360180,12 +380974,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f21c4" }, { @@ -360213,6 +381008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360228,12 +381025,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35de51" } ], @@ -360264,6 +381062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360308,12 +381108,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -360340,6 +381141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360355,12 +381158,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a63585" }, { @@ -360388,6 +381192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360403,12 +381209,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c67a9" }, { @@ -360436,6 +381243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360451,12 +381260,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9283d5" }, { @@ -360484,6 +381294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360499,12 +381311,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90dfd" }, { @@ -360532,6 +381345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360547,12 +381362,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b08291" }, { @@ -360580,6 +381396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360595,12 +381413,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "732df8" }, { @@ -360628,6 +381447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360643,12 +381464,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c2807" }, { @@ -360676,6 +381498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360691,12 +381515,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8948ac" }, { @@ -360724,6 +381549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360739,12 +381566,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f210df" }, { @@ -360772,6 +381600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360787,12 +381617,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3ee15" }, { @@ -360820,6 +381651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360835,12 +381668,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7eda6c" }, { @@ -360868,6 +381702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360883,12 +381719,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "500bf1" }, { @@ -360916,6 +381753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360931,12 +381770,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f2bda" }, { @@ -360964,6 +381804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -360979,12 +381821,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c0ea06" }, { @@ -361012,6 +381855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361027,12 +381872,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cf015" }, { @@ -361060,6 +381906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361075,12 +381923,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c118b2" }, { @@ -361108,6 +381957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361123,12 +381974,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fde12" }, { @@ -361156,6 +382008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361171,12 +382025,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "563177" }, { @@ -361204,6 +382059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361219,12 +382076,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d2ce8" }, { @@ -361252,6 +382110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361267,12 +382127,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a03b8" }, { @@ -361300,6 +382161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361315,12 +382178,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "676e6a" }, { @@ -361348,6 +382212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361363,12 +382229,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cbc9d" }, { @@ -361396,6 +382263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361411,12 +382280,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4dd7a" }, { @@ -361444,6 +382314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361459,12 +382331,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc639e" }, { @@ -361492,6 +382365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361507,12 +382382,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c26998" }, { @@ -361540,6 +382416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361555,12 +382433,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c64bf1" }, { @@ -361588,6 +382467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361603,12 +382484,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec101c" }, { @@ -361636,6 +382518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361651,12 +382535,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4212af" } ], @@ -361687,6 +382572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361705,9 +382592,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -361734,6 +382621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361749,12 +382638,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e0c5a" }, { @@ -361782,6 +382672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361797,12 +382689,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ce113" }, { @@ -361830,6 +382723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361845,12 +382740,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfb393" }, { @@ -361878,6 +382774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361901,12 +382799,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -361933,6 +382832,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361948,12 +382849,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8bc37" }, { @@ -361981,6 +382883,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -361996,12 +382900,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dd75b" }, { @@ -362029,6 +382934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362044,12 +382951,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8187f" }, { @@ -362077,6 +382985,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362092,12 +383002,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5e2f5" }, { @@ -362125,6 +383036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362140,12 +383053,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ea1c7" }, { @@ -362173,6 +383087,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362188,12 +383104,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46ecbb" }, { @@ -362221,6 +383138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362236,12 +383155,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb6b7a" } ], @@ -362272,6 +383192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362290,12 +383212,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -362322,6 +383245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362337,12 +383262,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d113d1" }, { @@ -362370,6 +383296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362385,12 +383313,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "173e8a" } ], @@ -362437,6 +383366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -362451,12 +383382,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {0,0,0,98}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,1.45},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1, y=1, z=1},\r\n font_size=350,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "e19c97" }, { @@ -362484,6 +383416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -362498,12 +383432,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {0,0,0,98}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,1.45},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1, y=1, z=1},\r\n font_size=350,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "b7af99" } ], @@ -362577,6 +383512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362605,9 +383542,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"2b78cf\":{\"lock\":false,\"pos\":{\"x\":-39.9314,\"y\":1.6372,\"z\":-0.0372},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"2c10cf\":{\"lock\":false,\"pos\":{\"x\":2.353,\"y\":1.3935,\"z\":1.3729},\"rot\":{\"x\":0.0803,\"y\":89.9994,\"z\":359.9831}},\"3a6bb8\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9992,\"z\":0.0799}},\"46f500\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6317,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9989,\"z\":0.0799}},\"4f9f66\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3735},\"rot\":{\"x\":0.0168,\"y\":180.0012,\"z\":0.0803}},\"4ff304\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9991,\"z\":0.0799}},\"5d8be3\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9992,\"z\":0.0799}},\"6345b1\":{\"lock\":false,\"pos\":{\"x\":-26.8995,\"y\":1.619,\"z\":-0.1078},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"69fd89\":{\"lock\":false,\"pos\":{\"x\":-27.0309,\"y\":1.617,\"z\":-7.5875},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"71210c\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9994,\"z\":0.0799}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.5839,\"y\":1.6283,\"z\":0.0616},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"7b0f72\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9978,\"z\":0.0687}},\"830305\":{\"lock\":false,\"pos\":{\"x\":2.2928,\"y\":1.3929,\"z\":-1.2197},\"rot\":{\"x\":0.0803,\"y\":89.9991,\"z\":359.9831}},\"8456bc\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"88e8cf\":{\"lock\":false,\"pos\":{\"x\":-26.9009,\"y\":1.6213,\"z\":7.7793},\"rot\":{\"x\":359.9201,\"y\":270.0095,\"z\":0.0169}},\"98c518\":{\"lock\":false,\"pos\":{\"x\":-12.4828,\"y\":1.6633,\"z\":7.5848},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"a1af1f\":{\"lock\":false,\"pos\":{\"x\":-20.613,\"y\":1.6102,\"z\":-0.1764},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"aea880\":{\"lock\":false,\"pos\":{\"x\":-12.307,\"y\":1.6796,\"z\":15.299},\"rot\":{\"x\":359.9202,\"y\":270.0012,\"z\":0.2651}},\"b76184\":{\"lock\":false,\"pos\":{\"x\":-33.6393,\"y\":1.6306,\"z\":7.5293},\"rot\":{\"x\":359.9201,\"y\":270.0097,\"z\":0.0169}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.3759,\"y\":1.5818,\"z\":-15.0362},\"rot\":{\"x\":359.9197,\"y\":270.0306,\"z\":0.0168}},\"c164a9\":{\"lock\":false,\"pos\":{\"x\":-3.9271,\"y\":1.7717,\"z\":5.7574},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"c425b7\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9993,\"z\":0.0799}},\"d7e54e\":{\"lock\":false,\"pos\":{\"x\":-34.2304,\"y\":1.627,\"z\":-7.4733},\"rot\":{\"x\":359.9201,\"y\":270.0097,\"z\":0.0169}},\"e9889e\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.001,\"z\":0.0169}},\"f9947f\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.999,\"z\":0.0799}},\"fb5176\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.627,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":179.9993,\"z\":0.0799}},\"fd7be1\":{\"lock\":false,\"pos\":{\"x\":-12.3779,\"y\":1.6807,\"z\":11.4083},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_PDF", @@ -362634,6 +383571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362646,9 +383585,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36b4eb" }, { @@ -362676,6 +383615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362694,9 +383635,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b78cf", "States": { "2": { @@ -362724,6 +383665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362742,9 +383685,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -362772,6 +383715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362790,9 +383735,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -362822,6 +383767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362830,9 +383777,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n--- position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"6a7bfc\":{\"lock\":false,\"pos\":{\"x\":-11.9662,\"y\":1.6726,\"z\":0.0224},\"rot\":{\"x\":359.9727,\"y\":179.9866,\"z\":0.0799}},\"c5100a\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "CardCustom", @@ -362859,6 +383806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362874,12 +383823,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a7bfc" }, { @@ -362907,6 +383857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362926,7 +383878,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2347": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/", @@ -362934,7 +383887,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2345": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/", @@ -362942,12 +383896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -362974,6 +383929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -362989,12 +383946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ceaf19" }, { @@ -363022,6 +383980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363037,12 +383997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "612274" }, { @@ -363070,6 +384031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363085,12 +384048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e11f47" } ], @@ -363124,6 +384088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363142,9 +384108,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a6bb8", "States": { "2": { @@ -363172,6 +384138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363190,9 +384158,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -363220,6 +384188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363238,9 +384208,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -363270,6 +384240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363288,9 +384260,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46f500", "States": { "2": { @@ -363318,6 +384290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363336,9 +384310,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -363366,6 +384340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363384,9 +384360,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -363416,6 +384392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363435,7 +384413,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2343": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/", @@ -363443,7 +384422,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2342": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/", @@ -363451,12 +384431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -363483,6 +384464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363498,12 +384481,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "885de9" }, { @@ -363531,6 +384515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363546,12 +384532,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e29d3c" }, { @@ -363579,6 +384566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363594,12 +384583,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdd1c2" } ], @@ -363630,6 +384620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363648,9 +384640,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ff304", "States": { "2": { @@ -363678,6 +384670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363696,9 +384690,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -363726,6 +384720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363744,9 +384740,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -363776,6 +384772,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363794,9 +384792,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d8be3", "States": { "2": { @@ -363824,6 +384822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363842,9 +384842,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -363872,6 +384872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363890,9 +384892,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -363922,6 +384924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363940,9 +384944,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6345b1", "States": { "2": { @@ -363970,6 +384974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -363988,9 +384994,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -364018,6 +385024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364036,9 +385044,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -364068,6 +385076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364086,9 +385096,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69fd89", "States": { "2": { @@ -364116,6 +385126,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364134,9 +385146,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -364164,6 +385176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364182,9 +385196,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -364214,6 +385228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364232,9 +385248,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "71210c", "States": { "2": { @@ -364262,6 +385278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364280,9 +385298,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -364310,6 +385328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364328,9 +385348,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -364360,6 +385380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364378,9 +385400,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -364408,6 +385430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364426,9 +385450,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -364456,6 +385480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364474,9 +385500,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -364506,6 +385532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364524,9 +385552,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -364553,6 +385581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364571,12 +385601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -364603,6 +385634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364618,12 +385651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a571b6" }, { @@ -364651,6 +385685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364666,12 +385702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a83d39" } ], @@ -364702,6 +385739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364717,12 +385756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "442e15" }, { @@ -364750,6 +385790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364765,12 +385807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e387e3" }, { @@ -364798,6 +385841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364813,12 +385858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "536d14" }, { @@ -364846,6 +385892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364865,12 +385913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -364897,6 +385946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364912,12 +385963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "935c57" }, { @@ -364945,6 +385997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -364960,12 +386014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd5c30" }, { @@ -364993,6 +386048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365008,12 +386065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abeee2" } ], @@ -365044,6 +386102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365052,9 +386112,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -365081,6 +386141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365101,7 +386163,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2337": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/", @@ -365109,7 +386172,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2353": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/", @@ -365117,12 +386181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -365149,6 +386214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365164,12 +386231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f1166" }, { @@ -365197,6 +386265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365212,12 +386282,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41b1e8" }, { @@ -365245,6 +386316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365260,12 +386333,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d874e6" }, { @@ -365293,6 +386367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365308,12 +386384,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77305d" } ], @@ -365344,6 +386421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365364,7 +386443,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2337": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/", @@ -365372,7 +386452,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2352": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/", @@ -365380,12 +386461,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -365412,6 +386494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365427,12 +386511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26398a" }, { @@ -365460,6 +386545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365475,12 +386562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "10f2de" }, { @@ -365508,6 +386596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365523,12 +386613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f94b52" }, { @@ -365556,6 +386647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365571,12 +386664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e643e5" } ], @@ -365607,6 +386701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365626,7 +386722,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2337": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/", @@ -365634,7 +386731,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2351": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/", @@ -365642,12 +386740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -365674,6 +386773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365689,12 +386790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc31c" }, { @@ -365722,6 +386824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365737,12 +386841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "015675" }, { @@ -365770,6 +386875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365785,12 +386892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91a62b" } ], @@ -365821,6 +386929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365841,7 +386951,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2337": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/", @@ -365849,7 +386960,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2354": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/", @@ -365857,12 +386969,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -365889,6 +387002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365904,12 +387019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4120f3" }, { @@ -365937,6 +387053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -365952,12 +387070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1afa73" }, { @@ -365985,6 +387104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366000,12 +387121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a86fc" }, { @@ -366033,6 +387155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366048,12 +387172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cce4f" } ], @@ -366103,6 +387228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366111,9 +387238,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n--- position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"b7790b\":{\"lock\":false,\"pos\":{\"x\":-12.012,\"y\":1.67,\"z\":0.2354},\"rot\":{\"x\":0.0169,\"y\":180.0095,\"z\":0.0799}},\"c5100a\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0037,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -366140,6 +387267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366159,7 +387288,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2347": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/", @@ -366167,7 +387297,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2346": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/", @@ -366175,12 +387306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -366207,6 +387339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366222,12 +387356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "930942" }, { @@ -366255,6 +387390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366270,12 +387407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "612274" }, { @@ -366303,6 +387441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366318,12 +387458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8ce33" } ], @@ -366354,6 +387495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366369,12 +387512,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7790b" } ], @@ -366405,6 +387549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366420,12 +387566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8456bc" }, { @@ -366453,6 +387600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366471,9 +387620,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88e8cf", "States": { "2": { @@ -366501,6 +387650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366519,9 +387670,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -366549,6 +387700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366567,9 +387720,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -366599,6 +387752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366625,12 +387780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -366657,6 +387813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366672,12 +387830,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91dfcd" }, { @@ -366705,6 +387864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366720,12 +387881,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a12ccd" }, { @@ -366753,6 +387915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366768,12 +387932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d0fd9f" }, { @@ -366801,6 +387966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366816,12 +387983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5193e9" }, { @@ -366849,6 +388017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366864,12 +388034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f2a9b" }, { @@ -366897,6 +388068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366912,12 +388085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3a920" }, { @@ -366945,6 +388119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -366960,12 +388136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2947dc" }, { @@ -366993,6 +388170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367008,12 +388187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7eb33c" }, { @@ -367041,6 +388221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367056,12 +388238,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a8e9c" }, { @@ -367089,6 +388272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367104,12 +388289,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cd828" } ], @@ -367140,6 +388326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367158,9 +388346,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1af1f", "States": { "2": { @@ -367188,6 +388376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367206,9 +388396,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -367236,6 +388426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367254,9 +388446,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -367286,6 +388478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367301,12 +388495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aea880" }, { @@ -367334,6 +388529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367352,9 +388549,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b76184", "States": { "2": { @@ -367382,6 +388579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367400,9 +388599,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -367430,6 +388629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367448,9 +388649,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -367480,6 +388681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367498,9 +388701,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Blob'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbb70a" }, { @@ -367528,6 +388731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367574,12 +388779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -367606,6 +388812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367621,12 +388829,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d04e21" }, { @@ -367654,6 +388863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367669,12 +388880,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06905d" }, { @@ -367702,6 +388914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367717,12 +388931,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "964cf6" }, { @@ -367750,6 +388965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367765,12 +388982,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9c781" }, { @@ -367798,6 +389016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367813,12 +389033,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9c781" }, { @@ -367846,6 +389067,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367861,12 +389084,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1533f2" }, { @@ -367894,6 +389118,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367909,12 +389135,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37d71c" }, { @@ -367942,6 +389169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -367957,12 +389186,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87e62f" }, { @@ -367990,6 +389220,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368005,12 +389237,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7dcaf" }, { @@ -368038,6 +389271,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368053,12 +389288,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d77ef" }, { @@ -368086,6 +389322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368101,12 +389339,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba4619" }, { @@ -368134,6 +389373,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368149,12 +389390,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0917e4" }, { @@ -368182,6 +389424,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368197,12 +389441,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b6b0c" }, { @@ -368230,6 +389475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368245,12 +389492,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50b1ed" }, { @@ -368278,6 +389526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368293,12 +389543,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9c781" }, { @@ -368326,6 +389577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368341,12 +389594,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a67d2" }, { @@ -368374,6 +389628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368389,12 +389645,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3922d" }, { @@ -368422,6 +389679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368437,12 +389696,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2b0d9" }, { @@ -368470,6 +389730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368485,12 +389747,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd696d" }, { @@ -368518,6 +389781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368533,12 +389798,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "864170" }, { @@ -368566,6 +389832,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368581,12 +389849,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b6b0c" }, { @@ -368614,6 +389883,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368629,12 +389900,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb61b2" }, { @@ -368662,6 +389934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368677,12 +389951,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "259925" }, { @@ -368710,6 +389985,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368725,12 +390002,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed9f9c" }, { @@ -368758,6 +390036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368773,12 +390053,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "259925" }, { @@ -368806,6 +390087,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368821,12 +390104,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "983682" }, { @@ -368854,6 +390138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368869,12 +390155,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f917d3" }, { @@ -368902,6 +390189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368917,12 +390206,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "337725" }, { @@ -368950,6 +390240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -368965,12 +390257,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63202c" }, { @@ -368998,6 +390291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369013,12 +390308,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd97de" } ], @@ -369049,6 +390345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369067,9 +390365,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c425b7", "States": { "2": { @@ -369097,6 +390395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369115,9 +390415,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -369145,6 +390445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369163,9 +390465,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -369195,6 +390497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369213,9 +390517,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7e54e", "States": { "2": { @@ -369243,6 +390547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369261,9 +390567,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -369291,6 +390597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369309,9 +390617,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -369341,6 +390649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369356,12 +390666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9889e" }, { @@ -369389,6 +390700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369407,9 +390720,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9947f", "States": { "2": { @@ -369437,6 +390750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369455,9 +390770,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -369485,6 +390800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369503,9 +390820,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -369535,6 +390852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369553,9 +390872,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb5176", "States": { "2": { @@ -369583,6 +390902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369601,9 +390922,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -369631,6 +390952,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369649,9 +390972,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -369681,6 +391004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369699,12 +391024,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -369731,6 +391057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369746,12 +391074,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d47065" }, { @@ -369779,6 +391108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369794,12 +391125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "358172" } ], @@ -369853,6 +391185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369881,9 +391215,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0b6166\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"116eb9\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"1ed6d5\":{\"lock\":false,\"pos\":{\"x\":-26.8623,\"y\":1.6176,\"z\":-4.4728},\"rot\":{\"x\":0.0446,\"y\":44.9999,\"z\":359.9316}},\"25652c\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6167,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.011,\"z\":0.0169}},\"4541f6\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.0299},\"rot\":{\"x\":359.9218,\"y\":269.9987,\"z\":0.016}},\"47b306\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6909,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"4901f8\":{\"lock\":false,\"pos\":{\"x\":-26.8973,\"y\":1.619,\"z\":-0.0345},\"rot\":{\"x\":359.9201,\"y\":270.0111,\"z\":0.0169}},\"4bd010\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"52e361\":{\"lock\":false,\"pos\":{\"x\":-15.0137,\"y\":1.6712,\"z\":-9.996},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"556e96\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7824,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"64a96b\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"66197b\":{\"lock\":false,\"pos\":{\"x\":-3.9912,\"y\":1.6632,\"z\":15.0046},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.6012,\"y\":1.6283,\"z\":-0.1123},\"rot\":{\"x\":359.9201,\"y\":270.0112,\"z\":0.0169}},\"739b98\":{\"lock\":false,\"pos\":{\"x\":-27.0616,\"y\":1.6204,\"z\":3.8989},\"rot\":{\"x\":359.9315,\"y\":314.9926,\"z\":359.9554}},\"7d30ce\":{\"lock\":false,\"pos\":{\"x\":-20.5607,\"y\":1.6091,\"z\":-3.6976},\"rot\":{\"x\":359.9316,\"y\":314.9958,\"z\":359.9554}},\"7f6452\":{\"lock\":false,\"pos\":{\"x\":-14.7653,\"y\":1.751,\"z\":5.0207},\"rot\":{\"x\":357.2015,\"y\":0.0614,\"z\":359.919}},\"a2fcc1\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":0.0168}},\"b00f35\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"b58f4c\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"b5928a\":{\"lock\":false,\"pos\":{\"x\":-4.145,\"y\":1.5828,\"z\":-15.1672},\"rot\":{\"x\":359.9197,\"y\":270.0014,\"z\":0.0168}},\"d70162\":{\"lock\":false,\"pos\":{\"x\":-20.2601,\"y\":1.6109,\"z\":3.9765},\"rot\":{\"x\":0.0446,\"y\":45.0011,\"z\":359.9316}},\"d7558d\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"f704e9\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6555,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -369910,6 +391244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369925,12 +391261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b6166" }, { @@ -369958,6 +391295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -369973,12 +391312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "116eb9" }, { @@ -370006,6 +391346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370024,9 +391366,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ed6d5", "States": { "2": { @@ -370054,6 +391396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370072,9 +391416,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -370102,6 +391446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370120,9 +391466,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -370152,6 +391498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370170,9 +391518,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25652c", "States": { "2": { @@ -370200,6 +391548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370218,9 +391568,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -370248,6 +391598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370266,9 +391618,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -370298,6 +391650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370313,12 +391667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4541f6" }, { @@ -370346,6 +391701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370361,12 +391718,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47b306" }, { @@ -370394,6 +391752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370412,9 +391772,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4901f8", "States": { "2": { @@ -370442,6 +391802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370460,9 +391822,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -370490,6 +391852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370508,9 +391872,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -370540,6 +391904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370555,12 +391921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bd010" }, { @@ -370588,6 +391955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370603,12 +391972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "52e361" }, { @@ -370636,6 +392006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370684,7 +392056,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -370692,7 +392065,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2703": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -370700,7 +392074,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2704": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -370708,12 +392083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -370740,6 +392116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370755,12 +392133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c2f4a" }, { @@ -370788,6 +392167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370803,12 +392184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -370836,6 +392218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370851,12 +392235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbe20d" }, { @@ -370884,6 +392269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370899,12 +392286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60ef9e" }, { @@ -370932,6 +392320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370947,12 +392337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61c583" }, { @@ -370980,6 +392371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -370995,12 +392388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d6b0f" }, { @@ -371028,6 +392422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371043,12 +392439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -371076,6 +392473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371091,12 +392490,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e44036" }, { @@ -371124,6 +392524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371139,12 +392541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db1aee" }, { @@ -371172,6 +392575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371187,12 +392592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -371220,6 +392626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371235,12 +392643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40e9d0" }, { @@ -371268,6 +392677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371283,12 +392694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42d459" }, { @@ -371316,6 +392728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371331,12 +392745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -371364,6 +392779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371379,12 +392796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb0b3" }, { @@ -371412,6 +392830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371427,12 +392847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -371460,6 +392881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371475,12 +392898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad01d5" }, { @@ -371508,6 +392932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371523,12 +392949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e4b6f" }, { @@ -371556,6 +392983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371571,12 +393000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -371604,6 +393034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371619,12 +393051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "851dc1" }, { @@ -371652,6 +393085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371667,12 +393102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8906a9" }, { @@ -371700,6 +393136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371715,12 +393153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76139c" }, { @@ -371748,6 +393187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371763,12 +393204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4904d0" }, { @@ -371796,6 +393238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371811,12 +393255,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -371844,6 +393289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371859,12 +393306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b9792" }, { @@ -371892,6 +393340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371907,12 +393357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c04b5" }, { @@ -371940,6 +393391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -371955,12 +393408,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -371988,6 +393442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372003,12 +393459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -372036,6 +393493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372051,12 +393510,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -372084,6 +393544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372099,12 +393561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -372132,6 +393595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372147,12 +393612,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -372180,6 +393646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372195,12 +393663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -372228,6 +393697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372243,12 +393714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d91086" } ], @@ -372279,6 +393751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372294,12 +393768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64a96b" }, { @@ -372327,6 +393802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372342,12 +393819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66197b" }, { @@ -372375,6 +393853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372390,12 +393870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -372423,6 +393904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372441,9 +393924,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -372471,6 +393954,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372489,9 +393974,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -372519,6 +394004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372537,9 +394024,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -372569,6 +394056,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372587,9 +394076,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "739b98", "States": { "2": { @@ -372617,6 +394106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372635,9 +394126,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -372665,6 +394156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372683,9 +394176,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -372715,6 +394208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372733,9 +394228,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d30ce", "States": { "2": { @@ -372763,6 +394258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372781,9 +394278,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -372811,6 +394308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372829,9 +394328,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -372861,6 +394360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372876,12 +394377,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f6452" }, { @@ -372909,6 +394411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372924,12 +394428,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2fcc1" }, { @@ -372957,6 +394462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -372972,12 +394479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b00f35" }, { @@ -373005,6 +394513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373020,12 +394530,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b58f4c" }, { @@ -373053,6 +394564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373071,9 +394584,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Read or Die'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5928a" }, { @@ -373101,6 +394614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373119,9 +394634,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d70162", "States": { "2": { @@ -373149,6 +394664,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373167,9 +394684,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -373197,6 +394714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373215,9 +394734,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -373247,6 +394766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373265,9 +394786,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7558d", "States": { "2": { @@ -373295,6 +394816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373313,9 +394836,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -373343,6 +394866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373361,9 +394886,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -373393,6 +394918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373408,12 +394935,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f704e9" } ], @@ -373487,6 +395015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373505,9 +395035,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_PDF", @@ -373534,6 +395064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373546,9 +395078,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f7fb0" }, { @@ -373576,6 +395108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373588,9 +395122,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36b4eb" }, { @@ -373618,6 +395152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373630,9 +395166,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3844b" }, { @@ -373660,6 +395196,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373672,9 +395210,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5b5b" }, { @@ -373702,6 +395240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373714,9 +395254,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "267216" }, { @@ -373744,6 +395284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373756,9 +395298,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9351c7" }, { @@ -373786,6 +395328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373798,9 +395342,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00daab" }, { @@ -373828,6 +395372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373840,9 +395386,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "125ce8" }, { @@ -373870,6 +395416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373882,9 +395430,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61f17f" }, { @@ -373912,6 +395460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373924,9 +395474,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97895b" }, { @@ -373954,6 +395504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -373966,9 +395518,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "267216" } ], @@ -373999,6 +395551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": false, "Tooltip": true, @@ -374027,9 +395581,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Tablet", @@ -374056,6 +395610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374065,9 +395621,9 @@ "Tablet": { "PageURL": "https://itswritingitself.wordpress.com/2020/01/28/ahlcg-arkham-horror-the-card-game-the-soundtrack/" }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b268d" }, { @@ -374095,6 +395651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374104,9 +395662,9 @@ "Tablet": { "PageURL": "https://www.youtube.com/watch?v=5sCmJ3e4Uos" }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51cb8d" }, { @@ -374134,6 +395692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374143,9 +395703,9 @@ "Tablet": { "PageURL": "https://www.youtube.com/watch?v=zzliu_-xNNQ" }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "39ec3d" }, { @@ -374173,6 +395733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374185,9 +395747,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cd82a" }, { @@ -374215,6 +395777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374227,9 +395791,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fc24e" }, { @@ -374257,6 +395821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374269,9 +395835,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49f237" } ], @@ -374302,6 +395868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374328,9 +395896,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f18c2d" }, { @@ -374358,6 +395926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374384,9 +395954,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4be4a3" }, { @@ -374414,6 +395984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374440,9 +396012,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7c767" }, { @@ -374470,6 +396042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374496,9 +396070,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "270f7a" }, { @@ -374526,6 +396100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374552,9 +396128,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f42af3" }, { @@ -374574,14 +396150,16 @@ "Description": "", "GMNotes": "", "ColorDiffuse": { - "r": 0.14110297, - "g": 0.14110297, - "b": 0.14110297 + "r": 0.14110285, + "g": 0.14110285, + "b": 0.14110285 }, "Locked": true, "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374598,9 +396176,9 @@ "TypeIndex": 0, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.0, "DynamicFriction": 0.0, @@ -374633,14 +396211,16 @@ "Description": "", "GMNotes": "", "ColorDiffuse": { - "r": 0.14110297, - "g": 0.14110297, - "b": 0.14110297 + "r": 0.14110285, + "g": 0.14110285, + "b": 0.14110285 }, "Locked": true, "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374657,9 +396237,9 @@ "TypeIndex": 0, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.0, "DynamicFriction": 0.0, @@ -374692,14 +396272,16 @@ "Description": "", "GMNotes": "", "ColorDiffuse": { - "r": 0.14110297, - "g": 0.14110297, - "b": 0.14110297 + "r": 0.14110285, + "g": 0.14110285, + "b": 0.14110285 }, "Locked": true, "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374716,9 +396298,9 @@ "TypeIndex": 0, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.0, "DynamicFriction": 0.0, @@ -374759,6 +396341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374778,9 +396362,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70b9f6" }, { @@ -374800,14 +396384,16 @@ "Description": "", "GMNotes": "", "ColorDiffuse": { - "r": 0.282275975, - "g": 0.070532836, - "b": 0.070532836 + "r": 0.282275826, + "g": 0.07053273, + "b": 0.07053273 }, "Locked": true, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374826,9 +396412,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -374855,6 +396441,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374869,12 +396457,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "038906", "States": { "2": { @@ -374902,6 +396491,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374916,12 +396507,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "32a06a" }, "3": { @@ -374949,6 +396541,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -374963,12 +396557,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebbc3d" } } @@ -374993,14 +396588,16 @@ "Description": "", "GMNotes": "", "ColorDiffuse": { - "r": 0.192520738, - "g": 0.2481704, + "r": 0.192520618, + "g": 0.248170286, "b": 0.4512195 }, "Locked": true, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375019,9 +396616,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -375048,6 +396645,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375062,12 +396661,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36be72", "States": { "2": { @@ -375095,6 +396695,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375109,12 +396711,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c2361" }, "3": { @@ -375142,6 +396745,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375156,12 +396761,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a3415" }, "4": { @@ -375189,6 +396795,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375203,12 +396811,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a91a8" }, "5": { @@ -375236,6 +396845,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375250,12 +396861,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "887aae" }, "6": { @@ -375283,6 +396895,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375297,12 +396911,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "baa831" }, "7": { @@ -375330,6 +396945,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375344,12 +396961,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da94da" }, "8": { @@ -375377,6 +396995,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375391,12 +397011,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e1687" }, "9": { @@ -375424,6 +397045,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375438,12 +397061,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6f1e0" } } @@ -375476,6 +397100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375504,9 +397130,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -375533,6 +397159,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375547,12 +397175,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "142b55", "States": { "2": { @@ -375580,6 +397209,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375594,12 +397225,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ddbe" }, "3": { @@ -375627,6 +397259,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375641,12 +397275,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0f2a0" }, "4": { @@ -375674,6 +397309,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375688,12 +397325,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24c940" }, "5": { @@ -375721,6 +397359,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375735,12 +397375,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec79a1" }, "6": { @@ -375768,6 +397409,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375782,12 +397425,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "afe500" }, "7": { @@ -375815,6 +397459,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375829,12 +397475,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7cbd1" }, "8": { @@ -375862,6 +397509,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375876,12 +397525,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67b357" }, "9": { @@ -375909,6 +397559,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375923,12 +397575,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "582a00" } } @@ -375961,6 +397614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -375979,9 +397634,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -376008,6 +397663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376026,9 +397683,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -376056,6 +397713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376074,9 +397733,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -376104,6 +397763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376122,9 +397783,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -376157,6 +397818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376176,9 +397839,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b8594" }, { @@ -376206,6 +397869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376225,9 +397890,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f896a" }, { @@ -376255,6 +397920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376274,9 +397941,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "147e80" }, { @@ -376304,6 +397971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376323,9 +397992,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7b6c8" }, { @@ -376353,6 +398022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376365,9 +398036,9 @@ "PDFPage": 0, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d99993" }, { @@ -376395,6 +398066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376413,9 +398086,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -376442,6 +398115,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376460,9 +398135,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ffa21" } ], @@ -376493,6 +398168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376511,9 +398188,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -376540,6 +398217,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376554,12 +398233,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0aff9d" } ], @@ -376590,6 +398270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376608,9 +398290,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -376637,6 +398319,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376651,12 +398335,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0aff9d" } ], @@ -376679,14 +398364,16 @@ "Description": "", "GMNotes": "", "ColorDiffuse": { - "r": 0.192520738, - "g": 0.2481704, + "r": 0.192520618, + "g": 0.248170286, "b": 0.4512195 }, "Locked": true, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376705,9 +398392,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -376734,6 +398421,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376748,12 +398437,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36be72", "States": { "2": { @@ -376781,6 +398471,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376795,12 +398487,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c2361" }, "3": { @@ -376828,6 +398521,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376842,12 +398537,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a3415" }, "4": { @@ -376875,6 +398571,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376889,12 +398587,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a91a8" }, "5": { @@ -376922,6 +398621,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376936,12 +398637,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "887aae" }, "6": { @@ -376969,6 +398671,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -376983,12 +398687,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "baa831" }, "7": { @@ -377016,6 +398721,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377030,12 +398737,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da94da" }, "8": { @@ -377063,6 +398771,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377077,12 +398787,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e1687" }, "9": { @@ -377110,6 +398821,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377124,12 +398837,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6f1e0" } } @@ -377162,6 +398876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377180,9 +398896,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -377209,6 +398925,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377227,9 +398945,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ffa21" } ], @@ -377260,6 +398978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377288,9 +399008,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -377317,6 +399037,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377331,12 +399053,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "142b55", "States": { "2": { @@ -377364,6 +399087,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377378,12 +399103,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ddbe" }, "3": { @@ -377411,6 +399137,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377425,12 +399153,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0f2a0" }, "4": { @@ -377458,6 +399187,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377472,12 +399203,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24c940" }, "5": { @@ -377505,6 +399237,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377519,12 +399253,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec79a1" }, "6": { @@ -377552,6 +399287,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377566,12 +399303,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "afe500" }, "7": { @@ -377599,6 +399337,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377613,12 +399353,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7cbd1" }, "8": { @@ -377646,6 +399387,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377660,12 +399403,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67b357" }, "9": { @@ -377693,6 +399437,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377707,12 +399453,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "582a00" } } @@ -377737,14 +399484,16 @@ "Description": "", "GMNotes": "", "ColorDiffuse": { - "r": 0.282275975, - "g": 0.070532836, - "b": 0.070532836 + "r": 0.282275826, + "g": 0.07053273, + "b": 0.07053273 }, "Locked": true, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377763,9 +399512,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -377792,6 +399541,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377806,12 +399557,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "038906", "States": { "2": { @@ -377839,6 +399591,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377853,12 +399607,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "32a06a" }, "3": { @@ -377886,6 +399641,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377900,12 +399657,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebbc3d" } } @@ -377938,6 +399696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -377956,9 +399716,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -377985,6 +399745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378003,9 +399765,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -378033,6 +399795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378051,9 +399815,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -378081,6 +399845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378099,9 +399865,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -378134,6 +399900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378152,9 +399920,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -378181,6 +399949,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378195,12 +399965,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0aff9d" } ], @@ -378214,7 +399985,7 @@ "posZ": -1.23968494, "rotX": 359.9201, "rotY": 270.013245, - "rotZ": 0.0168621112, + "rotZ": 0.016862141, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 @@ -378223,14 +399994,16 @@ "Description": "", "GMNotes": "", "ColorDiffuse": { - "r": 0.192520738, - "g": 0.2481704, + "r": 0.192520618, + "g": 0.248170286, "b": 0.4512195 }, "Locked": true, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378249,9 +400022,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -378278,6 +400051,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378292,12 +400067,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36be72", "States": { "2": { @@ -378325,6 +400101,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378339,12 +400117,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c2361" }, "3": { @@ -378372,6 +400151,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378386,12 +400167,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a3415" }, "4": { @@ -378419,6 +400201,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378433,12 +400217,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a91a8" }, "5": { @@ -378466,6 +400251,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378480,12 +400267,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "887aae" }, "6": { @@ -378513,6 +400301,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378527,12 +400317,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "baa831" }, "7": { @@ -378560,6 +400351,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378574,12 +400367,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da94da" }, "8": { @@ -378607,6 +400401,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378621,12 +400417,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e1687" }, "9": { @@ -378654,6 +400451,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378668,12 +400467,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6f1e0" } } @@ -378689,7 +400489,7 @@ "posZ": 1.09087777, "rotX": 359.9201, "rotY": 270.0118, - "rotZ": 0.0168709, + "rotZ": 0.0168709289, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 @@ -378706,6 +400506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378724,9 +400526,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -378753,6 +400555,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378771,9 +400575,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ffa21" } ], @@ -378804,6 +400608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378832,9 +400638,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -378861,6 +400667,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378875,12 +400683,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "142b55", "States": { "2": { @@ -378908,6 +400717,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378922,12 +400733,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ddbe" }, "3": { @@ -378955,6 +400767,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -378969,12 +400783,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0f2a0" }, "4": { @@ -379002,6 +400817,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379016,12 +400833,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24c940" }, "5": { @@ -379049,6 +400867,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379063,12 +400883,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec79a1" }, "6": { @@ -379096,6 +400917,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379110,12 +400933,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "afe500" }, "7": { @@ -379143,6 +400967,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379157,12 +400983,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7cbd1" }, "8": { @@ -379190,6 +401017,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379204,12 +401033,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67b357" }, "9": { @@ -379237,6 +401067,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379251,12 +401083,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "582a00" } } @@ -379281,14 +401114,16 @@ "Description": "", "GMNotes": "", "ColorDiffuse": { - "r": 0.282275975, - "g": 0.070532836, - "b": 0.070532836 + "r": 0.282275826, + "g": 0.07053273, + "b": 0.07053273 }, "Locked": true, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379307,9 +401142,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Token", @@ -379336,6 +401171,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379350,12 +401187,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "038906", "States": { "2": { @@ -379383,6 +401221,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379397,12 +401237,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "32a06a" }, "3": { @@ -379430,6 +401271,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379444,12 +401287,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebbc3d" } } @@ -379482,6 +401326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379500,9 +401346,9 @@ "TypeIndex": 7, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -379529,6 +401375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379547,9 +401395,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -379577,6 +401425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379595,9 +401445,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -379625,6 +401475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379643,9 +401495,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -379656,9 +401508,9 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 63.0271034, + "posX": 63.02713, "posY": 1.76423, - "posZ": 0.1403897, + "posZ": 0.140392184, "rotX": 359.9201, "rotY": 270.002472, "rotZ": 0.0168694351, @@ -379678,6 +401530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379706,9 +401560,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,5,-2}, rotation={0,0,0}, height=250, width=600,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={1.5,5,2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-1.2,5,2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-3.5,5,2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.7,1,-2}, rotation={0,0,0}, height=280, width=600,\r\n font_size=200, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.7,1,-2}, rotation={0,0,0}, height=280, width=650,\r\n font_size=200, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-6,1,0}, rotation={0,90,0}, height=500, width=1200,\r\n-- font_size=350, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"42d2dc\":{\"lock\":false,\"pos\":{\"x\":12.2501,\"y\":1.4684,\"z\":13.4383},\"rot\":{\"x\":359.9201,\"y\":270.0131,\"z\":0.0169}},\"6730a1\":{\"lock\":false,\"pos\":{\"x\":12.2501,\"y\":1.4709,\"z\":22.0786},\"rot\":{\"x\":359.9201,\"y\":270.0187,\"z\":0.0168}},\"83ccd4\":{\"lock\":false,\"pos\":{\"x\":12.2509,\"y\":1.4735,\"z\":30.8285},\"rot\":{\"x\":359.9201,\"y\":270.0611,\"z\":0.0168}},\"ae8317\":{\"lock\":false,\"pos\":{\"x\":-1.4655,\"y\":1.4756,\"z\":-26.9304},\"rot\":{\"x\":359.9201,\"y\":270.0018,\"z\":0.0169}},\"bd4167\":{\"lock\":false,\"pos\":{\"x\":12.2493,\"y\":1.4633,\"z\":-3.9185},\"rot\":{\"x\":359.9201,\"y\":270.0456,\"z\":0.0168}},\"ce5d30\":{\"lock\":false,\"pos\":{\"x\":12.2502,\"y\":1.4556,\"z\":-30.055},\"rot\":{\"x\":359.9201,\"y\":269.9915,\"z\":0.0169}},\"dd8b0d\":{\"lock\":false,\"pos\":{\"x\":12.2508,\"y\":1.4582,\"z\":-21.3056},\"rot\":{\"x\":359.9201,\"y\":270.0539,\"z\":0.0168}},\"e7efa6\":{\"lock\":false,\"pos\":{\"x\":12.2482,\"y\":1.4658,\"z\":4.6903},\"rot\":{\"x\":359.9201,\"y\":270.0817,\"z\":0.0168}},\"eb48ff\":{\"lock\":false,\"pos\":{\"x\":12.2491,\"y\":1.4607,\"z\":-12.6652},\"rot\":{\"x\":359.9201,\"y\":270.0427,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -379735,6 +401589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379763,9 +401619,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0973f5\":{\"lock\":false,\"pos\":{\"x\":-36.7736,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"106e0f\":{\"lock\":false,\"pos\":{\"x\":-20.5475,\"y\":1.6102,\"z\":0.004},\"rot\":{\"x\":359.9201,\"y\":269.9952,\"z\":0.0169}},\"339e43\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.92}},\"3ba3ee\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"452210\":{\"lock\":false,\"pos\":{\"x\":-4.0608,\"y\":1.5826,\"z\":-15.3593},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"467c53\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6317,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0003,\"z\":359.92}},\"4e601e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9984,\"z\":0.0169}},\"5909ed\":{\"lock\":false,\"pos\":{\"x\":-11.1541,\"y\":1.56,\"z\":-23.9453},\"rot\":{\"x\":0.0799,\"y\":89.9963,\"z\":359.9831}},\"68f53e\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-27.0268,\"y\":1.6192,\"z\":-0.0469},\"rot\":{\"x\":359.9201,\"y\":269.9951,\"z\":0.0169}},\"740ce6\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0003,\"z\":359.92}},\"763978\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"93a42f\":{\"lock\":false,\"pos\":{\"x\":-0.359,\"y\":1.6506,\"z\":-10.4405},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"93a774\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9998,\"z\":0.0803}},\"93aee3\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"9be8fd\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":0.0169}},\"aa08d4\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"ca92fb\":{\"lock\":false,\"pos\":{\"x\":-36.7735,\"y\":1.7085,\"z\":15.1903},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"cb4537\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.9201}},\"cc6904\":{\"lock\":false,\"pos\":{\"x\":-33.4597,\"y\":1.6281,\"z\":-0.0516},\"rot\":{\"x\":359.9201,\"y\":269.9951,\"z\":0.0169}},\"dfaa5b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6902,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"e295b9\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0003,\"z\":359.92}},\"e9eec7\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6994,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"f782b4\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"f989e2\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6811,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"fb4859\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7877,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"fe7779\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.9201}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -379792,6 +401648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379807,12 +401665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0973f5" }, { @@ -379840,6 +401699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379858,9 +401719,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "106e0f", "States": { "2": { @@ -379888,6 +401749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379906,9 +401769,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -379936,6 +401799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -379954,9 +401819,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -379986,6 +401851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380004,9 +401871,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "339e43", "States": { "2": { @@ -380034,6 +401901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380052,9 +401921,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -380082,6 +401951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380100,9 +401971,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -380132,6 +402003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380150,9 +402023,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -380179,6 +402052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380194,12 +402069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fd6d0" }, { @@ -380227,6 +402103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380245,12 +402123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -380277,6 +402156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380292,12 +402173,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75df15" }, { @@ -380325,6 +402207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380340,12 +402224,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" } ], @@ -380376,6 +402261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380391,12 +402278,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f295d9" }, { @@ -380424,6 +402312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380439,12 +402329,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d30a1" }, { @@ -380472,6 +402363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380487,12 +402380,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46185e" }, { @@ -380520,6 +402414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380535,12 +402431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb8243" }, { @@ -380568,6 +402465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380583,12 +402482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d81228" } ], @@ -380632,6 +402532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380650,9 +402552,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Echoes of the Past'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "452210" }, { @@ -380680,6 +402582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380698,9 +402602,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "467c53", "States": { "2": { @@ -380728,6 +402632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380746,9 +402652,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -380776,6 +402682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380794,9 +402702,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -380826,6 +402734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -380841,12 +402751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e601e" }, { @@ -380874,15 +402785,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5909ed", "States": { "3": { @@ -380910,15 +402823,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "523ef3" }, "2": { @@ -380946,15 +402861,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7fbc9" } } @@ -380984,6 +402901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381002,9 +402921,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68f53e", "States": { "2": { @@ -381032,6 +402951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381050,9 +402971,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -381080,6 +403001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381098,9 +403021,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -381130,6 +403053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381148,9 +403073,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -381178,6 +403103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381196,9 +403123,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -381226,6 +403153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381244,9 +403173,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -381276,6 +403205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381294,9 +403225,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "740ce6", "States": { "2": { @@ -381324,6 +403255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381342,9 +403275,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -381372,6 +403305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381390,9 +403325,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -381422,6 +403357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381440,9 +403377,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "763978", "States": { "2": { @@ -381470,6 +403407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381488,9 +403427,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -381518,6 +403457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381536,9 +403477,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -381568,6 +403509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381583,12 +403526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -381616,6 +403560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381635,12 +403581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -381667,6 +403614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381682,12 +403631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae6790" }, { @@ -381715,6 +403665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381730,12 +403682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25a10f" }, { @@ -381763,6 +403716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381778,12 +403733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" } ], @@ -381814,6 +403770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381829,12 +403787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93aee3" }, { @@ -381862,6 +403821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381877,12 +403838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9be8fd" }, { @@ -381910,6 +403872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381925,12 +403889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -381958,6 +403923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -381977,12 +403944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -382009,6 +403977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382024,12 +403994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20fcda" }, { @@ -382057,6 +404028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382072,12 +404045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abc0cb" }, { @@ -382105,6 +404079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382120,12 +404096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7da2f" } ], @@ -382156,6 +404133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382174,9 +404153,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb4537", "States": { "2": { @@ -382204,6 +404183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382222,9 +404203,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -382252,6 +404233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382270,9 +404253,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -382302,6 +404285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382320,9 +404305,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc6904", "States": { "2": { @@ -382350,6 +404335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382368,9 +404355,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -382398,6 +404385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382416,9 +404405,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -382448,6 +404437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382467,12 +404458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -382499,6 +404491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382514,12 +404508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6a72" }, { @@ -382547,6 +404542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382562,12 +404559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40f79d" }, { @@ -382595,6 +404593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382610,12 +404610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" } ], @@ -382646,6 +404647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382664,9 +404667,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e295b9", "States": { "2": { @@ -382694,6 +404697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382712,9 +404717,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -382742,6 +404747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382760,9 +404767,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -382792,6 +404799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382811,12 +404820,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -382843,6 +404853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382858,12 +404870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7a098" }, { @@ -382891,6 +404904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382906,12 +404921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffd0fb" }, { @@ -382939,6 +404955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -382954,12 +404972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" } ], @@ -382990,6 +405009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383009,12 +405030,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -383041,6 +405063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383056,12 +405080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d6b80" }, { @@ -383089,6 +405114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383104,12 +405131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "452df1" }, { @@ -383137,6 +405165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383152,12 +405182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" } ], @@ -383188,6 +405219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383207,12 +405240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -383239,6 +405273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383254,12 +405290,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55844c" }, { @@ -383287,6 +405324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383302,12 +405341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b352f8" }, { @@ -383335,6 +405375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383350,12 +405392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cf5d5" } ], @@ -383386,6 +405429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383435,7 +405480,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2322": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -383443,7 +405489,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -383451,7 +405498,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2327": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -383459,7 +405507,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -383467,12 +405516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -383499,6 +405549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383514,12 +405566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3effb8" }, { @@ -383547,6 +405600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383562,12 +405617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd93e2" }, { @@ -383595,6 +405651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383610,12 +405668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a92ef8" }, { @@ -383643,6 +405702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383658,12 +405719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "613256" }, { @@ -383691,6 +405753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383706,12 +405770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca4b6d" }, { @@ -383739,6 +405804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383754,12 +405821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -383787,6 +405855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383802,12 +405872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bec6ce" }, { @@ -383835,6 +405906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383850,12 +405923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "829090" }, { @@ -383883,6 +405957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383898,12 +405974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77144e" }, { @@ -383931,6 +406008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383946,12 +406025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42def5" }, { @@ -383979,6 +406059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -383994,12 +406076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77144e" }, { @@ -384027,6 +406110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384042,12 +406127,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d4b6a" }, { @@ -384075,6 +406161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384090,12 +406178,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "596a2f" }, { @@ -384123,6 +406212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384138,12 +406229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d4b6a" }, { @@ -384171,6 +406263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384186,12 +406280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e20141" }, { @@ -384219,6 +406314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384234,12 +406331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "522968" }, { @@ -384267,6 +406365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384282,12 +406382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bf1f8" }, { @@ -384315,6 +406416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384330,12 +406433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" }, { @@ -384363,6 +406467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384378,12 +406484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcaaad" }, { @@ -384411,6 +406518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384426,12 +406535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" }, { @@ -384459,6 +406569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384474,12 +406586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "057d5f" }, { @@ -384507,6 +406620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384522,12 +406637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -384555,6 +406671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384570,12 +406688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ceae2" }, { @@ -384603,6 +406722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384618,12 +406739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8fcf" }, { @@ -384651,6 +406773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384666,12 +406790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfaf" }, { @@ -384699,6 +406824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384714,12 +406841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -384747,6 +406875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384762,12 +406892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4904d0" }, { @@ -384795,6 +406926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384810,12 +406943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d63054" }, { @@ -384843,6 +406977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384858,12 +406994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b347d1" }, { @@ -384891,6 +407028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384906,12 +407045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36612" }, { @@ -384939,6 +407079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -384954,12 +407096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50fdc5" }, { @@ -384987,6 +407130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385002,12 +407147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4911f2" }, { @@ -385035,6 +407181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385050,12 +407198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -385086,6 +407235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385104,9 +407255,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe7779", "States": { "2": { @@ -385134,6 +407285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385152,9 +407305,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -385182,6 +407335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385200,9 +407355,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -385255,6 +407410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385283,9 +407440,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"01b9fa\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0003,\"z\":359.9201}},\"041cfc\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9995,\"z\":0.0803}},\"170d3d\":{\"lock\":false,\"pos\":{\"x\":-20.0997,\"y\":1.6105,\"z\":3.2408},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"472b87\":{\"lock\":false,\"pos\":{\"x\":-27.4076,\"y\":1.6185,\"z\":-3.9855},\"rot\":{\"x\":359.9316,\"y\":315,\"z\":359.9554}},\"4b6478\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"59504e\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6497,\"z\":-10.4412},\"rot\":{\"x\":359.9198,\"y\":270.0002,\"z\":180.017}},\"657fc6\":{\"lock\":false,\"pos\":{\"x\":-20.5635,\"y\":1.6124,\"z\":7.5489},\"rot\":{\"x\":359.9201,\"y\":269.9947,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-26.7542,\"y\":1.6189,\"z\":0.1696},\"rot\":{\"x\":359.9201,\"y\":269.9948,\"z\":0.0169}},\"857d0d\":{\"lock\":false,\"pos\":{\"x\":-4.2848,\"y\":1.5829,\"z\":-15.6022},\"rot\":{\"x\":359.9197,\"y\":269.9991,\"z\":0.0168}},\"93a42f\":{\"lock\":false,\"pos\":{\"x\":-0.425,\"y\":1.6507,\"z\":-10.4281},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"981fa3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"985957\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6555,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"9869cb\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7397,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":180.0168}},\"aa08d4\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"af5282\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"b25fa2\":{\"lock\":false,\"pos\":{\"x\":-20.004,\"y\":1.6083,\"z\":-3.8134},\"rot\":{\"x\":359.9316,\"y\":315,\"z\":359.9554}},\"b3c25b\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"c605d3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"cce10d\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"d4d0a1\":{\"lock\":false,\"pos\":{\"x\":-27.2821,\"y\":1.6207,\"z\":3.8853},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"dc02e3\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6804,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":0.0169}},\"dd2d33\":{\"lock\":false,\"pos\":{\"x\":-4.4431,\"y\":1.7756,\"z\":-10.4201},\"rot\":{\"x\":359.9202,\"y\":270.0326,\"z\":0.0169}},\"dfdabe\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}},\"f66b3b\":{\"lock\":false,\"pos\":{\"x\":-11.3753,\"y\":1.5603,\"z\":-23.9306},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"f935dd\":{\"lock\":false,\"pos\":{\"x\":-20.4019,\"y\":1.6078,\"z\":-7.3231},\"rot\":{\"x\":359.9201,\"y\":269.9874,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -385312,6 +407469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385330,9 +407489,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -385359,6 +407518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385374,12 +407535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c4a8d" }, { @@ -385407,6 +407569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385422,12 +407586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51f4e4" } ], @@ -385471,6 +407636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385511,7 +407678,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/", @@ -385519,7 +407687,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2322": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -385527,12 +407696,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -385559,6 +407729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385574,12 +407746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd9f85" }, { @@ -385607,6 +407780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385622,12 +407797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2400" }, { @@ -385655,6 +407831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385670,12 +407848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2789ff" }, { @@ -385703,6 +407882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385718,12 +407899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2d075" }, { @@ -385751,6 +407933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385766,12 +407950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6340b" }, { @@ -385799,6 +407984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385814,12 +408001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4bbb4" }, { @@ -385847,6 +408035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385862,12 +408052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -385895,6 +408086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385910,12 +408103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9d501" }, { @@ -385943,6 +408137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -385958,12 +408154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -385991,6 +408188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386006,12 +408205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc41a5" }, { @@ -386039,6 +408239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386054,12 +408256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -386087,6 +408290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386102,12 +408307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62736c" }, { @@ -386135,6 +408341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386150,12 +408358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de32ec" }, { @@ -386183,6 +408392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386198,12 +408409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f89d68" }, { @@ -386231,6 +408443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386246,12 +408460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7ccce" }, { @@ -386279,6 +408494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386294,12 +408511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c189a5" }, { @@ -386327,6 +408545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386342,12 +408562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74b258" }, { @@ -386375,6 +408596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386390,12 +408613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce7b8" }, { @@ -386423,6 +408647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386438,12 +408664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40c629" }, { @@ -386471,6 +408698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386486,12 +408715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "006497" }, { @@ -386519,6 +408749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386534,12 +408766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "068703" }, { @@ -386567,6 +408800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386582,12 +408817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70009a" }, { @@ -386615,6 +408851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386630,12 +408868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c023fe" }, { @@ -386663,6 +408902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386678,12 +408919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c321d" } ], @@ -386714,6 +408956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386732,7 +408976,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2330": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -386740,12 +408985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -386772,6 +409018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386787,12 +409035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "798037" }, { @@ -386820,6 +409069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386835,12 +409086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3456b6" } ], @@ -386871,6 +409123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386886,12 +409140,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "985957" }, { @@ -386919,6 +409174,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386934,12 +409191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd2d33" }, { @@ -386967,6 +409225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -386991,7 +409251,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2320": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/", @@ -386999,12 +409260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -387031,6 +409293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387046,12 +409310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b13af3" }, { @@ -387079,6 +409344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387094,12 +409361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2135bf" }, { @@ -387127,6 +409395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387142,12 +409412,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e88a40" }, { @@ -387175,6 +409446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387190,12 +409463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ecefb" }, { @@ -387223,6 +409497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387238,12 +409514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b6382" }, { @@ -387271,6 +409548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387286,12 +409565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f2034" }, { @@ -387319,6 +409599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387334,12 +409616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fd6d0" }, { @@ -387367,6 +409650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387382,12 +409667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f003bd" } ], @@ -387418,6 +409704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387433,12 +409721,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -387466,6 +409755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387484,9 +409775,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Last King'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "857d0d" }, { @@ -387514,15 +409805,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f66b3b" }, { @@ -387550,6 +409843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387565,12 +409860,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b6478" }, { @@ -387598,6 +409894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387613,12 +409911,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "981fa3" }, { @@ -387646,6 +409945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387661,12 +409962,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c605d3" }, { @@ -387694,6 +409996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387709,12 +410013,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3c25b" }, { @@ -387742,6 +410047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387757,12 +410064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cce10d" }, { @@ -387790,6 +410098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387805,12 +410115,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -387838,6 +410149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387856,9 +410169,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfdabe", "States": { "2": { @@ -387886,6 +410199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387904,9 +410219,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -387934,6 +410249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -387952,9 +410269,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -387984,6 +410301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388002,9 +410321,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01b9fa", "States": { "2": { @@ -388032,6 +410351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388050,9 +410371,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -388080,6 +410401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388098,9 +410421,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -388130,6 +410453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388148,9 +410473,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -388178,6 +410503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388196,9 +410523,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -388226,6 +410553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388244,9 +410573,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -388276,6 +410605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388294,9 +410625,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4d0a1", "States": { "2": { @@ -388324,6 +410655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388342,9 +410675,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -388372,6 +410705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388390,9 +410725,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -388422,6 +410757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388440,9 +410777,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "472b87", "States": { "2": { @@ -388470,6 +410807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388488,9 +410827,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -388518,6 +410857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388536,9 +410877,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -388568,6 +410909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388586,9 +410929,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b25fa2", "States": { "2": { @@ -388616,6 +410959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388634,9 +410979,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -388664,6 +411009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388682,9 +411029,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -388714,6 +411061,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388732,9 +411081,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "657fc6", "States": { "2": { @@ -388762,6 +411111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388780,9 +411131,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -388810,6 +411161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388828,9 +411181,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -388860,6 +411213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388878,9 +411233,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "170d3d", "States": { "2": { @@ -388908,6 +411263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388926,9 +411283,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -388956,6 +411313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -388974,9 +411333,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -389006,6 +411365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389024,9 +411385,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f935dd", "States": { "2": { @@ -389054,6 +411415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389072,9 +411435,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -389102,6 +411465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389120,9 +411485,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -389152,6 +411517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389173,12 +411540,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -389205,6 +411573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389220,12 +411590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "560b08" }, { @@ -389253,6 +411624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389268,12 +411641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6a957" }, { @@ -389301,6 +411675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389316,12 +411692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce986e" }, { @@ -389349,6 +411726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389364,12 +411743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1145d" }, { @@ -389397,6 +411777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389412,12 +411794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d7527" } ], @@ -389471,6 +411854,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389499,9 +411884,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"16562e\":{\"lock\":false,\"pos\":{\"x\":-3.8355,\"y\":1.5823,\"z\":-15.4104},\"rot\":{\"x\":359.9197,\"y\":269.9812,\"z\":0.0169}},\"1c1bc8\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7877,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"37e3f9\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"3e4d11\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-20.5401,\"y\":1.6102,\"z\":0.1872},\"rot\":{\"x\":0.0799,\"y\":90.0061,\"z\":359.9831}},\"4906e9\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0004,\"z\":359.9201}},\"57f68a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0003,\"z\":359.92}},\"592384\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"67a96b\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"93a42f\":{\"lock\":false,\"pos\":{\"x\":-0.2009,\"y\":1.6504,\"z\":-10.4757},\"rot\":{\"x\":359.9197,\"y\":270.0246,\"z\":0.0168}},\"9b59f2\":{\"lock\":false,\"pos\":{\"x\":-20.3102,\"y\":1.6109,\"z\":3.7456},\"rot\":{\"x\":359.9316,\"y\":315,\"z\":359.9554}},\"9e67da\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0411,\"z\":0.0803}},\"aa08d4\":{\"lock\":false,\"pos\":{\"x\":-3.9557,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0086,\"z\":0.0168}},\"ab4d4e\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.99,\"z\":0.0687}},\"f28046\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6372,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -389528,6 +411913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389546,9 +411933,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Path to Carcosa'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "16562e" }, { @@ -389576,6 +411963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389625,7 +412014,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/", @@ -389633,7 +412023,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -389641,12 +412032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -389673,6 +412065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389688,12 +412082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3330e9" }, { @@ -389721,6 +412116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389736,12 +412133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afc45" }, { @@ -389769,6 +412167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389784,12 +412184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -389817,6 +412218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389832,12 +412235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3effb8" }, { @@ -389865,6 +412269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389880,12 +412286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd93e2" }, { @@ -389913,6 +412320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389928,12 +412337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a92ef8" }, { @@ -389961,6 +412371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -389976,12 +412388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "613256" }, { @@ -390009,6 +412422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390024,12 +412439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca4b6d" }, { @@ -390057,6 +412473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390072,12 +412490,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -390105,6 +412524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390120,12 +412541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "947597" }, { @@ -390153,6 +412575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390168,12 +412592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6cb3f1" }, { @@ -390201,6 +412626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390216,12 +412643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e7b73" }, { @@ -390249,6 +412677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390264,12 +412694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d3af5" }, { @@ -390297,6 +412728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390312,12 +412745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -390345,6 +412779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390360,12 +412796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a0545" }, { @@ -390393,6 +412830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390408,12 +412847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "040fdc" }, { @@ -390441,6 +412881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390456,12 +412898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a6d8c" }, { @@ -390489,6 +412932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390504,12 +412949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6af6b" }, { @@ -390537,6 +412983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390552,12 +413000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -390585,6 +413034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390600,12 +413051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -390633,6 +413085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390648,12 +413102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d32e4" }, { @@ -390681,6 +413136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390696,12 +413153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9349fd" }, { @@ -390729,6 +413187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390744,12 +413204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ae587" }, { @@ -390777,6 +413238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390792,12 +413255,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "459f5a" }, { @@ -390825,6 +413289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390840,12 +413306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -390873,6 +413340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390888,12 +413357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2cf85" }, { @@ -390921,6 +413391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390936,12 +413408,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -390969,6 +413442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -390984,12 +413459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e20141" }, { @@ -391017,6 +413493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391032,12 +413510,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "522968" }, { @@ -391065,6 +413544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391080,12 +413561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bf1f8" }, { @@ -391113,6 +413595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391128,12 +413612,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" }, { @@ -391161,6 +413646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391176,12 +413663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcaaad" }, { @@ -391209,6 +413697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391224,12 +413714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" } ], @@ -391260,6 +413751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391275,12 +413768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37e3f9" }, { @@ -391308,6 +413802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391323,12 +413819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e4d11" }, { @@ -391356,6 +413853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391374,9 +413873,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -391404,6 +413903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391422,9 +413923,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -391452,6 +413953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391470,9 +413973,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -391502,6 +414005,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391520,9 +414025,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4906e9", "States": { "2": { @@ -391550,6 +414055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391568,9 +414075,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -391598,6 +414105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391616,9 +414125,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -391648,6 +414157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391666,9 +414177,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57f68a", "States": { "2": { @@ -391696,6 +414207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391714,9 +414227,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -391744,6 +414257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391762,9 +414277,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -391794,6 +414309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391809,12 +414326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "592384" }, { @@ -391842,6 +414360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391857,12 +414377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67a96b" }, { @@ -391890,6 +414411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391905,12 +414428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -391938,6 +414462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -391956,9 +414482,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b59f2", "States": { "2": { @@ -391986,6 +414512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392004,9 +414532,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -392034,6 +414562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392052,9 +414582,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -392084,6 +414614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392102,12 +414634,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -392134,6 +414667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392149,12 +414684,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62cc79" }, { @@ -392182,6 +414718,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392197,12 +414735,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d122dd" } ], @@ -392233,6 +414772,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392248,12 +414789,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -392281,6 +414823,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392299,9 +414843,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -392328,6 +414872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392348,7 +414894,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -392356,12 +414903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -392388,6 +414936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392403,12 +414953,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0797a9" }, { @@ -392436,6 +414987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392451,12 +415004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bece69" }, { @@ -392484,6 +415038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392499,12 +415055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e83ec9" }, { @@ -392532,6 +415089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392547,12 +415106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b75450" } ], @@ -392583,6 +415143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392603,7 +415165,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -392611,12 +415174,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -392643,6 +415207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392658,12 +415224,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5134e0" }, { @@ -392691,6 +415258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392706,12 +415275,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7605cf" }, { @@ -392739,6 +415309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392754,12 +415326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c1254" }, { @@ -392787,6 +415360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392802,12 +415377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92a167" } ], @@ -392838,6 +415414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392853,12 +415431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58a463" }, { @@ -392886,6 +415465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392901,12 +415482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6720ef" } ], @@ -392950,6 +415532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -392974,7 +415558,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2330": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -392982,12 +415567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -393014,6 +415600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393029,12 +415617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c5a28" }, { @@ -393062,6 +415651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393077,12 +415668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "788b0d" }, { @@ -393110,6 +415702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393125,12 +415719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51aa68" }, { @@ -393158,6 +415753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393173,12 +415770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36921c" }, { @@ -393206,6 +415804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393221,12 +415821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4f850" }, { @@ -393254,6 +415855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393269,12 +415872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e25bf" }, { @@ -393302,6 +415906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393317,12 +415923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "94060e" }, { @@ -393350,6 +415957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393365,12 +415974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eeaa39" } ], @@ -393424,6 +416034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393442,9 +416054,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --Doubt 1\r\n {\r\n pos = {-0.482,0.1,0.776},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 2\r\n {\r\n pos = {-0.43,0.1,0.776},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 3\r\n {\r\n pos = {-0.38,0.1,0.775},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 4\r\n {\r\n pos = {-0.325,0.1,0.778},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 5\r\n {\r\n pos = {-0.27,0.1,0.779},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 6\r\n {\r\n pos = {-0.219,0.1,0.778},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 7\r\n {\r\n pos = {-0.168,0.1,0.782},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 8\r\n {\r\n pos = {-0.111,0.1,0.783},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 1\r\n {\r\n pos = {-0.736,0.1,0.868},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 2\r\n {\r\n pos = {-0.68,0.1,0.869},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 3\r\n {\r\n pos = {-0.626,0.1,0.869},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 4\r\n {\r\n pos = {-0.574,0.1,0.874},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 5\r\n {\r\n pos = {-0.519,0.1,0.874},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 6\r\n {\r\n pos = {-0.467,0.1,0.879},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 7\r\n {\r\n pos = {-0.416,0.1,0.876},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 8\r\n {\r\n pos = {-0.357,0.1,0.879},\r\n size = 200,\r\n state = false\r\n },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n {\r\n pos = {-0.7,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one counter 2\r\n {\r\n pos = {-0.52,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one xp 1\r\n {\r\n pos = {-0.517,0.1,-0.55},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 1\r\n {\r\n pos = {-0.274,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 2\r\n {\r\n pos = {-0.074,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two xp 1\r\n {\r\n pos = {-0.061,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 1\r\n {\r\n pos = {0.153,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 2\r\n {\r\n pos = {0.379,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three xp 1\r\n {\r\n pos = {0.38,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 1\r\n {\r\n pos = {0.614,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 2\r\n {\r\n pos = {0.82,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four xp 1\r\n {\r\n pos = {0.827,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Chasing The Stranger\r\n {\r\n pos = {0.414,0.1,0.106},\r\n size = 500,\r\n value = 0,\r\n hideBG = true\r\n },\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --Slot one player\r\n {\r\n pos = {-0.637,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one investigator\r\n {\r\n pos = {-0.637,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one story\r\n {\r\n pos = {-0.637,0.1,-0.32},\r\n rows = 5,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two player\r\n {\r\n pos = {-0.2,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two investigator\r\n {\r\n pos = {-0.2,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two story\r\n {\r\n pos = {-0.2,0.1,-0.32},\r\n rows = 5,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three player\r\n {\r\n pos = {0.241,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three investigator\r\n {\r\n pos = {0.237,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three story\r\n {\r\n pos = {0.24,0.1,-0.32},\r\n rows = 5,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four player\r\n {\r\n pos = {0.671,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four investigator\r\n {\r\n pos = {0.671,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four story\r\n {\r\n pos = {0.671,0.1,-0.32},\r\n rows = 5,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes\r\n {\r\n pos = {-0.38,0.1,0.339},\r\n rows =16,\r\n width = 3200,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --VIPs Interviewed\r\n {\r\n pos = {0.43,0.1,0.338},\r\n rows = 6,\r\n width = 3500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --VIPs Slain\r\n {\r\n pos = {0.43,0.1,0.643},\r\n rows = 6,\r\n width = 3500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", "LuaScriptState": "{\"checkbox\":[{\"pos\":[-0.482,0.1,0.776],\"size\":200,\"state\":false},{\"pos\":[-0.43,0.1,0.776],\"size\":200,\"state\":false},{\"pos\":[-0.38,0.1,0.775],\"size\":200,\"state\":false},{\"pos\":[-0.325,0.1,0.778],\"size\":200,\"state\":false},{\"pos\":[-0.27,0.1,0.779],\"size\":200,\"state\":false},{\"pos\":[-0.219,0.1,0.778],\"size\":200,\"state\":false},{\"pos\":[-0.168,0.1,0.782],\"size\":200,\"state\":false},{\"pos\":[-0.111,0.1,0.783],\"size\":200,\"state\":false},{\"pos\":[-0.736,0.1,0.868],\"size\":200,\"state\":false},{\"pos\":[-0.68,0.1,0.869],\"size\":200,\"state\":false},{\"pos\":[-0.626,0.1,0.869],\"size\":200,\"state\":false},{\"pos\":[-0.574,0.1,0.874],\"size\":200,\"state\":false},{\"pos\":[-0.519,0.1,0.874],\"size\":200,\"state\":false},{\"pos\":[-0.467,0.1,0.879],\"size\":200,\"state\":false},{\"pos\":[-0.416,0.1,0.876],\"size\":200,\"state\":false},{\"pos\":[-0.357,0.1,0.879],\"size\":200,\"state\":false}],\"counter\":[{\"hideBG\":true,\"pos\":[-0.7,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.52,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.517,0.1,-0.55],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[-0.274,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.074,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.061,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.153,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.379,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.38,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.614,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.82,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.827,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.414,0.1,0.106],\"size\":500,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.32],\"rows\":5,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.32],\"rows\":5,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.241,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.237,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[0.24,0.1,-0.32],\"rows\":5,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.32],\"rows\":5,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[-0.38,0.1,0.339],\"rows\":16,\"value\":\"\",\"width\":3200},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.43,0.1,0.338],\"rows\":6,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.43,0.1,0.643],\"rows\":6,\"value\":\"\",\"width\":3500}]}", + "XmlUI": "", "GUID": "ae8317", "States": { "2": { @@ -393472,6 +416084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393490,9 +416104,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --1 checkbox\r\n {\r\n pos = {-0.678,0.1,-0.147},\r\n size = 250,\r\n state = false\r\n },\r\n --2 checkbox\r\n {\r\n pos = {-0.656,0.1,-0.049},\r\n size = 250,\r\n state = false\r\n },\r\n --3 checkbox\r\n {\r\n pos = {-0.629,0.1,0.148},\r\n size = 250,\r\n state = false\r\n },\r\n --4 checkbox\r\n {\r\n pos = {-0.615,0.1,0.248},\r\n size = 250,\r\n state = false\r\n },\r\n --5 checkbox\r\n {\r\n pos = {-0.588,0.1,0.44},\r\n size = 250,\r\n state = false\r\n },\r\n --6 checkbox\r\n {\r\n pos = {-0.573,0.1,0.54},\r\n size = 250,\r\n state = false\r\n },\r\n --7 checkbox\r\n {\r\n pos = {-0.561,0.1,0.624},\r\n size = 250,\r\n state = false\r\n },\r\n --8 checkbox\r\n {\r\n pos = {-0.546,0.1,0.723},\r\n size = 250,\r\n state = false\r\n },\r\n\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n\r\n --Campaign Notes\r\n {\r\n pos = {0.5,0.1,-0.637},\r\n rows =6,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", "LuaScriptState": "{\"checkbox\":[{\"pos\":[-0.678,0.1,-0.147],\"size\":250,\"state\":false},{\"pos\":[-0.656,0.1,-0.049],\"size\":250,\"state\":false},{\"pos\":[-0.629,0.1,0.148],\"size\":250,\"state\":false},{\"pos\":[-0.615,0.1,0.248],\"size\":250,\"state\":false},{\"pos\":[-0.588,0.1,0.44],\"size\":250,\"state\":false},{\"pos\":[-0.573,0.1,0.54],\"size\":250,\"state\":false},{\"pos\":[-0.561,0.1,0.624],\"size\":250,\"state\":false},{\"pos\":[-0.546,0.1,0.723],\"size\":250,\"state\":false}],\"counter\":[],\"textbox\":[{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[0.5,0.1,-0.637],\"rows\":6,\"value\":\"\",\"width\":3500}]}", + "XmlUI": "", "GUID": "3ebd39" } } @@ -393522,6 +416136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393550,9 +416166,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"065c64\":{\"lock\":false,\"pos\":{\"x\":-17.1192,\"y\":1.695,\"z\":-7.6999},\"rot\":{\"x\":359.1801,\"y\":269.9987,\"z\":0.0171}},\"06f9fa\":{\"lock\":false,\"pos\":{\"x\":-19.8902,\"y\":1.6082,\"z\":-3.4866},\"rot\":{\"x\":0.0684,\"y\":135,\"z\":0.0446}},\"09b690\":{\"lock\":false,\"pos\":{\"x\":-27.0584,\"y\":1.617,\"z\":-7.5965},\"rot\":{\"x\":359.9194,\"y\":269.9936,\"z\":0.0172}},\"0f0b44\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.602,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":0.0004,\"z\":359.9201}},\"113e2a\":{\"lock\":false,\"pos\":{\"x\":-18.5263,\"y\":1.772,\"z\":7.5595},\"rot\":{\"x\":359.2347,\"y\":270.0065,\"z\":359.9013}},\"17ba38\":{\"lock\":false,\"pos\":{\"x\":-30.2238,\"y\":1.7173,\"z\":-0.0296},\"rot\":{\"x\":359.1181,\"y\":269.9886,\"z\":0.0175}},\"191fba\":{\"lock\":false,\"pos\":{\"x\":-25.073,\"y\":1.7773,\"z\":-7.7009},\"rot\":{\"x\":359.4177,\"y\":270.0203,\"z\":0.0181}},\"197e00\":{\"lock\":false,\"pos\":{\"x\":-19.8141,\"y\":1.6101,\"z\":3.4298},\"rot\":{\"x\":0.0446,\"y\":45.0002,\"z\":359.9316}},\"1af959\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9969,\"z\":0.0169}},\"1bfd5a\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"240f42\":{\"lock\":false,\"pos\":{\"x\":-21.1406,\"y\":1.6076,\"z\":-11.3468},\"rot\":{\"x\":0.0684,\"y\":135.0005,\"z\":0.0446}},\"290979\":{\"lock\":false,\"pos\":{\"x\":-18.5293,\"y\":1.7636,\"z\":-7.7163},\"rot\":{\"x\":359.1742,\"y\":270.0032,\"z\":0.0179}},\"2ea277\":{\"lock\":false,\"pos\":{\"x\":-20.5441,\"y\":1.6079,\"z\":-7.5006},\"rot\":{\"x\":0.0807,\"y\":90.0192,\"z\":359.9823}},\"31bba7\":{\"lock\":false,\"pos\":{\"x\":-17.119,\"y\":1.7016,\"z\":7.5701},\"rot\":{\"x\":359.104,\"y\":269.9959,\"z\":0.0181}},\"37f17c\":{\"lock\":false,\"pos\":{\"x\":-31.6303,\"y\":1.7435,\"z\":-7.6871},\"rot\":{\"x\":359.9212,\"y\":270.0266,\"z\":0.0163}},\"403e57\":{\"lock\":false,\"pos\":{\"x\":-25.0893,\"y\":1.7824,\"z\":7.5694},\"rot\":{\"x\":359.3635,\"y\":269.984,\"z\":0.0165}},\"432812\":{\"lock\":false,\"pos\":{\"x\":-38.1415,\"y\":1.7548,\"z\":0.004},\"rot\":{\"x\":359.921,\"y\":270.0157,\"z\":0.0164}},\"49daa1\":{\"lock\":false,\"pos\":{\"x\":-25.1039,\"y\":1.7365,\"z\":0.0013},\"rot\":{\"x\":0.0517,\"y\":270.0374,\"z\":359.8193}},\"4a4785\":{\"lock\":false,\"pos\":{\"x\":-33.1186,\"y\":1.6264,\"z\":-4.4252},\"rot\":{\"x\":359.9316,\"y\":315.0001,\"z\":359.9554}},\"603ed0\":{\"lock\":false,\"pos\":{\"x\":-20.318,\"y\":1.612,\"z\":7.5175},\"rot\":{\"x\":0.0814,\"y\":90.013,\"z\":359.972}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.3511,\"y\":1.628,\"z\":-0.0849},\"rot\":{\"x\":359.9185,\"y\":269.9935,\"z\":0.0158}},\"72c268\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3734},\"rot\":{\"x\":0.0168,\"y\":179.9992,\"z\":0.0803}},\"78e730\":{\"lock\":false,\"pos\":{\"x\":-23.677,\"y\":1.7035,\"z\":7.5708},\"rot\":{\"x\":359.3687,\"y\":269.9734,\"z\":0.017}},\"794295\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7451,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"79ea7b\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6726,\"z\":-15.2801},\"rot\":{\"x\":359.9201,\"y\":270.0011,\"z\":0.0166}},\"7b7fad\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6931,\"z\":-7.7003},\"rot\":{\"x\":359.9201,\"y\":270.0012,\"z\":0.0166}},\"8612e0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9967,\"z\":0.0799}},\"8c21dc\":{\"lock\":false,\"pos\":{\"x\":-23.6761,\"y\":1.6975,\"z\":-7.7},\"rot\":{\"x\":359.4226,\"y\":269.9935,\"z\":0.0169}},\"93a42f\":{\"lock\":false,\"pos\":{\"x\":-0.4656,\"y\":1.6507,\"z\":-10.566},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"94014b\":{\"lock\":false,\"pos\":{\"x\":0.9381,\"y\":1.3949,\"z\":-0.8756},\"rot\":{\"x\":359.9832,\"y\":0.0003,\"z\":359.9197}},\"a7a582\":{\"lock\":false,\"pos\":{\"x\":-36.773,\"y\":1.7045,\"z\":-0.0302},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0166}},\"b20b8d\":{\"lock\":false,\"pos\":{\"x\":-4.3295,\"y\":1.5831,\"z\":-14.994},\"rot\":{\"x\":359.9197,\"y\":269.9786,\"z\":0.0169}},\"b52eaf\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"b85353\":{\"lock\":false,\"pos\":{\"x\":-18.5145,\"y\":1.723,\"z\":-15.2934},\"rot\":{\"x\":359.9211,\"y\":270.0133,\"z\":0.0164}},\"bf452a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9981,\"z\":0.0166}},\"cc943e\":{\"lock\":false,\"pos\":{\"x\":-26.9121,\"y\":1.6212,\"z\":7.3868},\"rot\":{\"x\":359.919,\"y\":269.994,\"z\":0.017}},\"e3c737\":{\"lock\":false,\"pos\":{\"x\":-33.4568,\"y\":1.6293,\"z\":3.7544},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"e5006f\":{\"lock\":false,\"pos\":{\"x\":0.8001,\"y\":1.396,\"z\":2.1904},\"rot\":{\"x\":359.9832,\"y\":0.0001,\"z\":359.9197}},\"e5b752\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}},\"f95052\":{\"lock\":false,\"pos\":{\"x\":-23.6768,\"y\":1.6134,\"z\":-3.8319},\"rot\":{\"x\":0.0169,\"y\":179.9968,\"z\":0.0799}},\"fb0cd1\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0003,\"z\":359.92}},\"fe8e0e\":{\"lock\":false,\"pos\":{\"x\":-31.6545,\"y\":1.7875,\"z\":-0.0107},\"rot\":{\"x\":359.1124,\"y\":269.988,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -393579,6 +416195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393597,9 +416215,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -393626,6 +416244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393641,12 +416261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b6382" }, { @@ -393674,6 +416295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393692,12 +416315,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -393724,6 +416348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393739,12 +416365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1f80b" }, { @@ -393772,6 +416399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393787,12 +416416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" } ], @@ -393823,6 +416453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393838,12 +416470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0a6a4" }, { @@ -393871,6 +416504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393891,12 +416526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -393923,6 +416559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393938,12 +416576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "febed7" }, { @@ -393971,6 +416610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -393986,12 +416627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44bb66" }, { @@ -394019,6 +416661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394034,12 +416678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "febed7" }, { @@ -394067,6 +416712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394082,12 +416729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "febed7" } ], @@ -394134,6 +416782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394175,7 +416825,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2322": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -394183,12 +416834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -394215,6 +416867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394230,12 +416884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48ff80" }, { @@ -394263,6 +416918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394278,12 +416935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3c0d0" }, { @@ -394311,6 +416969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394326,12 +416986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -394359,6 +417020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394374,12 +417037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7161b9" }, { @@ -394407,6 +417071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394422,12 +417088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "573722" }, { @@ -394455,6 +417122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394470,12 +417139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f719ae" }, { @@ -394503,6 +417173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394518,12 +417190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf1ccc" }, { @@ -394551,6 +417224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394566,12 +417241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8845b" }, { @@ -394599,6 +417275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394614,12 +417292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf1ccc" }, { @@ -394647,6 +417326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394662,12 +417343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "151647" }, { @@ -394695,6 +417377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394710,12 +417394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bba9fa" }, { @@ -394743,6 +417428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394758,12 +417445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "151647" }, { @@ -394791,6 +417479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394806,12 +417496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bb7ff" }, { @@ -394839,6 +417530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394854,12 +417547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38cc9a" }, { @@ -394887,6 +417581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394902,12 +417598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a6d8c" }, { @@ -394935,6 +417632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394950,12 +417649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6af6b" }, { @@ -394983,6 +417683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -394998,12 +417700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -395031,6 +417734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395046,12 +417751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -395079,6 +417785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395094,12 +417802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60d096" }, { @@ -395127,6 +417836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395142,12 +417853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e7c00" }, { @@ -395175,6 +417887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395190,12 +417904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b323c1" }, { @@ -395223,6 +417938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395238,12 +417955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b323c1" }, { @@ -395271,6 +417989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395286,12 +418006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70009a" }, { @@ -395319,6 +418040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395334,12 +418057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c023fe" }, { @@ -395367,6 +418091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395382,12 +418108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c321d" } ], @@ -395418,6 +418145,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395437,12 +418166,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -395469,6 +418199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395484,12 +418216,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bd569" }, { @@ -395517,6 +418250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395532,12 +418267,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90b52d" }, { @@ -395565,6 +418301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395580,12 +418318,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" } ], @@ -395616,6 +418355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395624,9 +418365,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -395653,6 +418394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395671,12 +418414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -395703,6 +418447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395718,12 +418464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "402117" }, { @@ -395751,6 +418498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395766,12 +418515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "136abe" } ], @@ -395802,6 +418552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395822,7 +418574,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -395830,12 +418583,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -395862,6 +418616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395877,12 +418633,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afc45" }, { @@ -395910,6 +418667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395925,12 +418684,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1bceb" }, { @@ -395958,6 +418718,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -395973,12 +418735,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "057d5f" }, { @@ -396006,6 +418769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396021,12 +418786,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ceae2" } ], @@ -396060,6 +418826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396068,9 +418836,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -396097,6 +418865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396115,12 +418885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -396147,6 +418918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396162,12 +418935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09a07b" }, { @@ -396195,6 +418969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396210,12 +418986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be1a27" } ], @@ -396246,6 +419023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396267,7 +419046,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -396275,12 +419055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -396307,6 +419088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396322,12 +419105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a37e3d" }, { @@ -396355,6 +419139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396370,12 +419156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75bda2" }, { @@ -396403,6 +419190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396418,12 +419207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfaf" }, { @@ -396451,6 +419241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396466,12 +419258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8fcf" }, { @@ -396499,6 +419292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396514,12 +419309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -396553,6 +419349,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396568,12 +419366,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -396601,6 +419400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396616,12 +419417,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -396649,6 +419451,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396667,9 +419471,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'A Phantom of Truth'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "b20b8d" }, { @@ -396697,6 +419501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396712,12 +419518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "065c64" }, { @@ -396745,6 +419552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396763,9 +419572,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f0b44", "States": { "2": { @@ -396793,6 +419602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396811,9 +419622,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -396841,6 +419652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396859,9 +419672,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -396891,6 +419704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396906,12 +419721,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b85353" }, { @@ -396939,6 +419755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -396954,12 +419772,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79ea7b" }, { @@ -396987,6 +419806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397005,9 +419826,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "240f42", "States": { "2": { @@ -397035,6 +419856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397053,9 +419876,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -397083,6 +419906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397101,9 +419926,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -397133,6 +419958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397151,9 +419978,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ea277", "States": { "2": { @@ -397181,6 +420008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397199,9 +420028,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -397229,6 +420058,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397247,9 +420078,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -397279,6 +420110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397294,12 +420127,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "290979" }, { @@ -397327,6 +420161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397342,12 +420178,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c21dc" }, { @@ -397375,6 +420212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397390,12 +420229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "191fba" }, { @@ -397423,6 +420263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397441,9 +420283,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09b690", "States": { "2": { @@ -397471,6 +420313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397489,9 +420333,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -397519,6 +420363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397537,9 +420383,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -397569,6 +420415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397584,12 +420432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b7fad" }, { @@ -397617,6 +420466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397632,12 +420483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37f17c" }, { @@ -397665,6 +420517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397683,9 +420537,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb0cd1", "States": { "2": { @@ -397713,6 +420567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397731,9 +420587,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -397761,6 +420617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397779,9 +420637,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -397811,6 +420669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397829,9 +420689,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f95052", "States": { "2": { @@ -397859,6 +420719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397877,9 +420739,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -397907,6 +420769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397925,9 +420789,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -397957,6 +420821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -397975,9 +420841,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06f9fa", "States": { "2": { @@ -398005,6 +420871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398023,9 +420891,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -398053,6 +420921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398071,9 +420941,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -398103,6 +420973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398121,9 +420993,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a4785", "States": { "2": { @@ -398151,6 +421023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398169,9 +421043,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -398199,6 +421073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398217,9 +421093,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -398249,6 +421125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398267,9 +421145,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -398297,6 +421175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398315,9 +421195,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -398345,6 +421225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398363,9 +421245,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -398395,6 +421277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398410,12 +421294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7a582" }, { @@ -398443,6 +421328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398458,12 +421345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "432812" }, { @@ -398491,6 +421379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398506,12 +421396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe8e0e" }, { @@ -398539,6 +421430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398554,12 +421447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17ba38" }, { @@ -398587,6 +421481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398605,9 +421501,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5b752", "States": { "2": { @@ -398635,6 +421531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398653,9 +421551,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -398683,6 +421581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398701,9 +421601,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -398733,6 +421633,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398751,9 +421653,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3c737", "States": { "2": { @@ -398781,6 +421683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398799,9 +421703,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -398829,6 +421733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398847,9 +421753,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -398879,6 +421785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398894,12 +421802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1af959" }, { @@ -398927,6 +421836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398945,9 +421856,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc943e", "States": { "2": { @@ -398975,6 +421886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -398993,9 +421906,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -399023,6 +421936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399041,9 +421956,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -399073,6 +421988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399088,12 +422005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "403e57" }, { @@ -399121,6 +422039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399136,12 +422056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78e730" }, { @@ -399169,6 +422090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399187,9 +422110,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "603ed0", "States": { "2": { @@ -399217,6 +422140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399235,9 +422160,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -399265,6 +422190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399283,9 +422210,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -399315,6 +422242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399330,12 +422259,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31bba7" }, { @@ -399363,6 +422293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399378,12 +422310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf452a" }, { @@ -399411,6 +422344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399426,12 +422361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49daa1" }, { @@ -399459,6 +422395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399477,9 +422415,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "197e00", "States": { "2": { @@ -399507,6 +422445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399525,9 +422465,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -399555,6 +422495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399573,9 +422515,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -399605,6 +422547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399623,9 +422567,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8612e0", "States": { "2": { @@ -399653,6 +422597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399671,9 +422617,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -399701,6 +422647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399719,9 +422667,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -399751,6 +422699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399766,12 +422716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "113e2a" } ], @@ -399822,6 +422773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399850,9 +422803,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"023b49\":{\"lock\":false,\"pos\":{\"x\":-2.6887,\"y\":1.3987,\"z\":-5.0485},\"rot\":{\"x\":359.9832,\"y\":0.0008,\"z\":359.9197}},\"0cde73\":{\"lock\":false,\"pos\":{\"x\":1.5685,\"y\":1.6512,\"z\":2.3111},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"258731\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9773,\"z\":0.0799}},\"691fe9\":{\"lock\":false,\"pos\":{\"x\":-33.3428,\"y\":1.6291,\"z\":3.818},\"rot\":{\"x\":359.9554,\"y\":225.0048,\"z\":0.0684}},\"739c55\":{\"lock\":false,\"pos\":{\"x\":-39.985,\"y\":1.6372,\"z\":-0.0256},\"rot\":{\"x\":0.0799,\"y\":90.0027,\"z\":359.9831}},\"85e306\":{\"lock\":false,\"pos\":{\"x\":1.2838,\"y\":1.3944,\"z\":-0.7698},\"rot\":{\"x\":359.9196,\"y\":269.9993,\"z\":0.0169}},\"868a4d\":{\"lock\":false,\"pos\":{\"x\":-20.1755,\"y\":1.6096,\"z\":-0.0593},\"rot\":{\"x\":0.0799,\"y\":90.0026,\"z\":359.9831}},\"90d138\":{\"lock\":false,\"pos\":{\"x\":1.6963,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"93a42f\":{\"lock\":false,\"pos\":{\"x\":-0.2919,\"y\":1.6505,\"z\":-10.5281},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"9afdfd\":{\"lock\":false,\"pos\":{\"x\":-3.7313,\"y\":1.5823,\"z\":-14.7936},\"rot\":{\"x\":359.9197,\"y\":269.9989,\"z\":0.0168}},\"9cc690\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.809,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.006,\"z\":180.0168}},\"add354\":{\"lock\":false,\"pos\":{\"x\":-27.0048,\"y\":1.6202,\"z\":3.6609},\"rot\":{\"x\":0.0684,\"y\":134.9998,\"z\":0.0446}},\"b52eaf\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"c8ff2d\":{\"lock\":false,\"pos\":{\"x\":-33.276,\"y\":1.6267,\"z\":-3.9922},\"rot\":{\"x\":0.0683,\"y\":135.1401,\"z\":0.0447}},\"d60026\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0803}},\"d6e210\":{\"lock\":false,\"pos\":{\"x\":-26.4601,\"y\":1.6173,\"z\":-3.7355},\"rot\":{\"x\":359.9554,\"y\":224.9996,\"z\":0.0684}},\"e96c38\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.8299},\"rot\":{\"x\":0.0169,\"y\":179.9773,\"z\":0.0799}},\"ffd354\":{\"lock\":false,\"pos\":{\"x\":-11.154,\"y\":1.56,\"z\":-23.9454},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -399879,6 +422832,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399897,9 +422852,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -399926,6 +422881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399941,12 +422898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fbb4e" }, { @@ -399974,6 +422932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -399989,12 +422949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6582c" }, { @@ -400022,6 +422983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400037,12 +423000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7e36d" }, { @@ -400070,6 +423034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400078,9 +423044,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -400107,6 +423073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400122,12 +423090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4475b1" } ], @@ -400158,6 +423127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400166,9 +423137,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -400195,6 +423166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400210,12 +423183,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5276ed" } ], @@ -400246,6 +423220,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400254,9 +423230,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -400283,6 +423259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400298,12 +423276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" } ], @@ -400334,6 +423313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400349,12 +423330,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c7c3" } ], @@ -400398,6 +423380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400417,7 +423401,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2319": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/", @@ -400425,12 +423410,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -400457,6 +423443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400472,12 +423460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60d758" }, { @@ -400505,6 +423494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400520,12 +423511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1622d3" }, { @@ -400553,6 +423545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400568,12 +423562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82360a" } ], @@ -400604,6 +423599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400623,12 +423620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -400655,6 +423653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400670,12 +423670,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1397c" }, { @@ -400703,6 +423704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400718,12 +423721,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09a5e0" }, { @@ -400751,6 +423755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400766,12 +423772,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" } ], @@ -400802,6 +423809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400855,7 +423864,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2322": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -400863,12 +423873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -400895,6 +423906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400910,12 +423923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -400943,6 +423957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -400958,12 +423974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -400991,6 +424008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401006,12 +424025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9dc22" }, { @@ -401039,6 +424059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401054,12 +424076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -401087,6 +424110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401102,12 +424127,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1fe02" }, { @@ -401135,6 +424161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401150,12 +424178,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6cb3f1" }, { @@ -401183,6 +424212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401198,12 +424229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7161b9" }, { @@ -401231,6 +424263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401246,12 +424280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a0545" }, { @@ -401279,6 +424314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401294,12 +424331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bf1f8" }, { @@ -401327,6 +424365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401342,12 +424382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -401375,6 +424416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401390,12 +424433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e20141" }, { @@ -401423,6 +424467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401438,12 +424484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3effb8" }, { @@ -401471,6 +424518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401486,12 +424535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "040fdc" }, { @@ -401519,6 +424569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401534,12 +424586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e7b73" }, { @@ -401567,6 +424620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401582,12 +424637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcaaad" }, { @@ -401615,6 +424671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401630,12 +424688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fcde7" }, { @@ -401663,6 +424722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401678,12 +424739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -401711,6 +424773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401726,12 +424790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c5c4" }, { @@ -401759,6 +424824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401774,12 +424841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -401807,6 +424875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401822,12 +424892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d3af5" }, { @@ -401855,6 +424926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401870,12 +424943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -401903,6 +424977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401918,12 +424994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a92ef8" }, { @@ -401951,6 +425028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -401966,12 +425045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -401999,6 +425079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402014,12 +425096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" }, { @@ -402047,6 +425130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402062,12 +425147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -402095,6 +425181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402110,12 +425198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "522968" }, { @@ -402143,6 +425232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402158,12 +425249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3c0d0" }, { @@ -402191,6 +425283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402206,12 +425300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bf800" }, { @@ -402239,6 +425334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402254,12 +425351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d46d72" }, { @@ -402287,6 +425385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402302,12 +425402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "947597" }, { @@ -402335,6 +425436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402350,12 +425453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48ff80" }, { @@ -402383,6 +425487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402398,12 +425504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd93e2" }, { @@ -402431,6 +425538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402446,12 +425555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "613256" }, { @@ -402479,6 +425589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402494,12 +425606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -402527,6 +425640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402542,12 +425657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" }, { @@ -402575,6 +425691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402590,12 +425708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca4b6d" }, { @@ -402623,6 +425742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402638,12 +425759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" } ], @@ -402674,6 +425796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402689,12 +425813,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -402722,6 +425847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402730,9 +425857,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -402759,6 +425886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402767,9 +425896,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -402796,6 +425925,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402815,12 +425946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -402847,6 +425979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402862,12 +425996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "629941" }, { @@ -402895,6 +426030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402910,12 +426047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90cf9" }, { @@ -402943,6 +426081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -402958,12 +426098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99d2b8" } ], @@ -402994,6 +426135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403013,12 +426156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -403045,6 +426189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403060,12 +426206,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "629941" }, { @@ -403093,6 +426240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403108,12 +426257,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "649b4f" }, { @@ -403141,6 +426291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403156,12 +426308,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99d2b8" } ], @@ -403195,6 +426348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403214,12 +426369,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -403246,6 +426402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403261,12 +426419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "629941" }, { @@ -403294,6 +426453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403309,12 +426470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90cf9" }, { @@ -403342,6 +426504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403357,12 +426521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99d2b8" } ], @@ -403393,6 +426558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403412,12 +426579,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -403444,6 +426612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403459,12 +426629,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "629941" }, { @@ -403492,6 +426663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403507,12 +426680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "649b4f" }, { @@ -403540,6 +426714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403555,12 +426731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99d2b8" } ], @@ -403591,6 +426768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403610,7 +426789,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2326": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -403618,12 +426798,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -403650,6 +426831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403665,12 +426848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "629941" }, { @@ -403698,6 +426882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403713,12 +426899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09f32d" }, { @@ -403746,6 +426933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403761,12 +426950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99d2b8" } ], @@ -403800,6 +426990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403818,9 +427010,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Dim Carcosa'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "9afdfd" }, { @@ -403848,6 +427040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403863,12 +427057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -403896,15 +427091,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffd354", "States": { "2": { @@ -403932,15 +427129,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb3493" } } @@ -403970,6 +427169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -403978,9 +427179,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -404007,6 +427208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404025,12 +427228,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -404057,6 +427261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404072,12 +427278,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01030c" }, { @@ -404105,6 +427312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404120,12 +427329,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a53069" } ], @@ -404156,6 +427366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404175,12 +427387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -404207,6 +427420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404222,12 +427437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea3b91" }, { @@ -404255,6 +427471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404270,12 +427488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa7e10" }, { @@ -404303,6 +427522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404318,12 +427539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79295e" } ], @@ -404354,6 +427576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404373,12 +427597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -404405,6 +427630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404420,12 +427647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "309dcd" }, { @@ -404453,6 +427681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404468,12 +427698,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f897e5" }, { @@ -404501,6 +427732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404516,12 +427749,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a36819" } ], @@ -404552,6 +427786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404570,12 +427806,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -404602,6 +427839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404617,12 +427856,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "468c5f" }, { @@ -404650,6 +427890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404665,12 +427907,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ccd8f5" } ], @@ -404704,6 +427947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404722,9 +427967,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "868a4d", "States": { "2": { @@ -404752,6 +427997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404770,9 +428017,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -404800,6 +428047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404818,9 +428067,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -404850,6 +428099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404868,9 +428119,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "add354", "States": { "2": { @@ -404898,6 +428149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404916,9 +428169,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -404946,6 +428199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -404964,9 +428219,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -404996,6 +428251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405014,9 +428271,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6e210", "States": { "2": { @@ -405044,6 +428301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405062,9 +428321,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -405092,6 +428351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405110,9 +428371,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -405142,6 +428403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405160,9 +428423,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e96c38", "States": { "2": { @@ -405190,6 +428453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405208,9 +428473,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -405238,6 +428503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405256,9 +428523,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -405288,6 +428555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405306,9 +428575,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "258731", "States": { "2": { @@ -405336,6 +428605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405354,9 +428625,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -405384,6 +428655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405402,9 +428675,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -405434,6 +428707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405452,9 +428727,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8ff2d", "States": { "2": { @@ -405482,6 +428757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405500,9 +428777,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -405530,6 +428807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405548,9 +428827,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -405580,6 +428859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405598,9 +428879,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "691fe9", "States": { "2": { @@ -405628,6 +428909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405646,9 +428929,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -405676,6 +428959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405694,9 +428979,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -405726,6 +429011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405744,9 +429031,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "739c55", "States": { "2": { @@ -405774,6 +429061,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405792,9 +429081,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -405822,6 +429111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405840,9 +429131,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -405895,6 +429186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405923,9 +429216,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"014bd6\":{\"lock\":false,\"pos\":{\"x\":-25.1036,\"y\":1.7321,\"z\":-15.3068},\"rot\":{\"x\":359.9212,\"y\":270.0045,\"z\":0.0164}},\"04d6e6\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"106f19\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"1163a0\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"20c21d\":{\"lock\":false,\"pos\":{\"x\":-3.6194,\"y\":1.582,\"z\":-15.7683},\"rot\":{\"x\":359.9209,\"y\":269.9998,\"z\":0.0193}},\"20de8b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"38d12d\":{\"lock\":false,\"pos\":{\"x\":-23.6762,\"y\":1.6862,\"z\":-0.0302},\"rot\":{\"x\":359.9201,\"y\":270.0016,\"z\":0.0166}},\"425d3a\":{\"lock\":false,\"pos\":{\"x\":-5.9079,\"y\":1.4895,\"z\":-15.8996},\"rot\":{\"x\":359.9821,\"y\":0.0112,\"z\":5.6744}},\"5b38c6\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6122,\"z\":-7.7},\"rot\":{\"x\":359.9551,\"y\":225.2476,\"z\":0.0682}},\"5bd383\":{\"lock\":false,\"pos\":{\"x\":0.8537,\"y\":1.3938,\"z\":-4.7761},\"rot\":{\"x\":359.9832,\"y\":0,\"z\":359.9197}},\"5bebe6\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9998,\"z\":0.0799}},\"69eae5\":{\"lock\":false,\"pos\":{\"x\":-18.5802,\"y\":1.7604,\"z\":-7.6925},\"rot\":{\"x\":358.7954,\"y\":269.9853,\"z\":0.0269}},\"73720d\":{\"lock\":false,\"pos\":{\"x\":-26.9588,\"y\":1.6168,\"z\":-7.6633},\"rot\":{\"x\":359.9201,\"y\":270.0027,\"z\":0.0169}},\"7c8232\":{\"lock\":false,\"pos\":{\"x\":1.0476,\"y\":1.3951,\"z\":0.5264},\"rot\":{\"x\":359.9196,\"y\":269.9843,\"z\":0.0169}},\"8d134d\":{\"lock\":false,\"pos\":{\"x\":-33.6312,\"y\":1.6262,\"z\":-7.6001},\"rot\":{\"x\":0.0799,\"y\":90,\"z\":359.9831}},\"93a42f\":{\"lock\":false,\"pos\":{\"x\":-0.3529,\"y\":1.6506,\"z\":-10.4336},\"rot\":{\"x\":359.9197,\"y\":269.999,\"z\":0.0168}},\"93d8de\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"b52eaf\":{\"lock\":false,\"pos\":{\"x\":-2.8742,\"y\":1.6617,\"z\":15.2703},\"rot\":{\"x\":359.9198,\"y\":269.9969,\"z\":0.0165}},\"c0362a\":{\"lock\":false,\"pos\":{\"x\":-17.1168,\"y\":1.6879,\"z\":-7.6998},\"rot\":{\"x\":359.4389,\"y\":269.994,\"z\":0.0168}},\"c2651e\":{\"lock\":false,\"pos\":{\"x\":-25.09,\"y\":1.7365,\"z\":-0.014},\"rot\":{\"x\":359.9211,\"y\":270.0295,\"z\":0.0163}},\"c380e4\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7717,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"c647a3\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.7022,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"c7ee02\":{\"lock\":false,\"pos\":{\"x\":-4.3056,\"y\":1.712,\"z\":15.2833},\"rot\":{\"x\":0.0516,\"y\":270.0387,\"z\":359.8142}},\"d4528c\":{\"lock\":false,\"pos\":{\"x\":-20.4212,\"y\":1.6077,\"z\":-7.6621},\"rot\":{\"x\":359.9198,\"y\":270.0008,\"z\":0.0158}},\"db972a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6817,\"z\":-15.2798},\"rot\":{\"x\":359.9201,\"y\":270.0013,\"z\":0.0165}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -405952,6 +429245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -405967,12 +429262,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "014bd6" }, { @@ -406000,6 +429296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406018,9 +429316,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04d6e6", "States": { "2": { @@ -406048,6 +429346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406066,9 +429366,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -406096,6 +429396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406114,9 +429416,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -406146,6 +429448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406161,12 +429465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "106f19" }, { @@ -406194,6 +429499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406209,12 +429516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1163a0" }, { @@ -406242,6 +429550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406260,9 +429570,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Black Stars Rise'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "20c21d" }, { @@ -406290,6 +429600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406305,12 +429617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20de8b" }, { @@ -406338,6 +429651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406353,12 +429668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38d12d" }, { @@ -406386,6 +429702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406394,9 +429712,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -406423,6 +429741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406441,9 +429761,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81a1d7" }, { @@ -406471,6 +429791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406489,9 +429811,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2460df" }, { @@ -406519,6 +429841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406537,9 +429861,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1df0a5" }, { @@ -406567,6 +429891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406585,9 +429911,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7a9cb" } ], @@ -406618,6 +429944,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406636,9 +429964,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6", "States": { "1": { @@ -406666,6 +429994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406684,9 +430014,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "010936" }, "2": { @@ -406714,6 +430044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406732,9 +430064,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" } } @@ -406764,6 +430096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406772,9 +430106,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -406801,6 +430135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406819,12 +430155,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -406851,6 +430188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406866,12 +430205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81f025" }, { @@ -406899,6 +430239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406914,12 +430256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9be74" } ], @@ -406950,6 +430293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -406968,12 +430313,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -407000,6 +430346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407015,12 +430363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a231c" }, { @@ -407048,6 +430397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407063,12 +430414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" } ], @@ -407102,6 +430454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407120,9 +430474,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5bebe6", "States": { "2": { @@ -407150,6 +430504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407168,9 +430524,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -407198,6 +430554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407216,9 +430574,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -407248,6 +430606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407263,12 +430623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69eae5" }, { @@ -407296,6 +430657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407314,9 +430677,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73720d", "States": { "2": { @@ -407344,6 +430707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407362,9 +430727,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -407392,6 +430757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407410,9 +430777,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -407442,6 +430809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407450,9 +430819,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -407479,6 +430848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407487,9 +430858,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"59cd0a\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0803}},\"bb455a\":{\"lock\":false,\"pos\":{\"x\":1.6962,\"y\":1.5583,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":225.0057,\"z\":0.0687}},\"c01144\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9971,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -407516,6 +430887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407535,12 +430908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -407567,6 +430941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407582,12 +430958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9d5b6" }, { @@ -407615,6 +430992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407630,12 +431009,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "374aae" }, { @@ -407663,6 +431043,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407678,12 +431060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06b34f" } ], @@ -407714,6 +431097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407732,9 +431117,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -407761,6 +431146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407776,12 +431163,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27b476" }, { @@ -407809,6 +431197,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407824,12 +431214,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e75ba8" }, { @@ -407857,6 +431248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407872,12 +431265,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -407905,6 +431299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407923,12 +431319,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -407955,6 +431352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -407970,12 +431369,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -408003,6 +431403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408018,12 +431420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e6d15" } ], @@ -408054,6 +431457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408072,12 +431477,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -408104,6 +431510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408119,12 +431527,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -408152,6 +431561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408167,12 +431578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "617504" } ], @@ -408203,6 +431615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408218,12 +431632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c7c3" }, { @@ -408251,6 +431666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408266,12 +431683,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df522" }, { @@ -408299,6 +431717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408314,12 +431734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "975cbd" } ], @@ -408363,6 +431784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408382,12 +431805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -408414,6 +431838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408429,12 +431855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76a442" }, { @@ -408462,6 +431889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408477,12 +431906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60178d" }, { @@ -408510,6 +431940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408525,12 +431957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c25af7" } ], @@ -408564,6 +431997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408572,9 +432007,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"29532d\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0005,\"z\":0.0803}},\"62a4f3\":{\"lock\":false,\"pos\":{\"x\":1.6963,\"y\":1.5583,\"z\":14.2784},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"f812d6\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -408601,6 +432036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408620,12 +432057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -408652,6 +432090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408667,12 +432107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "317b57" }, { @@ -408700,6 +432141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408715,12 +432158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92b2ed" }, { @@ -408748,6 +432192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408763,12 +432209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "108932" } ], @@ -408799,6 +432246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408817,9 +432266,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -408846,6 +432295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408861,12 +432312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f003bd" }, { @@ -408894,6 +432346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408909,12 +432363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79421c" }, { @@ -408942,6 +432397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -408957,12 +432414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f3d21" }, { @@ -408990,6 +432448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409008,12 +432468,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -409040,6 +432501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409055,12 +432518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -409088,6 +432552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409103,12 +432569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e6d15" } ], @@ -409139,6 +432606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409157,12 +432626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -409189,6 +432659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409204,12 +432676,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -409237,6 +432710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409252,12 +432727,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "617504" } ], @@ -409288,6 +432764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409303,12 +432781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c7c3" }, { @@ -409336,6 +432815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409351,12 +432832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e572ec" }, { @@ -409384,6 +432866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409399,12 +432883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" } ], @@ -409448,6 +432933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409467,12 +432954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -409499,6 +432987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409514,12 +433004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ea66d" }, { @@ -409547,6 +433038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409562,12 +433055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8228d2" }, { @@ -409595,6 +433089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409610,12 +433106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97bb2d" } ], @@ -409652,6 +433149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409670,9 +433169,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d134d", "States": { "2": { @@ -409700,6 +433199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409718,9 +433219,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -409748,6 +433249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409766,9 +433269,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -409798,6 +433301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409813,12 +433318,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -409846,6 +433352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409864,9 +433372,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93d8de", "States": { "2": { @@ -409894,6 +433402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409912,9 +433422,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -409942,6 +433452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -409960,9 +433472,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -409992,6 +433504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410007,12 +433521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -410040,6 +433555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410055,12 +433572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c0362a" }, { @@ -410088,6 +433606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410103,12 +433623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2651e" }, { @@ -410136,6 +433657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410184,7 +433707,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -410192,7 +433716,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/", @@ -410200,12 +433725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -410232,6 +433758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410247,12 +433775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9dc22" }, { @@ -410280,6 +433809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410295,12 +433826,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50fdc5" }, { @@ -410328,6 +433860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410343,12 +433877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c023fe" }, { @@ -410376,6 +433911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410391,12 +433928,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36612" }, { @@ -410424,6 +433962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410439,12 +433979,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c321d" }, { @@ -410472,6 +434013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410487,12 +434030,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -410520,6 +434064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410535,12 +434081,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a6d8c" }, { @@ -410568,6 +434115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410583,12 +434132,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -410616,6 +434166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410631,12 +434183,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -410664,6 +434217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410679,12 +434234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6af6b" }, { @@ -410712,6 +434268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410727,12 +434285,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e7c00" }, { @@ -410760,6 +434319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410775,12 +434336,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60d096" }, { @@ -410808,6 +434370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410823,12 +434387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afc45" }, { @@ -410856,6 +434421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410871,12 +434438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e68d0" }, { @@ -410904,6 +434472,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410919,12 +434489,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b347d1" }, { @@ -410952,6 +434523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -410967,12 +434540,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b323c1" }, { @@ -411000,6 +434574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411015,12 +434591,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d46d72" }, { @@ -411048,6 +434625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411063,12 +434642,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d63054" }, { @@ -411096,6 +434676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411111,12 +434693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9c769" }, { @@ -411144,6 +434727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411159,12 +434744,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -411192,6 +434778,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411207,12 +434795,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc41a5" }, { @@ -411240,6 +434829,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411255,12 +434846,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4911f2" }, { @@ -411288,6 +434880,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411303,12 +434897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -411336,6 +434931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411351,12 +434948,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b323c1" }, { @@ -411384,6 +434982,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411399,12 +434999,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7362d" }, { @@ -411432,6 +435033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411447,12 +435050,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afc45" }, { @@ -411480,6 +435084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411495,12 +435101,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0fa86" }, { @@ -411528,6 +435135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411543,12 +435152,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f76046" }, { @@ -411576,6 +435186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411591,12 +435203,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -411624,6 +435237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411639,12 +435254,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70009a" }, { @@ -411672,6 +435288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411687,12 +435305,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -411720,6 +435339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411735,12 +435356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" } ], @@ -411771,6 +435393,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411786,12 +435410,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c647a3" }, { @@ -411819,6 +435444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411834,12 +435461,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7ee02" }, { @@ -411867,6 +435495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411885,9 +435515,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4528c", "States": { "2": { @@ -411915,6 +435545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411933,9 +435565,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -411963,6 +435595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -411981,9 +435615,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -412013,6 +435647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412028,12 +435664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db972a" } ], @@ -412084,6 +435721,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412112,9 +435751,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"00873d\":{\"lock\":false,\"pos\":{\"x\":-5.3258,\"y\":1.4991,\"z\":-14.7341},\"rot\":{\"x\":359.9755,\"y\":0.0049,\"z\":359.9708}},\"02d2b1\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"1811ea\":{\"lock\":false,\"pos\":{\"x\":-20.2365,\"y\":1.6098,\"z\":0.1355},\"rot\":{\"x\":359.9201,\"y\":269.9745,\"z\":0.0169}},\"189f42\":{\"lock\":false,\"pos\":{\"x\":-31.7541,\"y\":1.8411,\"z\":-7.6825},\"rot\":{\"x\":359.9572,\"y\":269.9969,\"z\":0.0169}},\"3efbe9\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"416548\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6909,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"576595\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9211,\"y\":269.9999,\"z\":0.0182}},\"589ff6\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.7022,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.5176,\"y\":1.626,\"z\":-7.5064},\"rot\":{\"x\":359.9201,\"y\":270.0873,\"z\":0.0168}},\"79b81e\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0003,\"z\":180.0168}},\"7b12e0\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.627,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":180.0001,\"z\":0.0799}},\"7de62e\":{\"lock\":false,\"pos\":{\"x\":1.2636,\"y\":1.3951,\"z\":1.6094},\"rot\":{\"x\":359.9196,\"y\":270.0022,\"z\":0.0169}},\"87f45e\":{\"lock\":false,\"pos\":{\"x\":-3.2772,\"y\":1.5818,\"z\":-14.9074},\"rot\":{\"x\":359.921,\"y\":270.0004,\"z\":0.0198}},\"93a42f\":{\"lock\":false,\"pos\":{\"x\":-0.3725,\"y\":1.6506,\"z\":-10.4902},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"a8f821\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"aa08d4\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"b37d1d\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"bc166c\":{\"lock\":false,\"pos\":{\"x\":1.2667,\"y\":1.3942,\"z\":-1.4688},\"rot\":{\"x\":359.9196,\"y\":270.0009,\"z\":0.0169}},\"bec080\":{\"lock\":false,\"pos\":{\"x\":-26.8343,\"y\":1.6189,\"z\":0.0207},\"rot\":{\"x\":359.9201,\"y\":269.8999,\"z\":0.017}},\"c7eddd\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"c962b2\":{\"lock\":false,\"pos\":{\"x\":-11.154,\"y\":1.56,\"z\":-23.9454},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"c9897f\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"cbf2f5\":{\"lock\":false,\"pos\":{\"x\":-5.7302,\"y\":1.6806,\"z\":15.3024},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"d69fed\":{\"lock\":false,\"pos\":{\"x\":-2.3788,\"y\":1.6759,\"z\":15.316},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"dcc1bf\":{\"lock\":false,\"pos\":{\"x\":-31.8093,\"y\":1.8413,\"z\":-0.0414},\"rot\":{\"x\":5.2058,\"y\":269.9728,\"z\":0.0053}},\"e35136\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"e6a875\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6998,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"f33a5f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"f99530\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.0302},\"rot\":{\"x\":359.9207,\"y\":270.0015,\"z\":0.018}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -412141,6 +435780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412159,9 +435800,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -412188,6 +435829,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412203,12 +435846,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ecefb" }, { @@ -412236,6 +435880,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412251,12 +435897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3e267" }, { @@ -412284,6 +435931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412299,12 +435948,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -412332,6 +435982,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412352,12 +436004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -412384,6 +436037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412399,12 +436054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bab65" }, { @@ -412432,6 +436088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412447,12 +436105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1acf71" }, { @@ -412480,6 +436139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412495,12 +436156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "728ae0" }, { @@ -412528,6 +436190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412543,12 +436207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dcf73" } ], @@ -412579,6 +436244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412594,12 +436261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a71dcd" } ], @@ -412643,6 +436311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412666,12 +436336,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -412698,6 +436369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412713,12 +436386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9cf86" }, { @@ -412746,6 +436420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412761,12 +436437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b7d78" }, { @@ -412794,6 +436471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412809,12 +436488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cc0d7" }, { @@ -412842,6 +436522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412857,12 +436539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce7b8" }, { @@ -412890,6 +436573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412905,12 +436590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40c629" }, { @@ -412938,6 +436624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -412953,12 +436641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "006497" }, { @@ -412986,6 +436675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413001,12 +436692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "068703" } ], @@ -413037,6 +436729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413060,7 +436754,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2322": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -413068,12 +436763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -413100,6 +436796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413115,12 +436813,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -413148,6 +436847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413163,12 +436864,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7161b9" }, { @@ -413196,6 +436898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413211,12 +436915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c7c3" }, { @@ -413244,6 +436949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413259,12 +436966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d46d72" }, { @@ -413292,6 +437000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413307,12 +437017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9dc22" }, { @@ -413340,6 +437051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413355,12 +437068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd1c0a" }, { @@ -413388,6 +437102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413403,12 +437119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e66648" } ], @@ -413439,6 +437156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413479,7 +437198,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2322": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -413487,12 +437207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -413519,6 +437240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413534,12 +437257,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e4685" }, { @@ -413567,6 +437291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413582,12 +437308,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3effb8" }, { @@ -413615,6 +437342,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413630,12 +437359,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd93e2" }, { @@ -413663,6 +437393,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413678,12 +437410,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a92ef8" }, { @@ -413711,6 +437444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413726,12 +437461,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "613256" }, { @@ -413759,6 +437495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413774,12 +437512,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca4b6d" }, { @@ -413807,6 +437546,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413822,12 +437563,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -413855,6 +437597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413870,12 +437614,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2789ff" }, { @@ -413903,6 +437648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413918,12 +437665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2d075" }, { @@ -413951,6 +437699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -413966,12 +437716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6340b" }, { @@ -413999,6 +437750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414014,12 +437767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4bbb4" }, { @@ -414047,6 +437801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414062,12 +437818,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -414095,6 +437852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414110,12 +437869,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9d501" }, { @@ -414143,6 +437903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414158,12 +437920,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48ff80" }, { @@ -414191,6 +437954,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414206,12 +437971,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3c0d0" }, { @@ -414239,6 +438005,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414254,12 +438022,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b71468" }, { @@ -414287,6 +438056,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414302,12 +438073,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf3597" }, { @@ -414335,6 +438107,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414350,12 +438124,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3dc93f" }, { @@ -414383,6 +438158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414398,12 +438175,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0308c" }, { @@ -414431,6 +438209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414446,12 +438226,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a874d" }, { @@ -414479,6 +438260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414494,12 +438277,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33902b" }, { @@ -414527,6 +438311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414542,12 +438328,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6c60" }, { @@ -414575,6 +438362,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414590,12 +438379,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c189a5" }, { @@ -414623,6 +438413,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414638,12 +438430,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74b258" } ], @@ -414674,6 +438467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414693,12 +438488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -414725,6 +438521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414740,12 +438538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -414773,6 +438572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414788,12 +438589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87b92e" }, { @@ -414821,6 +438623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414836,12 +438640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a6817" } ], @@ -414872,6 +438677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414880,9 +438687,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -414909,6 +438716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414929,7 +438738,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2330": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -414937,12 +438747,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -414969,6 +438780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -414984,12 +438797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b42f4b" }, { @@ -415017,6 +438831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415032,12 +438848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08b672" }, { @@ -415065,6 +438882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415080,12 +438899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df05b4" }, { @@ -415113,6 +438933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415128,12 +438950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38bfee" } ], @@ -415167,6 +438990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415175,9 +439000,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -415204,6 +439029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415224,7 +439051,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2330": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -415232,12 +439060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -415264,6 +439093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415279,12 +439110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b42f4b" }, { @@ -415312,6 +439144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415327,12 +439161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08b672" }, { @@ -415360,6 +439195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415375,12 +439212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6bc1a" }, { @@ -415408,6 +439246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415423,12 +439263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38bfee" } ], @@ -415462,6 +439303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415477,12 +439320,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -415510,6 +439354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415525,12 +439371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -415558,6 +439405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415576,9 +439425,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Unspeakable Oath'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "87f45e" }, { @@ -415606,6 +439455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415614,9 +439465,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -415643,6 +439494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415661,9 +439514,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1df0a5" }, { @@ -415691,6 +439544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415709,9 +439564,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "984eec" }, { @@ -415739,6 +439594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415757,9 +439614,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7a9cb" }, { @@ -415787,6 +439644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415805,9 +439664,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af600" } ], @@ -415838,15 +439697,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c962b2", "States": { "3": { @@ -415874,15 +439735,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7c7a8" }, "2": { @@ -415910,15 +439773,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "350a26" } } @@ -415948,6 +439813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -415963,12 +439830,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9897f" }, { @@ -415996,6 +439864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416014,9 +439884,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1811ea", "States": { "2": { @@ -416044,6 +439914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416062,9 +439934,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -416092,6 +439964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416110,9 +439984,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -416142,6 +440016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416157,12 +440033,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b37d1d" }, { @@ -416190,6 +440067,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416208,9 +440087,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bec080", "States": { "2": { @@ -416238,6 +440117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416256,9 +440137,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -416286,6 +440167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416304,9 +440187,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -416336,6 +440219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416351,12 +440236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcc1bf" }, { @@ -416384,6 +440270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416402,9 +440290,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02d2b1", "States": { "2": { @@ -416432,6 +440320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416450,9 +440340,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -416480,6 +440370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416498,9 +440390,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -416530,6 +440422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416545,12 +440439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e35136" }, { @@ -416578,6 +440473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416596,9 +440493,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b12e0", "States": { "2": { @@ -416626,6 +440523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416644,9 +440543,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -416674,6 +440573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416692,9 +440593,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -416724,6 +440625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416739,12 +440642,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6a875" }, { @@ -416772,6 +440676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416790,9 +440696,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f33a5f", "States": { "2": { @@ -416820,6 +440726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416838,9 +440746,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -416868,6 +440776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416886,9 +440796,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -416918,6 +440828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416933,12 +440845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "189f42" }, { @@ -416966,6 +440879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -416981,12 +440896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "576595" }, { @@ -417014,6 +440930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417032,9 +440950,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -417062,6 +440980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417080,9 +441000,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -417110,6 +441030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417128,9 +441050,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -417160,6 +441082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417175,12 +441099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "589ff6" }, { @@ -417208,6 +441133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417226,9 +441153,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3efbe9", "States": { "2": { @@ -417256,6 +441183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417274,9 +441203,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -417304,6 +441233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417322,9 +441253,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -417354,6 +441285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417369,12 +441302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "416548" }, { @@ -417402,6 +441336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417417,12 +441353,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f99530" } ], @@ -417473,6 +441410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417501,9 +441440,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"1c4c31\":{\"lock\":false,\"pos\":{\"x\":-11.1541,\"y\":1.56,\"z\":-23.9454},\"rot\":{\"x\":0.0799,\"y\":89.9937,\"z\":359.9831}},\"47f95d\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"77a069\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.777,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"8d2dcc\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"93a42f\":{\"lock\":false,\"pos\":{\"x\":-0.3967,\"y\":1.6506,\"z\":-10.5348},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"b52eaf\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0006,\"z\":0.0168}},\"bb070d\":{\"lock\":false,\"pos\":{\"x\":-4.3035,\"y\":1.5832,\"z\":-14.589},\"rot\":{\"x\":359.9197,\"y\":269.9802,\"z\":0.0169}},\"df01f6\":{\"lock\":false,\"pos\":{\"x\":-4.0004,\"y\":1.4065,\"z\":15.2206},\"rot\":{\"x\":359.9831,\"y\":-0.0005,\"z\":359.9196}},\"ede114\":{\"lock\":false,\"pos\":{\"x\":-17.1202,\"y\":1.6969,\"z\":11.4604},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"fed701\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -417530,6 +441469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417548,9 +441489,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -417577,6 +441518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417592,12 +441535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f2034" } ], @@ -417641,6 +441585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417649,9 +441595,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -417678,6 +441624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417693,12 +441641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bcab3" }, { @@ -417726,6 +441675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417741,12 +441692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "405a46" } ], @@ -417777,6 +441729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417824,7 +441778,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2322": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -417832,7 +441787,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2668": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -417840,7 +441796,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2669": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -417848,12 +441805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -417880,6 +441838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417895,12 +441855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -417928,6 +441889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417943,12 +441906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -417976,6 +441940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -417991,12 +441957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7485f9" }, { @@ -418024,6 +441991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418039,12 +442008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4f060" }, { @@ -418072,6 +442042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418087,12 +442059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "836888" }, { @@ -418120,6 +442093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418135,12 +442110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18dba0" }, { @@ -418168,6 +442144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418183,12 +442161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecffec" }, { @@ -418216,6 +442195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418231,12 +442212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6dd53" }, { @@ -418264,6 +442246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418279,12 +442263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69d084" }, { @@ -418312,6 +442297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418327,12 +442314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6feaea" }, { @@ -418360,6 +442348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418375,12 +442365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f4458" }, { @@ -418408,6 +442399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418423,12 +442416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be97e0" }, { @@ -418456,6 +442450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418471,12 +442467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c3204" }, { @@ -418504,6 +442501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418519,12 +442518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8c2bf" }, { @@ -418552,6 +442552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418567,12 +442569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec9c97" }, { @@ -418600,6 +442603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418615,12 +442620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f99335" }, { @@ -418648,6 +442654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418663,12 +442671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -418696,6 +442705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418711,12 +442722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "272ea4" }, { @@ -418744,6 +442756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418759,12 +442773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -418792,6 +442807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418807,12 +442824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99efa0" }, { @@ -418840,6 +442858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418855,12 +442875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" }, { @@ -418888,6 +442909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418903,12 +442926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30bb55" }, { @@ -418936,6 +442960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418951,12 +442977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" }, { @@ -418984,6 +443011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -418999,12 +443028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d32e4" }, { @@ -419032,6 +443062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419047,12 +443079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9349fd" }, { @@ -419080,6 +443113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419095,12 +443130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ae587" }, { @@ -419128,6 +443164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419143,12 +443181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "459f5a" }, { @@ -419176,6 +443215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419191,12 +443232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -419224,6 +443266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419239,12 +443283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -419272,6 +443317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419287,12 +443334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -419320,6 +443368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419335,12 +443385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" } ], @@ -419371,6 +443422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419391,12 +443444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -419423,6 +443477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419438,12 +443494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -419471,6 +443528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419486,12 +443545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "571edb" }, { @@ -419519,6 +443579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419534,12 +443596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "850fd2" }, { @@ -419567,6 +443630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419582,12 +443647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78351c" } ], @@ -419618,6 +443684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419636,7 +443704,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2325": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -419644,12 +443713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -419676,6 +443746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419691,12 +443763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0437b7" }, { @@ -419724,6 +443797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419739,12 +443814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64d9ff" } ], @@ -419775,6 +443851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419790,12 +443868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -419823,6 +443902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419838,12 +443919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -419871,6 +443953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -419889,9 +443973,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Pallid Mask'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb070d" }, { @@ -419919,15 +444003,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c4c31", "States": { "2": { @@ -419955,15 +444041,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2009a2" }, "3": { @@ -419991,15 +444079,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf3f4b" } } @@ -420029,6 +444119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420061,7 +444153,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2319": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/", @@ -420069,12 +444162,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -420101,6 +444195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420116,12 +444212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c14c8b" }, { @@ -420149,6 +444246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420164,12 +444263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2a55" }, { @@ -420197,6 +444297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420212,12 +444314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81920c" }, { @@ -420245,6 +444348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420260,12 +444365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14b1cb" }, { @@ -420293,6 +444399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420308,12 +444416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1237c" }, { @@ -420341,6 +444450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420356,12 +444467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3151e" }, { @@ -420389,6 +444501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420404,12 +444518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30c7a6" }, { @@ -420437,6 +444552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420452,12 +444569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5efda5" }, { @@ -420485,6 +444603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420500,12 +444620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e3d00" }, { @@ -420533,6 +444654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420548,12 +444671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66b81f" }, { @@ -420581,6 +444705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420596,12 +444722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29170f" }, { @@ -420629,6 +444756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420644,12 +444773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b08255" }, { @@ -420677,6 +444807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420692,12 +444824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fb3fc" }, { @@ -420725,6 +444858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420740,12 +444875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c7f4a" }, { @@ -420773,6 +444909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420788,12 +444926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80cf41" }, { @@ -420821,6 +444960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420836,12 +444977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5ce90" } ], @@ -420876,12 +445018,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 63.02782, + "posX": 63.0278625, "posY": 1.77258909, - "posZ": 28.5309868, + "posZ": 28.5309982, "rotX": 359.9201, "rotY": 269.997559, - "rotZ": 0.0168761425, + "rotZ": 0.0168766268, "scaleX": 2.00002885, "scaleY": 0.10587021, "scaleZ": 1.69295752 @@ -420898,6 +445040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420926,9 +445070,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,5,-2}, rotation={0,0,0}, height=250, width=600,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={1.5,5,2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-1.2,5,2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-3.5,5,2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.7,1,-2}, rotation={0,0,0}, height=280, width=600,\r\n font_size=200, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.7,1,-2}, rotation={0,0,0}, height=280, width=650,\r\n font_size=200, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-6,1,0}, rotation={0,90,0}, height=500, width=1200,\r\n-- font_size=350, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"41ebd8\":{\"lock\":false,\"pos\":{\"x\":12.0499,\"y\":1.4669,\"z\":7.3087},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"604753\":{\"lock\":false,\"pos\":{\"x\":12.0501,\"y\":1.4625,\"z\":-7.5963},\"rot\":{\"x\":359.9201,\"y\":270.0043,\"z\":0.0169}},\"bcc86c\":{\"lock\":false,\"pos\":{\"x\":12.0499,\"y\":1.4647,\"z\":0.0026},\"rot\":{\"x\":359.9201,\"y\":270.0319,\"z\":0.0168}},\"e0c3e7\":{\"lock\":false,\"pos\":{\"x\":-1.4655,\"y\":1.4756,\"z\":-26.9308},\"rot\":{\"x\":359.9201,\"y\":270.0076,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -420955,6 +445099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -420983,9 +445129,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"254c1f\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"2c2e26\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.002,\"z\":0.0169}},\"377b20\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6749,\"z\":-7.6999},\"rot\":{\"x\":359.9206,\"y\":270.0247,\"z\":0.018}},\"37ba8d\":{\"lock\":false,\"pos\":{\"x\":-26.7344,\"y\":1.6198,\"z\":3.3625},\"rot\":{\"x\":0.0684,\"y\":134.9986,\"z\":0.0446}},\"5229a9\":{\"lock\":false,\"pos\":{\"x\":-0.2945,\"y\":1.6505,\"z\":-10.4523},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"527f29\":{\"lock\":false,\"pos\":{\"x\":-4.0721,\"y\":1.583,\"z\":-14.3202},\"rot\":{\"x\":359.9197,\"y\":270.0043,\"z\":0.0168}},\"5d3bcc\":{\"lock\":false,\"pos\":{\"x\":-30.2071,\"y\":1.693,\"z\":-7.6951},\"rot\":{\"x\":359.9211,\"y\":268.7832,\"z\":0.0156}},\"670914\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"6ec50e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.08}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.5608,\"y\":1.6112,\"z\":3.4492},\"rot\":{\"x\":359.9554,\"y\":224.9951,\"z\":0.0684}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9981,\"z\":0.0687}},\"7f8292\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9998,\"z\":0.08}},\"9af3a1\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0006,\"z\":0.0803}},\"b053dc\":{\"lock\":false,\"pos\":{\"x\":-2.689,\"y\":1.655,\"z\":-5.0488},\"rot\":{\"x\":0.0168,\"y\":180.0131,\"z\":0.0803}},\"b3ccaf\":{\"lock\":false,\"pos\":{\"x\":-31.9435,\"y\":1.8269,\"z\":-7.7342},\"rot\":{\"x\":4.6861,\"y\":270.0046,\"z\":0.119}},\"c1f7de\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0075,\"z\":0.0169}},\"cfcb21\":{\"lock\":false,\"pos\":{\"x\":-18.8609,\"y\":1.8082,\"z\":-7.7211},\"rot\":{\"x\":4.7376,\"y\":270.007,\"z\":0.0117}},\"f28a24\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9953,\"z\":0.0169}},\"f98bcc\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7717,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -421012,6 +445158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421027,12 +445175,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "254c1f" }, { @@ -421060,6 +445209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421075,12 +445226,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c2e26" }, { @@ -421108,6 +445260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421123,12 +445277,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -421156,6 +445311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421174,9 +445331,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37ba8d", "States": { "2": { @@ -421204,6 +445361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421222,9 +445381,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -421252,6 +445411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421270,9 +445431,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -421302,6 +445463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421317,12 +445480,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5229a9" }, { @@ -421350,6 +445514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421368,9 +445534,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "527f29" }, { @@ -421398,6 +445564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421413,12 +445581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d3bcc" }, { @@ -421446,6 +445615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421461,12 +445632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "670914" }, { @@ -421494,6 +445666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421512,9 +445686,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ec50e", "States": { "2": { @@ -421542,6 +445716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421560,9 +445736,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -421590,6 +445766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421608,9 +445786,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -421640,6 +445818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421658,9 +445838,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -421688,6 +445868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421706,9 +445888,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -421736,6 +445918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421754,9 +445938,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -421786,6 +445970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421804,9 +445990,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -421833,6 +446019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421848,12 +446036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af188b" }, { @@ -421881,6 +446070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421896,12 +446087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -421929,6 +446121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421944,12 +446138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -421977,6 +446172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -421992,12 +446189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -422025,6 +446223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422040,12 +446240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -422073,6 +446274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422088,12 +446291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5fc31" } ], @@ -422137,6 +446341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422155,9 +446361,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f8292", "States": { "2": { @@ -422185,6 +446391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422203,9 +446411,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -422233,6 +446441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422251,9 +446461,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -422283,6 +446493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422302,12 +446514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -422334,6 +446547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422349,12 +446564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c8849" }, { @@ -422382,6 +446598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422397,12 +446615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c593b7" }, { @@ -422430,6 +446649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422445,12 +446666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" } ], @@ -422481,6 +446703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422500,12 +446724,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -422532,6 +446757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422547,12 +446774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -422580,6 +446808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422595,12 +446825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ea05e" }, { @@ -422628,6 +446859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422643,12 +446876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fba792" } ], @@ -422679,6 +446913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422694,12 +446930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3ccaf" }, { @@ -422727,6 +446964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422742,12 +446981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1f7de" }, { @@ -422775,6 +447015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422790,12 +447032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfcb21" }, { @@ -422823,6 +447066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422838,12 +447083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f28a24" }, { @@ -422871,6 +447117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422917,12 +447165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -422949,6 +447198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -422964,12 +447215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b4ef3" }, { @@ -422997,6 +447249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423012,12 +447266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa916a" }, { @@ -423045,6 +447300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423060,12 +447317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b4ef3" }, { @@ -423093,6 +447351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423108,12 +447368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cadd49" }, { @@ -423141,6 +447402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423156,12 +447419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -423189,6 +447453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423204,12 +447470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d726b" }, { @@ -423237,6 +447504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423252,12 +447521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -423285,6 +447555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423300,12 +447572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "891dd5" }, { @@ -423333,6 +447606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423348,12 +447623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -423381,6 +447657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423396,12 +447674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b29f35" }, { @@ -423429,6 +447708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423444,12 +447725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "832d7e" }, { @@ -423477,6 +447759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423492,12 +447776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -423525,6 +447810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423540,12 +447827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -423573,6 +447861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423588,12 +447878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -423621,6 +447912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423636,12 +447929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" }, { @@ -423669,6 +447963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423684,12 +447980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -423717,6 +448014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423732,12 +448031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -423765,6 +448065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423780,12 +448082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -423813,6 +448116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423828,12 +448133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -423861,6 +448167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423876,12 +448184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -423909,6 +448218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423924,12 +448235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -423957,6 +448269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -423972,12 +448286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -424005,6 +448320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424020,12 +448337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -424053,6 +448371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424068,12 +448388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -424101,6 +448422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424116,12 +448439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -424149,6 +448473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424164,12 +448490,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -424197,6 +448524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424212,12 +448541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2cf85" }, { @@ -424245,6 +448575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424260,12 +448592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -424293,6 +448626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424308,12 +448643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -424341,6 +448677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424356,12 +448694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cab587" } ], @@ -424415,6 +448754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424443,9 +448784,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"377b20\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"50ad79\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0031,\"z\":0.0803}},\"54354d\":{\"lock\":false,\"pos\":{\"x\":-12.5201,\"y\":1.6633,\"z\":7.6527},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"5ac698\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9959,\"z\":0.0687}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.4446,\"y\":1.61,\"z\":0.0781},\"rot\":{\"x\":359.9201,\"y\":270.0113,\"z\":0.0169}},\"91957f\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0046,\"z\":0.0803}},\"a22908\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0125,\"z\":0.0168}},\"c15c8a\":{\"lock\":false,\"pos\":{\"x\":-3.9682,\"y\":1.6545,\"z\":-14.4314},\"rot\":{\"x\":359.9197,\"y\":270.0123,\"z\":0.0168}},\"d85823\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7557,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9996,\"z\":180.0168}},\"ef1c11\":{\"lock\":false,\"pos\":{\"x\":-4.3657,\"y\":1.4071,\"z\":15.3672},\"rot\":{\"x\":359.9832,\"y\":0.0005,\"z\":359.9196}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -424472,6 +448813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424490,9 +448833,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -424519,6 +448862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424543,12 +448888,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -424575,6 +448921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424590,12 +448938,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f6d5c" }, { @@ -424623,6 +448972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424638,12 +448989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33870a" }, { @@ -424671,6 +449023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424686,12 +449040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -424719,6 +449074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424734,12 +449091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -424767,6 +449125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424782,12 +449142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec86a2" }, { @@ -424815,6 +449176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424830,12 +449193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad2df0" }, { @@ -424863,6 +449227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424878,12 +449244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a12fd2" }, { @@ -424911,6 +449278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424926,12 +449295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -424962,6 +449332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -424977,12 +449349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -425010,6 +449383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425028,9 +449403,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3d96a" }, { @@ -425058,6 +449433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425073,12 +449450,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -425106,6 +449484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425121,12 +449501,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "372a95" } ], @@ -425170,6 +449551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425178,9 +449561,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -425207,6 +449590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425227,12 +449612,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -425259,6 +449645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425274,12 +449662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cf636" }, { @@ -425307,6 +449696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425322,12 +449713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a845" }, { @@ -425355,6 +449747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425370,12 +449764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -425403,6 +449798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425418,12 +449815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc5fa" } ], @@ -425454,6 +449852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425474,12 +449874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -425506,6 +449907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425521,12 +449924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "796db7" }, { @@ -425554,6 +449958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425569,12 +449975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47ed9e" }, { @@ -425602,6 +450009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425617,12 +450026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -425650,6 +450060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425665,12 +450077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfd69a" } ], @@ -425701,6 +450114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425721,12 +450136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -425753,6 +450169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425768,12 +450186,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4ae63" }, { @@ -425801,6 +450220,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425816,12 +450237,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f2e83" }, { @@ -425849,6 +450271,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425864,12 +450288,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4ae63" }, { @@ -425897,6 +450322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425912,12 +450339,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -425948,6 +450376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -425968,12 +450398,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -426000,6 +450431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426015,12 +450448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad01d5" }, { @@ -426048,6 +450482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426063,12 +450499,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e4b6f" }, { @@ -426096,6 +450533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426111,12 +450550,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -426144,6 +450584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426159,12 +450601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c04b5" } ], @@ -426198,6 +450641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426241,12 +450686,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -426273,6 +450719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426288,12 +450736,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b7c88" }, { @@ -426321,6 +450770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426336,12 +450787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62b6cd" }, { @@ -426369,6 +450821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426384,12 +450838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53b9cb" }, { @@ -426417,6 +450872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426432,12 +450889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -426465,6 +450923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426480,12 +450940,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0abaca" }, { @@ -426513,6 +450974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426528,12 +450991,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -426561,6 +451025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426576,12 +451042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b4ef3" }, { @@ -426609,6 +451076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426624,12 +451093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa916a" }, { @@ -426657,6 +451127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426672,12 +451144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b4ef3" }, { @@ -426705,6 +451178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426720,12 +451195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cadd49" }, { @@ -426753,6 +451229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426768,12 +451246,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -426801,6 +451280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426816,12 +451297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d726b" }, { @@ -426849,6 +451331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426864,12 +451348,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -426897,6 +451382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426912,12 +451399,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -426945,6 +451433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -426960,12 +451450,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98c183" }, { @@ -426993,6 +451484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427008,12 +451501,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -427041,6 +451535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427056,12 +451552,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -427089,6 +451586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427104,12 +451603,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -427137,6 +451637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427152,12 +451654,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -427185,6 +451688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427200,12 +451705,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -427233,6 +451739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427248,12 +451756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -427281,6 +451790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427296,12 +451807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -427329,6 +451841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427344,12 +451858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -427377,6 +451892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427392,12 +451909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -427425,6 +451943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427440,12 +451960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -427473,6 +451994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427488,12 +452011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "085cc8" }, { @@ -427521,6 +452045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427536,12 +452062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e472" } ], @@ -427572,6 +452099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427591,12 +452120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -427623,6 +452153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427638,12 +452170,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76e312" }, { @@ -427671,6 +452204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427686,12 +452221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -427719,6 +452255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427734,12 +452272,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e352ec" } ], @@ -427770,6 +452309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427789,12 +452330,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -427821,6 +452363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427836,12 +452380,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac3a7b" }, { @@ -427869,6 +452414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427884,12 +452431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed5537" }, { @@ -427917,6 +452465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427932,12 +452482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a57395" } ], @@ -427968,6 +452519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -427983,12 +452536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a22908" }, { @@ -428016,6 +452570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428031,12 +452587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c15c8a" }, { @@ -428064,6 +452621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428082,9 +452641,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -428112,6 +452671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428130,9 +452691,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -428160,6 +452721,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428178,9 +452741,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -428210,6 +452773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428225,12 +452790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -428258,6 +452824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428284,12 +452852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -428316,6 +452885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428331,12 +452902,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0223a4" }, { @@ -428364,6 +452936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428379,12 +452953,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -428412,6 +452987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428427,12 +453004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "861e20" }, { @@ -428460,6 +453038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428475,12 +453055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90029" }, { @@ -428508,6 +453089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428523,12 +453106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47ac26" }, { @@ -428556,6 +453140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428571,12 +453157,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b6b06" }, { @@ -428604,6 +453191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428619,12 +453208,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fa651" }, { @@ -428652,6 +453242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428667,12 +453259,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09c961" }, { @@ -428700,6 +453293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428715,12 +453310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b4a5f" }, { @@ -428748,6 +453344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428763,12 +453361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8e04b" } ], @@ -428822,6 +453421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428850,9 +453451,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"076b61\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6954,\"z\":-0.0301},\"rot\":{\"x\":359.9206,\"y\":270.0014,\"z\":0.0178}},\"08e13b\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9202,\"y\":270.0006,\"z\":0.0158}},\"1aa7cb\":{\"lock\":false,\"pos\":{\"x\":-15.4693,\"y\":1.8129,\"z\":-0.0417},\"rot\":{\"x\":354.8367,\"y\":269.9908,\"z\":0.0106}},\"2432ab\":{\"lock\":false,\"pos\":{\"x\":0.2826,\"y\":1.5763,\"z\":-16.3088},\"rot\":{\"x\":359.9197,\"y\":270.0284,\"z\":0.0168}},\"250d52\":{\"lock\":false,\"pos\":{\"x\":-6.1919,\"y\":1.7607,\"z\":-10.4684},\"rot\":{\"x\":3.6714,\"y\":270.0193,\"z\":0.0169}},\"261175\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9965,\"z\":0.0799}},\"28e161\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7344,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"377b20\":{\"lock\":false,\"pos\":{\"x\":-31.8945,\"y\":1.8341,\"z\":-0.002},\"rot\":{\"x\":4.9354,\"y\":269.9871,\"z\":0.0037}},\"40c3a4\":{\"lock\":false,\"pos\":{\"x\":-26.9844,\"y\":1.618,\"z\":-3.9073},\"rot\":{\"x\":0.0446,\"y\":45.0001,\"z\":359.9316}},\"453ebf\":{\"lock\":false,\"pos\":{\"x\":-17.1202,\"y\":1.6065,\"z\":3.8581},\"rot\":{\"x\":0.0169,\"y\":179.9971,\"z\":0.08}},\"47f3de\":{\"lock\":false,\"pos\":{\"x\":-3.3583,\"y\":1.5815,\"z\":-15.9833},\"rot\":{\"x\":359.9197,\"y\":270.0041,\"z\":0.0168}},\"5eee6e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9967,\"z\":0.0799}},\"711ec9\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9971,\"z\":0.08}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-26.7605,\"y\":1.6188,\"z\":-0.014},\"rot\":{\"x\":359.9201,\"y\":269.9854,\"z\":0.0169}},\"814638\":{\"lock\":false,\"pos\":{\"x\":-20.2732,\"y\":1.612,\"z\":7.649},\"rot\":{\"x\":0.0793,\"y\":89.9995,\"z\":359.9828}},\"81d86f\":{\"lock\":false,\"pos\":{\"x\":-26.9036,\"y\":1.6213,\"z\":7.6326},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"86b480\":{\"lock\":false,\"pos\":{\"x\":-23.6782,\"y\":1.6862,\"z\":-0.0298},\"rot\":{\"x\":359.9204,\"y\":270.0104,\"z\":0.0153}},\"86faac\":{\"lock\":false,\"pos\":{\"x\":-15.7349,\"y\":1.7293,\"z\":7.6008},\"rot\":{\"x\":0.0856,\"y\":269.9966,\"z\":359.9038}},\"88245c\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9203,\"y\":269.9999,\"z\":0.0163}},\"8aa8fd\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0015,\"z\":0.0168}},\"9afc26\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9967,\"z\":0.0799}},\"a22908\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4414},\"rot\":{\"x\":359.92,\"y\":270.0122,\"z\":0.0165}},\"b28633\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7002},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"b42670\":{\"lock\":false,\"pos\":{\"x\":-20.2002,\"y\":1.6087,\"z\":-3.4434},\"rot\":{\"x\":0.0684,\"y\":135,\"z\":0.0446}},\"b99f05\":{\"lock\":false,\"pos\":{\"x\":-2.7249,\"y\":1.4004,\"z\":0.3734},\"rot\":{\"x\":359.9832,\"y\":0,\"z\":359.9197}},\"cedb0a\":{\"lock\":false,\"pos\":{\"x\":-22.2407,\"y\":1.7806,\"z\":7.636},\"rot\":{\"x\":0.2648,\"y\":269.9677,\"z\":0.0162}},\"da0b77\":{\"lock\":false,\"pos\":{\"x\":-21.9405,\"y\":1.815,\"z\":-0.0836},\"rot\":{\"x\":355.0872,\"y\":270.0024,\"z\":0.0167}},\"e0962c\":{\"lock\":false,\"pos\":{\"x\":-23.6772,\"y\":1.6977,\"z\":7.5697},\"rot\":{\"x\":0.2603,\"y\":269.9915,\"z\":0.017}},\"e1b8fc\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9984,\"z\":0.0169}},\"e26fc3\":{\"lock\":false,\"pos\":{\"x\":-26.3742,\"y\":1.6195,\"z\":4.2633},\"rot\":{\"x\":0.0446,\"y\":45,\"z\":359.9316}},\"e4821e\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"e9bb0a\":{\"lock\":false,\"pos\":{\"x\":-15.488,\"y\":1.8123,\"z\":-7.6626},\"rot\":{\"x\":354.7821,\"y\":269.9984,\"z\":0.0046}},\"f859a4\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6555,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.002,\"z\":0.0803}},\"fac63b\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -428879,6 +453480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428918,12 +453521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -428950,6 +453554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -428965,12 +453571,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b7c88" }, { @@ -428998,6 +453605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429013,12 +453622,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62b6cd" }, { @@ -429046,6 +453656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429061,12 +453673,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53b9cb" }, { @@ -429094,6 +453707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429109,12 +453724,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -429142,6 +453758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429157,12 +453775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0abaca" }, { @@ -429190,6 +453809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429205,12 +453826,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -429238,6 +453860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429253,12 +453877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef3cf9" }, { @@ -429286,6 +453911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429301,12 +453928,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "912e54" }, { @@ -429334,6 +453962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429349,12 +453979,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -429382,6 +454013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429397,12 +454030,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4904d0" }, { @@ -429430,6 +454064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429445,12 +454081,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e04da" }, { @@ -429478,6 +454115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429493,12 +454132,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d0c1c" }, { @@ -429526,6 +454166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429541,12 +454183,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -429574,6 +454217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429589,12 +454234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b75b70" }, { @@ -429622,6 +454268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429637,12 +454285,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -429670,6 +454319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429685,12 +454336,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -429718,6 +454370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429733,12 +454387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -429766,6 +454421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429781,12 +454438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" }, { @@ -429814,6 +454472,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429829,12 +454489,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "057d5f" }, { @@ -429862,6 +454523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429877,12 +454540,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ceae2" }, { @@ -429910,6 +454574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429925,12 +454591,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8fcf" }, { @@ -429958,6 +454625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -429973,12 +454642,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -430006,6 +454676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430021,12 +454693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfaf" } ], @@ -430057,6 +454730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430065,9 +454740,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -430094,6 +454769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430112,7 +454789,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2321": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -430120,12 +454798,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -430152,6 +454831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430167,12 +454848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -430200,6 +454882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430215,12 +454899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c19e2" } ], @@ -430251,6 +454936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430269,7 +454956,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2321": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -430277,12 +454965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -430309,6 +454998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430324,12 +455015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62f2fe" }, { @@ -430357,6 +455049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430372,12 +455066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f364ec" } ], @@ -430411,6 +455106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430426,12 +455123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f859a4" }, { @@ -430459,6 +455157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430474,12 +455174,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a22908" }, { @@ -430507,6 +455208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430522,12 +455225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "250d52" }, { @@ -430555,6 +455259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430573,9 +455279,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "47f3de" }, { @@ -430603,6 +455309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430621,9 +455329,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2432ab" }, { @@ -430651,6 +455359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430666,12 +455376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1aa7cb" }, { @@ -430699,6 +455410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430714,12 +455427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08e13b" }, { @@ -430747,6 +455461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430765,9 +455481,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "261175", "States": { "2": { @@ -430795,6 +455511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430813,9 +455531,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -430843,6 +455561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430861,9 +455581,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -430893,6 +455613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430908,12 +455630,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88245c" }, { @@ -430941,6 +455664,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -430956,12 +455681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9bb0a" }, { @@ -430989,6 +455715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431007,9 +455735,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "453ebf", "States": { "2": { @@ -431037,6 +455765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431055,9 +455785,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -431085,6 +455815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431103,9 +455835,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -431135,6 +455867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431150,12 +455884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8aa8fd" }, { @@ -431183,6 +455918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431198,12 +455935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86faac" }, { @@ -431231,6 +455969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431249,9 +455989,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "814638", "States": { "2": { @@ -431279,6 +456019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431297,9 +456039,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -431327,6 +456069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431345,9 +456089,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -431377,6 +456121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431392,12 +456138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cedb0a" }, { @@ -431425,6 +456172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431440,12 +456189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0962c" }, { @@ -431473,6 +456223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431491,9 +456243,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9afc26", "States": { "2": { @@ -431521,6 +456273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431539,9 +456293,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -431569,6 +456323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431587,9 +456343,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -431619,6 +456375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431634,12 +456392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86b480" }, { @@ -431667,6 +456426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431685,9 +456446,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5eee6e", "States": { "2": { @@ -431715,6 +456476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431733,9 +456496,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -431763,6 +456526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431781,9 +456546,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -431813,6 +456578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431828,12 +456595,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1b8fc" }, { @@ -431861,6 +456629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431876,12 +456646,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da0b77" }, { @@ -431909,6 +456680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431927,9 +456700,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b42670", "States": { "2": { @@ -431957,6 +456730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -431975,9 +456750,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -432005,6 +456780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432023,9 +456800,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -432055,6 +456832,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432073,9 +456852,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40c3a4", "States": { "2": { @@ -432103,6 +456882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432121,9 +456902,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -432151,6 +456932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432169,9 +456952,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -432201,6 +456984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432219,9 +457004,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e26fc3", "States": { "2": { @@ -432249,6 +457034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432267,9 +457054,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -432297,6 +457084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432315,9 +457104,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -432347,6 +457136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432365,9 +457156,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81d86f", "States": { "2": { @@ -432395,6 +457186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432413,9 +457206,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -432443,6 +457236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432461,9 +457256,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -432493,6 +457288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432508,12 +457305,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fac63b" }, { @@ -432541,6 +457339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432559,9 +457359,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "711ec9", "States": { "2": { @@ -432589,6 +457389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432607,9 +457409,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -432637,6 +457439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432655,9 +457459,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -432687,6 +457491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432702,12 +457508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "076b61" }, { @@ -432735,6 +457542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432750,12 +457559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -432783,6 +457593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432798,12 +457610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b28633" }, { @@ -432831,6 +457644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432849,9 +457664,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -432879,6 +457694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432897,9 +457714,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -432927,6 +457744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432945,9 +457764,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -432977,6 +457796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -432995,9 +457816,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -433024,6 +457845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433048,12 +457871,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -433080,6 +457904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433095,12 +457921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f6d5c" }, { @@ -433128,6 +457955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433143,12 +457972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33870a" }, { @@ -433176,6 +458006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433191,12 +458023,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -433224,6 +458057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433239,12 +458074,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -433272,6 +458108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433287,12 +458125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec86a2" }, { @@ -433320,6 +458159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433335,12 +458176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad2df0" }, { @@ -433368,6 +458210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433383,12 +458227,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a12fd2" }, { @@ -433416,6 +458261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433431,12 +458278,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -433467,6 +458315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433482,12 +458332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -433554,6 +458405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433572,9 +458425,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --First checkbox\r\n {\r\n pos = {-0.62,0.1,0.056},\r\n size = 400,\r\n state = false\r\n },\r\n --Second checkbox\r\n {\r\n pos = {-0.629,0.1,0.199},\r\n size = 400,\r\n state = false\r\n },\r\n --Third checkbox\r\n {\r\n pos = {-0.594,0.1,0.355},\r\n size = 400,\r\n state = false\r\n },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n {\r\n pos = {-0.7,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one counter 2\r\n {\r\n pos = {-0.52,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one xp 1\r\n {\r\n pos = {-0.517,0.1,-0.5},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 1\r\n {\r\n pos = {-0.274,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 2\r\n {\r\n pos = {-0.074,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two xp 1\r\n {\r\n pos = {-0.061,0.1,-0.5},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 1\r\n {\r\n pos = {0.153,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 2\r\n {\r\n pos = {0.379,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three xp 1\r\n {\r\n pos = {0.38,0.1,-0.5},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 1\r\n {\r\n pos = {0.614,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 2\r\n {\r\n pos = {0.82,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four xp 1\r\n {\r\n pos = {0.827,0.1,-0.5},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --Slot one player\r\n {\r\n pos = {-0.637,0.1,-0.66},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one investigator\r\n {\r\n pos = {-0.637,0.1,-0.58},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one story\r\n {\r\n pos = {-0.637,0.1,-0.28},\r\n rows = 3,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two player\r\n {\r\n pos = {-0.2,0.1,-0.66},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two investigator\r\n {\r\n pos = {-0.2,0.1,-0.58},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two story\r\n {\r\n pos = {-0.2,0.1,-0.28},\r\n rows = 3,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three player\r\n {\r\n pos = {0.241,0.1,-0.66},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three investigator\r\n {\r\n pos = {0.237,0.1,-0.58},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three story\r\n {\r\n pos = {0.24,0.1,-0.28},\r\n rows = 3,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four player\r\n {\r\n pos = {0.671,0.1,-0.66},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four investigator\r\n {\r\n pos = {0.671,0.1,-0.58},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four story\r\n {\r\n pos = {0.671,0.1,-0.28},\r\n rows = 3,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Killed Textbox\r\n {\r\n pos = {-0.4,0.1,0.68},\r\n rows = 8,\r\n width = 3800,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes\r\n {\r\n pos = {0.507,0.1,0.15},\r\n rows = 8,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Cultists interrogated\r\n {\r\n pos = {0.507,0.1,0.509},\r\n rows = 4,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Cultists got away\r\n {\r\n pos = {0.507,0.1,0.771},\r\n rows = 4,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend", "LuaScriptState": "{\"checkbox\":[{\"pos\":[-0.62,0.1,0.056],\"size\":400,\"state\":false},{\"pos\":[-0.629,0.1,0.199],\"size\":400,\"state\":false},{\"pos\":[-0.594,0.1,0.355],\"size\":400,\"state\":false}],\"counter\":[{\"hideBG\":true,\"pos\":[-0.7,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.52,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.517,0.1,-0.5],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[-0.274,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.074,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.061,0.1,-0.5],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.153,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.379,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.38,0.1,-0.5],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.614,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.82,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.827,0.1,-0.5],\"size\":300,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.66],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.58],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.28],\"rows\":3,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.66],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.58],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.28],\"rows\":3,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.241,0.1,-0.66],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.237,0.1,-0.58],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.24,0.1,-0.28],\"rows\":3,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.66],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.58],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.28],\"rows\":3,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[-0.4,0.1,0.68],\"rows\":8,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[0.507,0.1,0.15],\"rows\":8,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[0.507,0.1,0.509],\"rows\":4,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[0.507,0.1,0.771],\"rows\":4,\"value\":\"\",\"width\":3500}]}", + "XmlUI": "", "GUID": "e0c3e7" } ], @@ -433605,15 +458458,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd45ba" }, { @@ -433641,15 +458496,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598e49" }, { @@ -433677,6 +458534,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433705,9 +458564,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.9,0,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.9,0,2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0b361d\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.3516,\"z\":83.3067},\"rot\":{\"x\":0.0208,\"y\":270.0185,\"z\":180.0168}},\"0da7f2\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.3502,\"z\":85.6067},\"rot\":{\"x\":0.0208,\"y\":270.0016,\"z\":180.0168}},\"193ddf\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.3434,\"z\":78.7067},\"rot\":{\"x\":0.0208,\"y\":270.0115,\"z\":180.0168}},\"62c248\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.3482,\"z\":71.8067},\"rot\":{\"x\":0.0208,\"y\":270.0056,\"z\":180.0168}},\"728f7e\":{\"lock\":false,\"pos\":{\"x\":-24.544,\"y\":1.3425,\"z\":85.5946},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":180.0168}},\"9c5822\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.3432,\"z\":76.4067},\"rot\":{\"x\":0.0208,\"y\":270.0131,\"z\":180.0168}},\"c97be9\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.3387,\"z\":62.6066},\"rot\":{\"x\":0.0208,\"y\":270.0144,\"z\":180.0168}},\"d95bd6\":{\"lock\":false,\"pos\":{\"x\":-24.5466,\"y\":1.4737,\"z\":78.6946},\"rot\":{\"x\":0.0208,\"y\":270.0463,\"z\":180.0168}},\"ee093b\":{\"lock\":false,\"pos\":{\"x\":-24.5413,\"y\":1.3439,\"z\":83.2945},\"rot\":{\"x\":0.0208,\"y\":269.9633,\"z\":180.0168}},\"f9215d\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.34,\"z\":67.2067},\"rot\":{\"x\":0.0208,\"y\":270.0142,\"z\":180.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -433734,6 +458593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433762,9 +458623,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.9,0,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.9,0,2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0b361d\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.3516,\"z\":83.3067},\"rot\":{\"x\":0.0208,\"y\":270.0185,\"z\":180.0168}},\"0da7f2\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.3502,\"z\":85.6067},\"rot\":{\"x\":0.0208,\"y\":270.0016,\"z\":180.0168}},\"193ddf\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.3434,\"z\":78.7067},\"rot\":{\"x\":0.0208,\"y\":270.0115,\"z\":180.0168}},\"62c248\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.3482,\"z\":71.8067},\"rot\":{\"x\":0.0208,\"y\":270.0056,\"z\":180.0168}},\"728f7e\":{\"lock\":false,\"pos\":{\"x\":-24.544,\"y\":1.3425,\"z\":85.5946},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":180.0168}},\"9c5822\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.3432,\"z\":76.4067},\"rot\":{\"x\":0.0208,\"y\":270.0131,\"z\":180.0168}},\"c97be9\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.3387,\"z\":62.6066},\"rot\":{\"x\":0.0208,\"y\":270.0144,\"z\":180.0168}},\"d95bd6\":{\"lock\":false,\"pos\":{\"x\":-24.5466,\"y\":1.4737,\"z\":78.6946},\"rot\":{\"x\":0.0208,\"y\":270.0463,\"z\":180.0168}},\"ee093b\":{\"lock\":false,\"pos\":{\"x\":-24.5413,\"y\":1.3439,\"z\":83.2945},\"rot\":{\"x\":0.0208,\"y\":269.9633,\"z\":180.0168}},\"f9215d\":{\"lock\":false,\"pos\":{\"x\":-20.9389,\"y\":1.34,\"z\":67.2067},\"rot\":{\"x\":0.0208,\"y\":270.0142,\"z\":180.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -433791,6 +458652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433809,12 +458672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -433841,6 +458705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433856,12 +458722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31f72f" }, { @@ -433889,6 +458756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433904,12 +458773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd9c56" } ], @@ -433940,6 +458810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -433962,12 +458834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -433994,6 +458867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434009,12 +458884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d28be6" }, { @@ -434042,6 +458918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434057,12 +458935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fb446" }, { @@ -434090,6 +458969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434105,12 +458986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "016e3c" }, { @@ -434138,6 +459020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434153,12 +459037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eeb330" }, { @@ -434186,6 +459071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434201,12 +459088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df93a" }, { @@ -434234,6 +459122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434249,12 +459139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2ef43" } ], @@ -434285,6 +459176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434305,12 +459198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -434337,6 +459231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434352,12 +459248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29766c" }, { @@ -434385,6 +459282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434400,12 +459299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88a9b3" }, { @@ -434433,6 +459333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434448,12 +459350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da227d" }, { @@ -434481,6 +459384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434496,12 +459401,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b3c0a" } ], @@ -434532,6 +459438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434550,12 +459458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -434582,6 +459491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434597,12 +459508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba2ae1" }, { @@ -434630,6 +459542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434645,12 +459559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd3d09" } ], @@ -434681,6 +459596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434707,12 +459624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -434739,6 +459657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434754,12 +459674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b239d7" }, { @@ -434787,6 +459708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434802,12 +459725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16a89d" }, { @@ -434835,6 +459759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434850,12 +459776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ea68b" }, { @@ -434883,6 +459810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434898,12 +459827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d83baf" }, { @@ -434931,6 +459861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434946,12 +459878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88ee43" }, { @@ -434979,6 +459912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -434994,12 +459929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "249d83" }, { @@ -435027,6 +459963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435042,12 +459980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3575a3" }, { @@ -435075,6 +460014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435090,12 +460031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c17498" }, { @@ -435123,6 +460065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435138,12 +460082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8598a4" }, { @@ -435171,6 +460116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435186,12 +460133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2210c1" } ], @@ -435222,6 +460170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435241,12 +460191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -435273,6 +460224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435288,12 +460241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5be8b" }, { @@ -435321,6 +460275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435336,12 +460292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea0fa1" }, { @@ -435369,6 +460326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435384,12 +460343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6aba5" } ], @@ -435420,6 +460380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435440,12 +460402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -435472,6 +460435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435487,12 +460452,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eff3c8" }, { @@ -435520,6 +460486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435535,12 +460503,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57e648" }, { @@ -435568,6 +460537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435583,12 +460554,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "406ab2" }, { @@ -435616,6 +460588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435631,12 +460605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "447a08" } ], @@ -435667,6 +460642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435718,7 +460695,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2910": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -435726,7 +460704,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2908": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -435734,7 +460713,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4381": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -435742,12 +460722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -435774,6 +460755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435789,12 +460772,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e42f12" }, { @@ -435822,6 +460806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435837,12 +460823,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31f72f" }, { @@ -435870,6 +460857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435885,12 +460874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88ee43" }, { @@ -435918,6 +460908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435933,12 +460925,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea0fa1" }, { @@ -435966,6 +460959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -435981,12 +460976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eeb330" }, { @@ -436014,6 +461010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436029,12 +461027,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd9c56" }, { @@ -436062,6 +461061,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436077,12 +461078,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eff3c8" }, { @@ -436110,6 +461112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436125,12 +461129,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2210c1" }, { @@ -436158,6 +461163,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436173,12 +461180,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ea68b" }, { @@ -436206,6 +461214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436221,12 +461231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29766c" }, { @@ -436254,6 +461265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436269,12 +461282,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88a9b3" }, { @@ -436302,6 +461316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436317,12 +461333,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d83baf" }, { @@ -436350,6 +461367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436365,12 +461384,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd3d09" }, { @@ -436398,6 +461418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436413,12 +461435,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df93a" }, { @@ -436446,6 +461469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436461,12 +461486,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fb446" }, { @@ -436494,6 +461520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436509,12 +461537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "447a08" }, { @@ -436542,6 +461571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436557,12 +461588,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b3c0a" }, { @@ -436590,6 +461622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436605,12 +461639,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba2ae1" }, { @@ -436638,6 +461673,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436653,12 +461690,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d28be6" }, { @@ -436686,6 +461724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436701,12 +461741,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5be8b" }, { @@ -436734,6 +461775,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436749,12 +461792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16a89d" }, { @@ -436782,6 +461826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436797,12 +461843,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da227d" }, { @@ -436830,6 +461877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436845,12 +461894,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cebf6a" }, { @@ -436878,6 +461928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436893,12 +461945,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b239d7" }, { @@ -436926,6 +461979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436941,12 +461996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "016e3c" }, { @@ -436974,6 +462030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -436989,12 +462047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c17498" }, { @@ -437022,6 +462081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437037,12 +462098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5c93d" }, { @@ -437070,6 +462132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437085,12 +462149,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6aba5" }, { @@ -437118,6 +462183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437133,12 +462200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8598a4" }, { @@ -437166,6 +462234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437181,12 +462251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc65f3" }, { @@ -437214,6 +462285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437229,12 +462302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "249d83" }, { @@ -437262,6 +462336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437277,12 +462353,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3575a3" }, { @@ -437310,6 +462387,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437325,12 +462404,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57e648" }, { @@ -437358,6 +462438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437373,12 +462455,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "406ab2" }, { @@ -437406,6 +462489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437421,12 +462506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2ef43" } ], @@ -437457,6 +462543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437476,12 +462564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -437508,6 +462597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437523,12 +462614,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5b38" }, { @@ -437556,6 +462648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437571,12 +462665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85e7d9" }, { @@ -437604,6 +462699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437619,12 +462716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6cbc01" } ], @@ -437655,6 +462753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437675,12 +462775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -437707,6 +462808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437722,12 +462825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1ce8e" }, { @@ -437755,6 +462859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437770,12 +462876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cebf6a" }, { @@ -437803,6 +462910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437818,12 +462927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc65f3" }, { @@ -437851,6 +462961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437866,12 +462978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5c93d" } ], @@ -437905,6 +463018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437923,12 +463038,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -437955,6 +463071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -437970,12 +463088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31f72f" }, { @@ -438003,6 +463122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438018,12 +463139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd9c56" } ], @@ -438054,6 +463176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438076,12 +463200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -438108,6 +463233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438123,12 +463250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d28be6" }, { @@ -438156,6 +463284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438171,12 +463301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fb446" }, { @@ -438204,6 +463335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438219,12 +463352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "016e3c" }, { @@ -438252,6 +463386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438267,12 +463403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eeb330" }, { @@ -438300,6 +463437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438315,12 +463454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df93a" }, { @@ -438348,6 +463488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438363,12 +463505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2ef43" } ], @@ -438399,6 +463542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438419,12 +463564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -438451,6 +463597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438466,12 +463614,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29766c" }, { @@ -438499,6 +463648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438514,12 +463665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88a9b3" }, { @@ -438547,6 +463699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438562,12 +463716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da227d" }, { @@ -438595,6 +463750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438610,12 +463767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b3c0a" } ], @@ -438646,6 +463804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438664,12 +463824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -438696,6 +463857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438711,12 +463874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba2ae1" }, { @@ -438744,6 +463908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438759,12 +463925,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd3d09" } ], @@ -438795,6 +463962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438821,12 +463990,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -438853,6 +464023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438868,12 +464040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b239d7" }, { @@ -438901,6 +464074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438916,12 +464091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16a89d" }, { @@ -438949,6 +464125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -438964,12 +464142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ea68b" }, { @@ -438997,6 +464176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439012,12 +464193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d83baf" }, { @@ -439045,6 +464227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439060,12 +464244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88ee43" }, { @@ -439093,6 +464278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439108,12 +464295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "249d83" }, { @@ -439141,6 +464329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439156,12 +464346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3575a3" }, { @@ -439189,6 +464380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439204,12 +464397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c17498" }, { @@ -439237,6 +464431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439252,12 +464448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8598a4" }, { @@ -439285,6 +464482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439300,12 +464499,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2210c1" } ], @@ -439336,6 +464536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439355,12 +464557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -439387,6 +464590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439402,12 +464607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5be8b" }, { @@ -439435,6 +464641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439450,12 +464658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea0fa1" }, { @@ -439483,6 +464692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439498,12 +464709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6aba5" } ], @@ -439534,6 +464746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439554,12 +464768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -439586,6 +464801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439601,12 +464818,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eff3c8" }, { @@ -439634,6 +464852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439649,12 +464869,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57e648" }, { @@ -439682,6 +464903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439697,12 +464920,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "406ab2" }, { @@ -439730,6 +464954,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439745,12 +464971,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "447a08" } ], @@ -439781,6 +465008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439832,7 +465061,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2910": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -439840,7 +465070,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2908": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -439848,7 +465079,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4381": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", @@ -439856,12 +465088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -439888,6 +465121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439903,12 +465138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e42f12" }, { @@ -439936,6 +465172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439951,12 +465189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31f72f" }, { @@ -439984,6 +465223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -439999,12 +465240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88ee43" }, { @@ -440032,6 +465274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440047,12 +465291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea0fa1" }, { @@ -440080,6 +465325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440095,12 +465342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eeb330" }, { @@ -440128,6 +465376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440143,12 +465393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd9c56" }, { @@ -440176,6 +465427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440191,12 +465444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eff3c8" }, { @@ -440224,6 +465478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440239,12 +465495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2210c1" }, { @@ -440272,6 +465529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440287,12 +465546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ea68b" }, { @@ -440320,6 +465580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440335,12 +465597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29766c" }, { @@ -440368,6 +465631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440383,12 +465648,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88a9b3" }, { @@ -440416,6 +465682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440431,12 +465699,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d83baf" }, { @@ -440464,6 +465733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440479,12 +465750,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd3d09" }, { @@ -440512,6 +465784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440527,12 +465801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df93a" }, { @@ -440560,6 +465835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440575,12 +465852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fb446" }, { @@ -440608,6 +465886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440623,12 +465903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "447a08" }, { @@ -440656,6 +465937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440671,12 +465954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b3c0a" }, { @@ -440704,6 +465988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440719,12 +466005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba2ae1" }, { @@ -440752,6 +466039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440767,12 +466056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d28be6" }, { @@ -440800,6 +466090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440815,12 +466107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5be8b" }, { @@ -440848,6 +466141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440863,12 +466158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16a89d" }, { @@ -440896,6 +466192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440911,12 +466209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da227d" }, { @@ -440944,6 +466243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -440959,12 +466260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cebf6a" }, { @@ -440992,6 +466294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441007,12 +466311,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b239d7" }, { @@ -441040,6 +466345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441055,12 +466362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "016e3c" }, { @@ -441088,6 +466396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441103,12 +466413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c17498" }, { @@ -441136,6 +466447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441151,12 +466464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5c93d" }, { @@ -441184,6 +466498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441199,12 +466515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6aba5" }, { @@ -441232,6 +466549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441247,12 +466566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8598a4" }, { @@ -441280,6 +466600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441295,12 +466617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc65f3" }, { @@ -441328,6 +466651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441343,12 +466668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "249d83" }, { @@ -441376,6 +466702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441391,12 +466719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3575a3" }, { @@ -441424,6 +466753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441439,12 +466770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57e648" }, { @@ -441472,6 +466804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441487,12 +466821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "406ab2" }, { @@ -441520,6 +466855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441535,12 +466872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2ef43" } ], @@ -441571,6 +466909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441590,12 +466930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -441622,6 +466963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441637,12 +466980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5b38" }, { @@ -441670,6 +467014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441685,12 +467031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85e7d9" }, { @@ -441718,6 +467065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441733,12 +467082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6cbc01" } ], @@ -441769,6 +467119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441789,12 +467141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -441821,6 +467174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441836,12 +467191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1ce8e" }, { @@ -441869,6 +467225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441884,12 +467242,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cebf6a" }, { @@ -441917,6 +467276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441932,12 +467293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc65f3" }, { @@ -441965,6 +467327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -441980,12 +467344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5c93d" } ], @@ -442019,23 +467384,25 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e679ba" }, { "Name": "3DText", "Transform": { - "posX": -17.9177456, - "posY": 1.26785541, - "posZ": 84.56995, + "posX": -17.9177246, + "posY": 1.26785171, + "posZ": 84.5699844, "rotX": 90.0, "rotY": 89.8333054, "rotZ": 0.0, @@ -442055,6 +467422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442070,16 +467439,16 @@ }, "fontSize": 64 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e51c92" }, { "Name": "3DText", "Transform": { - "posX": -17.926115, - "posY": 1.26580036, + "posX": -17.9260845, + "posY": 1.26579666, "posZ": 77.58867, "rotX": 90.0, "rotY": 89.8333054, @@ -442100,6 +467469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442115,16 +467486,16 @@ }, "fontSize": 64 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f870e" }, { "Name": "3DText", "Transform": { - "posX": -17.961504, - "posY": 1.26409316, + "posX": -17.9614868, + "posY": 1.26408935, "posZ": 71.80045, "rotX": 90.0, "rotY": 89.8333054, @@ -442145,6 +467516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442160,16 +467533,16 @@ }, "fontSize": 64 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "778306" }, { "Name": "3DText", "Transform": { - "posX": -17.8955784, - "posY": 1.26276577, + "posX": -17.8955536, + "posY": 1.262762, "posZ": 67.18362, "rotX": 90.0, "rotY": 89.8333054, @@ -442190,6 +467563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442205,16 +467580,16 @@ }, "fontSize": 64 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca78c7" }, { "Name": "3DText", "Transform": { - "posX": -17.9074535, - "posY": 1.26140285, + "posX": -17.9074211, + "posY": 1.261399, "posZ": 62.54195, "rotX": 90.0, "rotY": 89.8333054, @@ -442235,6 +467610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442250,17 +467627,17 @@ }, "fontSize": 64 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f04cb" }, { "Name": "3DText", "Transform": { - "posX": -26.7902184, - "posY": 1.35644376, - "posZ": 84.40165, + "posX": -26.7901974, + "posY": 1.35644007, + "posZ": 84.4016953, "rotX": 90.0, "rotY": 90.00013, "rotZ": 0.0, @@ -442280,6 +467657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442295,16 +467674,16 @@ }, "fontSize": 64 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260e0c" }, { "Name": "3DText", "Transform": { - "posX": -26.7740688, - "posY": 1.35475683, + "posX": -26.77405, + "posY": 1.3547529, "posZ": 78.61308, "rotX": 90.0, "rotY": 90.00013, @@ -442325,6 +467704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442340,9 +467721,9 @@ }, "fontSize": 64 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb4ade" }, { @@ -442370,15 +467751,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8008a9" }, { @@ -442406,6 +467789,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442434,9 +467819,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"1687f1\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3621,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9949,\"z\":0.0168}},\"399b4b\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3673,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9958,\"z\":0.0168}},\"46e63d\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3628,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"4a2976\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3671,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9974,\"z\":0.0168}},\"4a7483\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3594,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"8b5134\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3665,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":269.9968,\"z\":0.0168}},\"8c9a30\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3698,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9835,\"z\":0.0168}},\"8d4398\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3608,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"980ca8\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3601,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"9aa907\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3648,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"9be77d\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3644,\"z\":73.9904},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"z\":0.0168}},\"9d2034\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3635,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":270.0087,\"z\":0.0168}},\"9fa3cf\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3685,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":270.0149,\"z\":0.0168}},\"b2ce24\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3678,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9971,\"z\":0.0168}},\"b7f546\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3658,\"z\":78.5904},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"z\":0.0168}},\"d64789\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3651,\"z\":76.2904},\"rot\":{\"x\":0.0208,\"y\":269.9972,\"z\":0.0168}},\"ea2bce\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.368,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":270.0168,\"z\":0.0168}},\"eb1fed\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3614,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9942,\"z\":0.0168}},\"ec160e\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3692,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9555,\"z\":0.0168}},\"ffb841\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3641,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":270.0029,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -442463,6 +467848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442491,9 +467878,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"1687f1\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3621,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9949,\"z\":0.0168}},\"399b4b\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3673,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9958,\"z\":0.0168}},\"46e63d\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3628,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"4a2976\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3671,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9974,\"z\":0.0168}},\"4a7483\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3594,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"8b5134\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3665,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":269.9968,\"z\":0.0168}},\"8c9a30\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3698,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9835,\"z\":0.0168}},\"8d4398\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3608,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"980ca8\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3601,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"9aa907\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3648,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"9be77d\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3644,\"z\":73.9904},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"z\":0.0168}},\"9d2034\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3635,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":270.0087,\"z\":0.0168}},\"9fa3cf\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3685,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":270.0149,\"z\":0.0168}},\"b2ce24\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3678,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9971,\"z\":0.0168}},\"b7f546\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3658,\"z\":78.5904},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"z\":0.0168}},\"d64789\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3651,\"z\":76.2904},\"rot\":{\"x\":0.0208,\"y\":269.9972,\"z\":0.0168}},\"ea2bce\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.368,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":270.0168,\"z\":0.0168}},\"eb1fed\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3614,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9942,\"z\":0.0168}},\"ec160e\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3692,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9555,\"z\":0.0168}},\"ffb841\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3641,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":270.0029,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -442520,6 +467907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442535,12 +467924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1687f1" }, { @@ -442568,6 +467958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442583,12 +467975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "399b4b" }, { @@ -442616,6 +468009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442631,12 +468026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46e63d" }, { @@ -442664,6 +468060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442679,12 +468077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a2976" }, { @@ -442712,6 +468111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442727,12 +468128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a7483" }, { @@ -442760,6 +468162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442775,12 +468179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b5134" }, { @@ -442808,6 +468213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442823,12 +468230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c9a30" }, { @@ -442856,6 +468264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442871,12 +468281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d4398" }, { @@ -442904,6 +468315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442919,12 +468332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "980ca8" }, { @@ -442952,6 +468366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -442967,12 +468383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9aa907" }, { @@ -443000,6 +468417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443015,12 +468434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9be77d" }, { @@ -443048,6 +468468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443063,12 +468485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d2034" }, { @@ -443096,6 +468519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443111,12 +468536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fa3cf" }, { @@ -443144,6 +468570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443159,12 +468587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2ce24" }, { @@ -443192,6 +468621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443207,12 +468638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7f546" }, { @@ -443240,6 +468672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443255,12 +468689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d64789" }, { @@ -443288,6 +468723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443303,12 +468740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2bce" }, { @@ -443336,6 +468774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443351,12 +468791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb1fed" }, { @@ -443384,6 +468825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443399,12 +468842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec160e" }, { @@ -443432,6 +468876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443447,12 +468893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffb841" } ], @@ -443483,6 +468930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443498,12 +468947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1687f1" }, { @@ -443531,6 +468981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443546,12 +468998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "399b4b" }, { @@ -443579,6 +469032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443594,12 +469049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46e63d" }, { @@ -443627,6 +469083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443642,12 +469100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a2976" }, { @@ -443675,6 +469134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443690,12 +469151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a7483" }, { @@ -443723,6 +469185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443738,12 +469202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b5134" }, { @@ -443771,6 +469236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443786,12 +469253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c9a30" }, { @@ -443819,6 +469287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443834,12 +469304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d4398" }, { @@ -443867,6 +469338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443882,12 +469355,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "980ca8" }, { @@ -443915,6 +469389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443930,12 +469406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9aa907" }, { @@ -443963,6 +469440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -443978,12 +469457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9be77d" }, { @@ -444011,6 +469491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444026,12 +469508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d2034" }, { @@ -444059,6 +469542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444074,12 +469559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fa3cf" }, { @@ -444107,6 +469593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444122,12 +469610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2ce24" }, { @@ -444155,6 +469644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444170,12 +469661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7f546" }, { @@ -444203,6 +469695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444218,12 +469712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d64789" }, { @@ -444251,6 +469746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444266,12 +469763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2bce" }, { @@ -444299,6 +469797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444314,12 +469814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb1fed" }, { @@ -444347,6 +469848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444362,12 +469865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec160e" }, { @@ -444395,6 +469899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444410,12 +469916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffb841" } ], @@ -444446,23 +469953,25 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "976c46" }, { "Name": "3DText", "Transform": { - "posX": -5.14208269, - "posY": 1.30320752, - "posZ": -69.05673, + "posX": -5.142056, + "posY": 1.30319977, + "posZ": -69.05689, "rotX": 90.0, "rotY": 90.1663742, "rotZ": 0.0, @@ -444482,6 +469991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444497,9 +470008,9 @@ }, "fontSize": 56 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e85ff9" }, { @@ -444509,7 +470020,7 @@ "posY": 1.45272863, "posZ": 70.5374, "rotX": 359.983215, - "rotY": 5.10146456E-05, + "rotY": 5.101466E-05, "rotZ": 0.0221881457, "scaleX": 0.09185542, "scaleY": 0.112467624, @@ -444527,15 +470038,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90b6d0" }, { @@ -444563,15 +470076,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6111ed" }, { @@ -444599,15 +470114,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23379e" }, { @@ -444635,15 +470152,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a83d14" }, { @@ -444671,15 +470190,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa73f3" }, { @@ -444707,15 +470228,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "beb9c1" }, { @@ -444743,22 +470266,24 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "784031" }, { "Name": "3DText", "Transform": { - "posX": 74.8960342, - "posY": 1.29386973, + "posX": 74.89614, + "posY": 1.29385459, "posZ": 61.1051445, "rotX": 90.0, "rotY": 90.52323, @@ -444779,6 +470304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444794,9 +470321,9 @@ }, "fontSize": 64 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b32e04" }, { @@ -444824,6 +470351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444852,9 +470381,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"006e1b\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3431,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"0849ee\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3471,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"0a5860\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3491,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"146974\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3469,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"1b8a6b\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3484,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9884,\"z\":0.0168}},\"212f28\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3548,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"235f45\":{\"lock\":false,\"pos\":{\"x\":19.2683,\"y\":1.3435,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":269.9951,\"z\":0.0168}},\"2e5546\":{\"lock\":false,\"pos\":{\"x\":10.5529,\"y\":1.3397,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.9868,\"z\":0.0168}},\"358f9c\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3458,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"360de8\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3498,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"43dfcf\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3536,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":269.9794,\"z\":0.0168}},\"468e26\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3518,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"4747e4\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3512,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":270.0204,\"z\":0.0168}},\"47b877\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3451,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9888,\"z\":0.0168}},\"56d98e\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.355,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9763,\"z\":0.0168}},\"598d2e\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3503,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":269.9758,\"z\":0.0168}},\"5f9f93\":{\"lock\":false,\"pos\":{\"x\":10.5688,\"y\":1.3417,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"65d8b5\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3568,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"66f2d9\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3496,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"686efe\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3476,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":269.9972,\"z\":0.0168}},\"69126c\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3555,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"69235b\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.341,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":270.0036,\"z\":0.0168}},\"6b7353\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3505,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"6f8362\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3505,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"77dee9\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3509,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"801dc6\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3464,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9884,\"z\":0.0168}},\"81d925\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3462,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"87192f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3511,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":269.9887,\"z\":0.0168}},\"8efa6a\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3482,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"8f538c\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3525,\"z\":92.4607},\"rot\":{\"x\":0.021,\"y\":269.4863,\"z\":0.0166}},\"943e1a\":{\"lock\":false,\"pos\":{\"x\":10.5709,\"y\":1.3424,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":270.0089,\"z\":0.0168}},\"9c658b\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3562,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"a66029\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3444,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"a75783\":{\"lock\":false,\"pos\":{\"x\":15.6184,\"y\":1.3543,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":269.9826,\"z\":0.0168}},\"ac2664\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3556,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":270.0037,\"z\":0.0168}},\"bba64c\":{\"lock\":false,\"pos\":{\"x\":19.284,\"y\":1.3449,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":269.9763,\"z\":0.0168}},\"bf8f60\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3543,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":269.9795,\"z\":0.0168}},\"c46055\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.353,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"d01513\":{\"lock\":false,\"pos\":{\"x\":19.2682,\"y\":1.3428,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":270.0087,\"z\":0.0168}},\"d28df6\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3478,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"d45541\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3575,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"d6ff6d\":{\"lock\":false,\"pos\":{\"x\":19.2842,\"y\":1.3442,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"d82c89\":{\"lock\":false,\"pos\":{\"x\":10.5531,\"y\":1.3404,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ddf171\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3489,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":269.9764,\"z\":0.0168}},\"e01349\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3541,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"e3aba4\":{\"lock\":false,\"pos\":{\"x\":19.2861,\"y\":1.3455,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":269.9794,\"z\":0.0168}},\"e91c94\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3516,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9764,\"z\":0.0168}},\"ec0c4c\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3437,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"f054f8\":{\"lock\":false,\"pos\":{\"x\":15.6184,\"y\":1.3536,\"z\":90.1528},\"rot\":{\"x\":0.0208,\"y\":270.0084,\"z\":0.0168}},\"f89d55\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3523,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":269.9758,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -444881,6 +470410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444909,9 +470440,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"006e1b\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3431,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"0849ee\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3471,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"0a5860\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3491,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"146974\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3469,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"1b8a6b\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3484,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9884,\"z\":0.0168}},\"212f28\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3548,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"235f45\":{\"lock\":false,\"pos\":{\"x\":19.2683,\"y\":1.3435,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":269.9951,\"z\":0.0168}},\"2e5546\":{\"lock\":false,\"pos\":{\"x\":10.5529,\"y\":1.3397,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.9868,\"z\":0.0168}},\"358f9c\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3458,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"360de8\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3498,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"43dfcf\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3536,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":269.9794,\"z\":0.0168}},\"468e26\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3518,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"4747e4\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3512,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":270.0204,\"z\":0.0168}},\"47b877\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3451,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9888,\"z\":0.0168}},\"56d98e\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.355,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9763,\"z\":0.0168}},\"598d2e\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3503,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":269.9758,\"z\":0.0168}},\"5f9f93\":{\"lock\":false,\"pos\":{\"x\":10.5688,\"y\":1.3417,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"65d8b5\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3568,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"66f2d9\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3496,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"686efe\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3476,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":269.9972,\"z\":0.0168}},\"69126c\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3555,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"69235b\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.341,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":270.0036,\"z\":0.0168}},\"6b7353\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3505,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"6f8362\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3505,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"77dee9\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3509,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"801dc6\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3464,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9884,\"z\":0.0168}},\"81d925\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3462,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"87192f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3511,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":269.9887,\"z\":0.0168}},\"8efa6a\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3482,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"8f538c\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3525,\"z\":92.4607},\"rot\":{\"x\":0.021,\"y\":269.4863,\"z\":0.0166}},\"943e1a\":{\"lock\":false,\"pos\":{\"x\":10.5709,\"y\":1.3424,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":270.0089,\"z\":0.0168}},\"9c658b\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3562,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"a66029\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3444,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"a75783\":{\"lock\":false,\"pos\":{\"x\":15.6184,\"y\":1.3543,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":269.9826,\"z\":0.0168}},\"ac2664\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3556,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":270.0037,\"z\":0.0168}},\"bba64c\":{\"lock\":false,\"pos\":{\"x\":19.284,\"y\":1.3449,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":269.9763,\"z\":0.0168}},\"bf8f60\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3543,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":269.9795,\"z\":0.0168}},\"c46055\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.353,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"d01513\":{\"lock\":false,\"pos\":{\"x\":19.2682,\"y\":1.3428,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":270.0087,\"z\":0.0168}},\"d28df6\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3478,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"d45541\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3575,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"d6ff6d\":{\"lock\":false,\"pos\":{\"x\":19.2842,\"y\":1.3442,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"d82c89\":{\"lock\":false,\"pos\":{\"x\":10.5531,\"y\":1.3404,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ddf171\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3489,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":269.9764,\"z\":0.0168}},\"e01349\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3541,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"e3aba4\":{\"lock\":false,\"pos\":{\"x\":19.2861,\"y\":1.3455,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":269.9794,\"z\":0.0168}},\"e91c94\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3516,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9764,\"z\":0.0168}},\"ec0c4c\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3437,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"f054f8\":{\"lock\":false,\"pos\":{\"x\":15.6184,\"y\":1.3536,\"z\":90.1528},\"rot\":{\"x\":0.0208,\"y\":270.0084,\"z\":0.0168}},\"f89d55\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3523,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":269.9758,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -444938,6 +470469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -444953,12 +470486,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d45541" }, { @@ -444986,6 +470520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445001,12 +470537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65d8b5" }, { @@ -445034,6 +470571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445049,12 +470588,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c658b" }, { @@ -445082,6 +470622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445097,12 +470639,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69126c" }, { @@ -445130,6 +470673,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445145,12 +470690,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "212f28" }, { @@ -445178,6 +470724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445193,12 +470741,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e01349" }, { @@ -445226,6 +470775,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445241,12 +470792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f89d55" }, { @@ -445274,6 +470826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445289,12 +470843,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c46055" }, { @@ -445322,6 +470877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445337,12 +470894,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43dfcf" }, { @@ -445370,6 +470928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445385,12 +470945,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56d98e" }, { @@ -445418,6 +470979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445433,12 +470996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf8f60" }, { @@ -445466,6 +471030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445481,12 +471047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac2664" }, { @@ -445514,6 +471081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445529,12 +471098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a75783" }, { @@ -445562,6 +471132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445577,12 +471149,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f054f8" }, { @@ -445610,6 +471183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445625,12 +471200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e91c94" }, { @@ -445658,6 +471234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445673,12 +471251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77dee9" }, { @@ -445706,6 +471285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445721,12 +471302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598d2e" }, { @@ -445754,6 +471336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445769,12 +471353,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66f2d9" }, { @@ -445802,6 +471387,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445817,12 +471404,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ddf171" }, { @@ -445850,6 +471438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445865,12 +471455,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8efa6a" }, { @@ -445898,6 +471489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445913,12 +471506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "686efe" }, { @@ -445946,6 +471540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -445961,12 +471557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "146974" }, { @@ -445994,6 +471591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446009,12 +471608,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81d925" }, { @@ -446042,6 +471642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446057,12 +471659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3aba4" }, { @@ -446090,6 +471693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446105,12 +471710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bba64c" }, { @@ -446138,6 +471744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446153,12 +471761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6ff6d" }, { @@ -446186,6 +471795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446201,12 +471812,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "235f45" }, { @@ -446234,6 +471846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446249,12 +471863,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d01513" }, { @@ -446282,6 +471897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446297,12 +471914,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e5546" }, { @@ -446330,6 +471948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446345,12 +471965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d82c89" }, { @@ -446378,6 +471999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446393,12 +472016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69235b" }, { @@ -446426,6 +472050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446441,12 +472067,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f9f93" }, { @@ -446474,6 +472101,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446489,12 +472118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "943e1a" }, { @@ -446522,6 +472152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446537,12 +472169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "006e1b" }, { @@ -446570,6 +472203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446585,12 +472220,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec0c4c" }, { @@ -446618,6 +472254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446633,12 +472271,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a66029" }, { @@ -446666,6 +472305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446681,12 +472322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47b877" }, { @@ -446714,6 +472356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446729,12 +472373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "358f9c" }, { @@ -446762,6 +472407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446777,12 +472424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "801dc6" }, { @@ -446810,6 +472458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446825,12 +472475,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0849ee" }, { @@ -446858,6 +472509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446873,12 +472526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d28df6" }, { @@ -446906,6 +472560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446921,12 +472577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b8a6b" }, { @@ -446954,6 +472611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -446969,12 +472628,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a5860" }, { @@ -447002,6 +472662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447017,12 +472679,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "360de8" }, { @@ -447050,6 +472713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447065,12 +472730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b7353" }, { @@ -447098,6 +472764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447113,12 +472781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87192f" }, { @@ -447146,6 +472815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447161,12 +472832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "468e26" }, { @@ -447194,6 +472866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447209,12 +472883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f538c" }, { @@ -447242,6 +472917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447257,12 +472934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4747e4" }, { @@ -447290,6 +472968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447305,12 +472985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f8362" } ], @@ -447341,6 +473022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447356,12 +473039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "006e1b" }, { @@ -447389,6 +473073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447404,12 +473090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0849ee" }, { @@ -447437,6 +473124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447452,12 +473141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a5860" }, { @@ -447485,6 +473175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447500,12 +473192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "146974" }, { @@ -447533,6 +473226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447548,12 +473243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b8a6b" }, { @@ -447581,6 +473277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447596,12 +473294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "212f28" }, { @@ -447629,6 +473328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447644,12 +473345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "235f45" }, { @@ -447677,6 +473379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447692,12 +473396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e5546" }, { @@ -447725,6 +473430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447740,12 +473447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "358f9c" }, { @@ -447773,6 +473481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447788,12 +473498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "360de8" }, { @@ -447821,6 +473532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447836,12 +473549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43dfcf" }, { @@ -447869,6 +473583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447884,12 +473600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "468e26" }, { @@ -447917,6 +473634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447932,12 +473651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4747e4" }, { @@ -447965,6 +473685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -447980,12 +473702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47b877" }, { @@ -448013,6 +473736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448028,12 +473753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56d98e" }, { @@ -448061,6 +473787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448076,12 +473804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598d2e" }, { @@ -448109,6 +473838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448124,12 +473855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f9f93" }, { @@ -448157,6 +473889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448172,12 +473906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65d8b5" }, { @@ -448205,6 +473940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448220,12 +473957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66f2d9" }, { @@ -448253,6 +473991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448268,12 +474008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "686efe" }, { @@ -448301,6 +474042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448316,12 +474059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69126c" }, { @@ -448349,6 +474093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448364,12 +474110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69235b" }, { @@ -448397,6 +474144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448412,12 +474161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b7353" }, { @@ -448445,6 +474195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448460,12 +474212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f8362" }, { @@ -448493,6 +474246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448508,12 +474263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77dee9" }, { @@ -448541,6 +474297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448556,12 +474314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "801dc6" }, { @@ -448589,6 +474348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448604,12 +474365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81d925" }, { @@ -448637,6 +474399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448652,12 +474416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87192f" }, { @@ -448685,6 +474450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448700,12 +474467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8efa6a" }, { @@ -448733,6 +474501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448748,12 +474518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f538c" }, { @@ -448781,6 +474552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448796,12 +474569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "943e1a" }, { @@ -448829,6 +474603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448844,12 +474620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c658b" }, { @@ -448877,6 +474654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448892,12 +474671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a66029" }, { @@ -448925,6 +474705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448940,12 +474722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a75783" }, { @@ -448973,6 +474756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -448988,12 +474773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac2664" }, { @@ -449021,6 +474807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449036,12 +474824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bba64c" }, { @@ -449069,6 +474858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449084,12 +474875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf8f60" }, { @@ -449117,6 +474909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449132,12 +474926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c46055" }, { @@ -449165,6 +474960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449180,12 +474977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d01513" }, { @@ -449213,6 +475011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449228,12 +475028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d28df6" }, { @@ -449261,6 +475062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449276,12 +475079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d45541" }, { @@ -449309,6 +475113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449324,12 +475130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6ff6d" }, { @@ -449357,6 +475164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449372,12 +475181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d82c89" }, { @@ -449405,6 +475215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449420,12 +475232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ddf171" }, { @@ -449453,6 +475266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449468,12 +475283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e01349" }, { @@ -449501,6 +475317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449516,12 +475334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3aba4" }, { @@ -449549,6 +475368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449564,12 +475385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e91c94" }, { @@ -449597,6 +475419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449612,12 +475436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec0c4c" }, { @@ -449645,6 +475470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449660,12 +475487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f054f8" }, { @@ -449693,6 +475521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449708,12 +475538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f89d55" } ], @@ -449744,6 +475575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449772,9 +475605,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0132b0\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3541,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":269.9968,\"z\":0.0168}},\"19efca\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3575,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9835,\"z\":0.0168}},\"1fb975\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3556,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":270.0168,\"z\":0.0168}},\"224529\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3562,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":270.0149,\"z\":0.0168}},\"4067cc\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3568,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9555,\"z\":0.0168}},\"4bf58b\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3528,\"z\":76.2904},\"rot\":{\"x\":0.0208,\"y\":269.9971,\"z\":0.0168}},\"5354b0\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3498,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9949,\"z\":0.0168}},\"59fb0f\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3548,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9974,\"z\":0.0168}},\"73f850\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3478,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9942,\"z\":0.0168}},\"8a29b1\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3535,\"z\":78.5904},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"z\":0.0168}},\"96d57a\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3525,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"ad54b5\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3518,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":270.0029,\"z\":0.0168}},\"b34d81\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3555,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9971,\"z\":0.0168}},\"b8d1c9\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3505,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"dde6bf\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3484,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"de4020\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.355,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9958,\"z\":0.0168}},\"dfa8f0\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3511,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":270.0086,\"z\":0.0168}},\"e1d2a7\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3471,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"ead177\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3491,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9942,\"z\":0.0168}},\"eb6ad7\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3521,\"z\":73.9904},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -449801,6 +475634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449816,12 +475651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19efca" }, { @@ -449849,6 +475685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449864,12 +475702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4067cc" }, { @@ -449897,6 +475736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449912,12 +475753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "224529" }, { @@ -449945,6 +475787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -449960,12 +475804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b34d81" }, { @@ -449993,6 +475838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450008,12 +475855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59fb0f" }, { @@ -450041,6 +475889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450056,12 +475906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0132b0" }, { @@ -450089,6 +475940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450104,12 +475957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a29b1" }, { @@ -450137,6 +475991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450152,12 +476008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bf58b" }, { @@ -450185,6 +476042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450200,12 +476059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb6ad7" }, { @@ -450233,6 +476093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450248,12 +476110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de4020" }, { @@ -450281,6 +476144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450296,12 +476161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fb975" }, { @@ -450329,6 +476195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450344,12 +476212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96d57a" }, { @@ -450377,6 +476246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450392,12 +476263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad54b5" }, { @@ -450425,6 +476297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450440,12 +476314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfa8f0" }, { @@ -450473,6 +476348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450488,12 +476365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8d1c9" }, { @@ -450521,6 +476399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450536,12 +476416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5354b0" }, { @@ -450569,6 +476450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450584,12 +476467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ead177" }, { @@ -450617,6 +476501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450632,12 +476518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dde6bf" }, { @@ -450665,6 +476552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450680,12 +476569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73f850" }, { @@ -450713,6 +476603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450728,12 +476620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1d2a7" }, { @@ -450761,6 +476654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450789,9 +476684,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0132b0\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3541,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":269.9968,\"z\":0.0168}},\"19efca\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3575,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9835,\"z\":0.0168}},\"1fb975\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3556,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":270.0168,\"z\":0.0168}},\"224529\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3562,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":270.0149,\"z\":0.0168}},\"4067cc\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3568,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9555,\"z\":0.0168}},\"4bf58b\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3528,\"z\":76.2904},\"rot\":{\"x\":0.0208,\"y\":269.9971,\"z\":0.0168}},\"5354b0\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3498,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9949,\"z\":0.0168}},\"59fb0f\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3548,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9974,\"z\":0.0168}},\"73f850\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3478,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9942,\"z\":0.0168}},\"8a29b1\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3535,\"z\":78.5904},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"z\":0.0168}},\"96d57a\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3525,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"ad54b5\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3518,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":270.0029,\"z\":0.0168}},\"b34d81\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3555,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9971,\"z\":0.0168}},\"b8d1c9\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3505,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"dde6bf\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3484,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"de4020\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.355,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9958,\"z\":0.0168}},\"dfa8f0\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3511,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":270.0086,\"z\":0.0168}},\"e1d2a7\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3471,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9941,\"z\":0.0168}},\"ead177\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3491,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9942,\"z\":0.0168}},\"eb6ad7\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3521,\"z\":73.9904},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -450818,6 +476713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450833,12 +476730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19efca" }, { @@ -450866,6 +476764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450881,12 +476781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4067cc" }, { @@ -450914,6 +476815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450929,12 +476832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "224529" }, { @@ -450962,6 +476866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -450977,12 +476883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b34d81" }, { @@ -451010,6 +476917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451025,12 +476934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59fb0f" }, { @@ -451058,6 +476968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451073,12 +476985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0132b0" }, { @@ -451106,6 +477019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451121,12 +477036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a29b1" }, { @@ -451154,6 +477070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451169,12 +477087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bf58b" }, { @@ -451202,6 +477121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451217,12 +477138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb6ad7" }, { @@ -451250,6 +477172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451265,12 +477189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de4020" }, { @@ -451298,6 +477223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451313,12 +477240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fb975" }, { @@ -451346,6 +477274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451361,12 +477291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96d57a" }, { @@ -451394,6 +477325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451409,12 +477342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad54b5" }, { @@ -451442,6 +477376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451457,12 +477393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfa8f0" }, { @@ -451490,6 +477427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451505,12 +477444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8d1c9" }, { @@ -451538,6 +477478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451553,12 +477495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5354b0" }, { @@ -451586,6 +477529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451601,12 +477546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ead177" }, { @@ -451634,6 +477580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451649,12 +477597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dde6bf" }, { @@ -451682,6 +477631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451697,12 +477648,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73f850" }, { @@ -451730,6 +477682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451745,12 +477699,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1d2a7" } ], @@ -451784,6 +477739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451812,9 +477769,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"04484f\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3619,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"099c3e\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3666,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":269.9825,\"z\":0.0168}},\"0cc3e7\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3599,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":269.9973,\"z\":0.0168}},\"1176e7\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3639,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9764,\"z\":0.0168}},\"169764\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3698,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"189f99\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3633,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.9766,\"z\":0.0168}},\"2323de\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3653,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"285e63\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3574,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9888,\"z\":0.0168}},\"34408e\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3628,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"3a5caa\":{\"lock\":false,\"pos\":{\"x\":44.4974,\"y\":1.352,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.9867,\"z\":0.0168}},\"3b03f4\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3621,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"3e205b\":{\"lock\":false,\"pos\":{\"x\":44.5134,\"y\":1.3534,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":270.0037,\"z\":0.0168}},\"40ef49\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3565,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"43bfac\":{\"lock\":false,\"pos\":{\"x\":53.2028,\"y\":1.3626,\"z\":74.0422},\"rot\":{\"x\":0.0208,\"y\":269.9757,\"z\":0.0168}},\"49d857\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3646,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":269.9759,\"z\":0.0168}},\"5691d3\":{\"lock\":false,\"pos\":{\"x\":53.2128,\"y\":1.3559,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":269.9951,\"z\":0.0168}},\"642a2a\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3678,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"6aced5\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3561,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"6f9dbd\":{\"lock\":false,\"pos\":{\"x\":53.2285,\"y\":1.3572,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":269.9763,\"z\":0.0168}},\"754586\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3585,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"7cd9a9\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3692,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"7d5924\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3635,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"7f446d\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3665,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"823ad4\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3666,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":269.9795,\"z\":0.0168}},\"87875a\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.366,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":269.9794,\"z\":0.0168}},\"88c1c4\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3608,\"z\":78.6608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"89d744\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3614,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"8e63bb\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3601,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"90bf93\":{\"lock\":false,\"pos\":{\"x\":44.5153,\"y\":1.3547,\"z\":57.9605},\"rot\":{\"x\":0.0208,\"y\":270.0089,\"z\":0.0168}},\"94b923\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.366,\"z\":90.1528},\"rot\":{\"x\":0.0208,\"y\":270.0084,\"z\":0.0168}},\"9a1801\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3581,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"9ae60c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3594,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"9b9cda\":{\"lock\":false,\"pos\":{\"x\":53.2126,\"y\":1.3552,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":270.0087,\"z\":0.0168}},\"9ce3a6\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3641,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"a17f94\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3685,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"ad4592\":{\"lock\":false,\"pos\":{\"x\":44.5132,\"y\":1.354,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"b14c52\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3628,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"b177dd\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3612,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":269.9764,\"z\":0.0168}},\"c937fb\":{\"lock\":false,\"pos\":{\"x\":53.2306,\"y\":1.3579,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":269.9795,\"z\":0.0168}},\"cad434\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3606,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"cfd4bd\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3567,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"d14982\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3592,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":269.9766,\"z\":0.0168}},\"d36630\":{\"lock\":false,\"pos\":{\"x\":44.4684,\"y\":1.3648,\"z\":92.4579},\"rot\":{\"x\":0.021,\"y\":269.4863,\"z\":0.0166}},\"d3dcf1\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.368,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":270.0037,\"z\":0.0168}},\"d83fdf\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3588,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"e4b538\":{\"lock\":false,\"pos\":{\"x\":44.4975,\"y\":1.3527,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f0e28c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3554,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":269.9884,\"z\":0.0168}},\"f34341\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3673,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9763,\"z\":0.0168}},\"f6361c\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3635,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":270.0204,\"z\":0.0168}},\"f8f561\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3671,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -451841,6 +477798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451856,12 +477815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f446d" }, { @@ -451889,6 +477849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451904,12 +477866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8f561" }, { @@ -451937,6 +477900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -451952,12 +477917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "642a2a" }, { @@ -451985,6 +477951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452000,12 +477968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a17f94" }, { @@ -452033,6 +478002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452048,12 +478019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cd9a9" }, { @@ -452081,6 +478053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452096,12 +478070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "169764" }, { @@ -452129,6 +478104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452144,12 +478121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3dcf1" }, { @@ -452177,6 +478155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452192,12 +478172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f34341" }, { @@ -452225,6 +478206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452240,12 +478223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "823ad4" }, { @@ -452273,6 +478257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452288,12 +478274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87875a" }, { @@ -452321,6 +478308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452336,12 +478325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2323de" }, { @@ -452369,6 +478359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452384,12 +478376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49d857" }, { @@ -452417,6 +478410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452432,12 +478427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "189f99" }, { @@ -452465,6 +478461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452480,12 +478478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1176e7" }, { @@ -452513,6 +478512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452528,12 +478529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43bfac" }, { @@ -452561,6 +478563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452576,12 +478580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b177dd" }, { @@ -452609,6 +478614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452624,12 +478631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04484f" }, { @@ -452657,6 +478665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452672,12 +478682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cad434" }, { @@ -452705,6 +478716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452720,12 +478733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cc3e7" }, { @@ -452753,6 +478767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452768,12 +478784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d14982" }, { @@ -452801,6 +478818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452816,12 +478835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "754586" }, { @@ -452849,6 +478869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452864,12 +478886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c937fb" }, { @@ -452897,6 +478920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452912,12 +478937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f9dbd" }, { @@ -452945,6 +478971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -452960,12 +478988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40ef49" }, { @@ -452993,6 +479022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453008,12 +479039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5691d3" }, { @@ -453041,6 +479073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453056,12 +479090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b9cda" }, { @@ -453089,6 +479124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453104,12 +479141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "94b923" }, { @@ -453137,6 +479175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453152,12 +479192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "099c3e" }, { @@ -453185,6 +479226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453200,12 +479243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36630" }, { @@ -453233,6 +479277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453248,12 +479294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6361c" }, { @@ -453281,6 +479328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453296,12 +479345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34408e" }, { @@ -453329,6 +479379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453344,12 +479396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ce3a6" }, { @@ -453377,6 +479430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453392,12 +479447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d5924" }, { @@ -453425,6 +479481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453440,12 +479498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b14c52" }, { @@ -453473,6 +479532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453488,12 +479549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b03f4" }, { @@ -453521,6 +479583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453536,12 +479600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89d744" }, { @@ -453569,6 +479634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453584,12 +479651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88c1c4" }, { @@ -453617,6 +479685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453632,12 +479702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e63bb" }, { @@ -453665,6 +479736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453680,12 +479753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ae60c" }, { @@ -453713,6 +479787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453728,12 +479804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d83fdf" }, { @@ -453761,6 +479838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453776,12 +479855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a1801" }, { @@ -453809,6 +479889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453824,12 +479906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "285e63" }, { @@ -453857,6 +479940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453872,12 +479957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfd4bd" }, { @@ -453905,6 +479991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453920,12 +480008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6aced5" }, { @@ -453953,6 +480042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -453968,12 +480059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0e28c" }, { @@ -454001,6 +480093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454016,12 +480110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90bf93" }, { @@ -454049,6 +480144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454064,12 +480161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad4592" }, { @@ -454097,6 +480195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454112,12 +480212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e205b" }, { @@ -454145,6 +480246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454160,12 +480263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4b538" }, { @@ -454193,6 +480297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454208,12 +480314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a5caa" }, { @@ -454241,6 +480348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454269,9 +480378,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"04484f\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3619,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"099c3e\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3666,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":269.9825,\"z\":0.0168}},\"0cc3e7\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3599,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":269.9973,\"z\":0.0168}},\"1176e7\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3639,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9764,\"z\":0.0168}},\"169764\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3698,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"189f99\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3633,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.9766,\"z\":0.0168}},\"2323de\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3653,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"285e63\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3574,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9888,\"z\":0.0168}},\"34408e\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3628,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"3a5caa\":{\"lock\":false,\"pos\":{\"x\":44.4974,\"y\":1.352,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.9867,\"z\":0.0168}},\"3b03f4\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3621,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"3e205b\":{\"lock\":false,\"pos\":{\"x\":44.5134,\"y\":1.3534,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":270.0037,\"z\":0.0168}},\"40ef49\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3565,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"43bfac\":{\"lock\":false,\"pos\":{\"x\":53.2028,\"y\":1.3626,\"z\":74.0422},\"rot\":{\"x\":0.0208,\"y\":269.9757,\"z\":0.0168}},\"49d857\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3646,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":269.9759,\"z\":0.0168}},\"5691d3\":{\"lock\":false,\"pos\":{\"x\":53.2128,\"y\":1.3559,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":269.9951,\"z\":0.0168}},\"642a2a\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3678,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"6aced5\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3561,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"6f9dbd\":{\"lock\":false,\"pos\":{\"x\":53.2285,\"y\":1.3572,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":269.9763,\"z\":0.0168}},\"754586\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3585,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"7cd9a9\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3692,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"7d5924\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3635,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"7f446d\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3665,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"823ad4\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3666,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":269.9795,\"z\":0.0168}},\"87875a\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.366,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":269.9794,\"z\":0.0168}},\"88c1c4\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3608,\"z\":78.6608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"89d744\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3614,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"8e63bb\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3601,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"90bf93\":{\"lock\":false,\"pos\":{\"x\":44.5153,\"y\":1.3547,\"z\":57.9605},\"rot\":{\"x\":0.0208,\"y\":270.0089,\"z\":0.0168}},\"94b923\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.366,\"z\":90.1528},\"rot\":{\"x\":0.0208,\"y\":270.0084,\"z\":0.0168}},\"9a1801\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3581,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"9ae60c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3594,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"9b9cda\":{\"lock\":false,\"pos\":{\"x\":53.2126,\"y\":1.3552,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":270.0087,\"z\":0.0168}},\"9ce3a6\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3641,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9886,\"z\":0.0168}},\"a17f94\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3685,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"ad4592\":{\"lock\":false,\"pos\":{\"x\":44.5132,\"y\":1.354,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"b14c52\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3628,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"b177dd\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3612,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":269.9764,\"z\":0.0168}},\"c937fb\":{\"lock\":false,\"pos\":{\"x\":53.2306,\"y\":1.3579,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":269.9795,\"z\":0.0168}},\"cad434\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3606,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":269.9765,\"z\":0.0168}},\"cfd4bd\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3567,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"d14982\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3592,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":269.9766,\"z\":0.0168}},\"d36630\":{\"lock\":false,\"pos\":{\"x\":44.4684,\"y\":1.3648,\"z\":92.4579},\"rot\":{\"x\":0.021,\"y\":269.4863,\"z\":0.0166}},\"d3dcf1\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.368,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":270.0037,\"z\":0.0168}},\"d83fdf\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3588,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9885,\"z\":0.0168}},\"e4b538\":{\"lock\":false,\"pos\":{\"x\":44.4975,\"y\":1.3527,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f0e28c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3554,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":269.9884,\"z\":0.0168}},\"f34341\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3673,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9763,\"z\":0.0168}},\"f6361c\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3635,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":270.0204,\"z\":0.0168}},\"f8f561\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3671,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -454298,6 +480407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454313,12 +480424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f446d" }, { @@ -454346,6 +480458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454361,12 +480475,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8f561" }, { @@ -454394,6 +480509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454409,12 +480526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "642a2a" }, { @@ -454442,6 +480560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454457,12 +480577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a17f94" }, { @@ -454490,6 +480611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454505,12 +480628,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cd9a9" }, { @@ -454538,6 +480662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454553,12 +480679,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "169764" }, { @@ -454586,6 +480713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454601,12 +480730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3dcf1" }, { @@ -454634,6 +480764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454649,12 +480781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f34341" }, { @@ -454682,6 +480815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454697,12 +480832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "823ad4" }, { @@ -454730,6 +480866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454745,12 +480883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87875a" }, { @@ -454778,6 +480917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454793,12 +480934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2323de" }, { @@ -454826,6 +480968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454841,12 +480985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49d857" }, { @@ -454874,6 +481019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454889,12 +481036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "189f99" }, { @@ -454922,6 +481070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454937,12 +481087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1176e7" }, { @@ -454970,6 +481121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -454985,12 +481138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43bfac" }, { @@ -455018,6 +481172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455033,12 +481189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b177dd" }, { @@ -455066,6 +481223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455081,12 +481240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04484f" }, { @@ -455114,6 +481274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455129,12 +481291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cad434" }, { @@ -455162,6 +481325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455177,12 +481342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cc3e7" }, { @@ -455210,6 +481376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455225,12 +481393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d14982" }, { @@ -455258,6 +481427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455273,12 +481444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "754586" }, { @@ -455306,6 +481478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455321,12 +481495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c937fb" }, { @@ -455354,6 +481529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455369,12 +481546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f9dbd" }, { @@ -455402,6 +481580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455417,12 +481597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40ef49" }, { @@ -455450,6 +481631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455465,12 +481648,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5691d3" }, { @@ -455498,6 +481682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455513,12 +481699,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b9cda" }, { @@ -455546,6 +481733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455561,12 +481750,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "94b923" }, { @@ -455594,6 +481784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455609,12 +481801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "099c3e" }, { @@ -455642,6 +481835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455657,12 +481852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36630" }, { @@ -455690,6 +481886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455705,12 +481903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6361c" }, { @@ -455738,6 +481937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455753,12 +481954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34408e" }, { @@ -455786,6 +481988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455801,12 +482005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ce3a6" }, { @@ -455834,6 +482039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455849,12 +482056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d5924" }, { @@ -455882,6 +482090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455897,12 +482107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b14c52" }, { @@ -455930,6 +482141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455945,12 +482158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b03f4" }, { @@ -455978,6 +482192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -455993,12 +482209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89d744" }, { @@ -456026,6 +482243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456041,12 +482260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88c1c4" }, { @@ -456074,6 +482294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456089,12 +482311,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e63bb" }, { @@ -456122,6 +482345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456137,12 +482362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ae60c" }, { @@ -456170,6 +482396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456185,12 +482413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d83fdf" }, { @@ -456218,6 +482447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456233,12 +482464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a1801" }, { @@ -456266,6 +482498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456281,12 +482515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "285e63" }, { @@ -456314,6 +482549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456329,12 +482566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfd4bd" }, { @@ -456362,6 +482600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456377,12 +482617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6aced5" }, { @@ -456410,6 +482651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456425,12 +482668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0e28c" }, { @@ -456458,6 +482702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456473,12 +482719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90bf93" }, { @@ -456506,6 +482753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456521,12 +482770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad4592" }, { @@ -456554,6 +482804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456569,12 +482821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e205b" }, { @@ -456602,6 +482855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456617,12 +482872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4b538" }, { @@ -456650,6 +482906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456665,12 +482923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a5caa" } ], @@ -456682,12 +482941,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 63.02929, - "posY": 1.76845551, - "posZ": 14.5004349, + "posX": 63.0293236, + "posY": 1.76845562, + "posZ": 14.50044, "rotX": 359.9201, - "rotY": 269.996, - "rotZ": 0.0168782361, + "rotY": 269.99588, + "rotZ": 0.0168789532, "scaleX": 2.00002885, "scaleY": 0.10587021, "scaleZ": 1.69295752 @@ -456704,6 +482963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456732,9 +482993,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,5,-2}, rotation={0,0,0}, height=250, width=600,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={1.5,5,2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-1.2,5,2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-3.5,5,2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.7,1,-2}, rotation={0,0,0}, height=280, width=600,\r\n font_size=200, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.7,1,-2}, rotation={0,0,0}, height=280, width=650,\r\n font_size=200, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-6,1,0}, rotation={0,90,0}, height=500, width=1200,\r\n-- font_size=350, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"1536e7\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4633,\"z\":-3.9199},\"rot\":{\"x\":359.9201,\"y\":269.9974,\"z\":0.0169}},\"175a29\":{\"lock\":false,\"pos\":{\"x\":12.2504,\"y\":1.4582,\"z\":-21.3053},\"rot\":{\"x\":359.9201,\"y\":270.0169,\"z\":0.0168}},\"1fca6b\":{\"lock\":false,\"pos\":{\"x\":12.2504,\"y\":1.4557,\"z\":-30.0549},\"rot\":{\"x\":359.9201,\"y\":270.0251,\"z\":0.0168}},\"87897a\":{\"lock\":false,\"pos\":{\"x\":12.2505,\"y\":1.4684,\"z\":13.4375},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"a82dde\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4607,\"z\":-12.6661},\"rot\":{\"x\":359.9201,\"y\":270.0075,\"z\":0.0169}},\"b713e7\":{\"lock\":false,\"pos\":{\"x\":-1.3494,\"y\":1.4754,\"z\":-27.0534},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":0.0169}},\"d33f7e\":{\"lock\":false,\"pos\":{\"x\":12.2521,\"y\":1.4735,\"z\":30.8264},\"rot\":{\"x\":359.9201,\"y\":270.0044,\"z\":0.0169}},\"d92b86\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4658,\"z\":4.6877},\"rot\":{\"x\":359.9201,\"y\":270.0032,\"z\":0.0169}},\"f52082\":{\"lock\":false,\"pos\":{\"x\":12.2509,\"y\":1.4709,\"z\":22.0768},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -456761,6 +483022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456789,9 +483052,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0504b5\":{\"lock\":false,\"pos\":{\"x\":-5.7307,\"y\":1.674,\"z\":15.7703},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"073668\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6623,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"15247d\":{\"lock\":false,\"pos\":{\"x\":-26.9643,\"y\":1.6179,\"z\":-3.9854},\"rot\":{\"x\":0.0684,\"y\":135.0062,\"z\":0.0446}},\"2ca219\":{\"lock\":false,\"pos\":{\"x\":-19.9089,\"y\":1.6093,\"z\":0.0965},\"rot\":{\"x\":0.0799,\"y\":89.9993,\"z\":359.9831}},\"39a81b\":{\"lock\":false,\"pos\":{\"x\":-26.8188,\"y\":1.6189,\"z\":0.059},\"rot\":{\"x\":0.0799,\"y\":89.9993,\"z\":359.9831}},\"55cac8\":{\"lock\":false,\"pos\":{\"x\":-12.8368,\"y\":1.4166,\"z\":7.5622},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.92}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9198,\"y\":269.9996,\"z\":0.0165}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180.0039,\"z\":0.0799}},\"733391\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"7b8844\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3732},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"82f7d9\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7664,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"8711dd\":{\"lock\":false,\"pos\":{\"x\":-26.7835,\"y\":1.6211,\"z\":7.6217},\"rot\":{\"x\":0.0799,\"y\":89.9993,\"z\":359.9831}},\"92b54a\":{\"lock\":false,\"pos\":{\"x\":-3.8724,\"y\":1.5825,\"z\":-14.8303},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"a4f179\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180.0039,\"z\":0.0799}},\"aa50e4\":{\"lock\":false,\"pos\":{\"x\":-5.4234,\"y\":1.7059,\"z\":-10.4403},\"rot\":{\"x\":0.0613,\"y\":270.011,\"z\":359.9259}},\"abd306\":{\"lock\":false,\"pos\":{\"x\":-20.3284,\"y\":1.6121,\"z\":7.5836},\"rot\":{\"x\":0.0799,\"y\":89.9993,\"z\":359.9831}},\"d9037e\":{\"lock\":false,\"pos\":{\"x\":-2.2288,\"y\":1.6721,\"z\":15.7687},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":180.0168}},\"dfc54c\":{\"lock\":false,\"pos\":{\"x\":-20.0811,\"y\":1.6084,\"z\":-3.7421},\"rot\":{\"x\":359.9554,\"y\":224.9924,\"z\":0.0684}},\"ef6d1e\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"ff2560\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180.0039,\"z\":0.0799}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -456818,6 +483081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456840,12 +483105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -456872,6 +483138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456887,12 +483155,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb489f" }, { @@ -456920,6 +483189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456935,12 +483206,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5da81c" }, { @@ -456968,6 +483240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -456983,12 +483257,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b2e99" }, { @@ -457016,6 +483291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457031,12 +483308,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5bca1" }, { @@ -457064,6 +483342,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457079,12 +483359,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -457112,6 +483393,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457127,12 +483410,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -457163,6 +483447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457184,12 +483470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -457216,6 +483503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457231,12 +483520,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6714b2" }, { @@ -457264,6 +483554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457279,12 +483571,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f14dce" }, { @@ -457312,6 +483605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457327,12 +483622,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f03306" }, { @@ -457360,6 +483656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457375,12 +483673,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42806b" }, { @@ -457408,6 +483707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457423,12 +483724,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66197b" } ], @@ -457459,6 +483761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457504,7 +483808,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -457512,7 +483817,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -457520,12 +483826,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -457552,6 +483859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457567,12 +483876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -457600,6 +483910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457615,12 +483927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6d9b2" }, { @@ -457648,6 +483961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457663,12 +483978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -457696,6 +484012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457711,12 +484029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36342a" }, { @@ -457744,6 +484063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457759,12 +484080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebb8db" }, { @@ -457792,6 +484114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457807,12 +484131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -457840,6 +484165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457855,12 +484182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -457888,6 +484216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457903,12 +484233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "830622" }, { @@ -457936,6 +484267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457951,12 +484284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c9b2a" }, { @@ -457984,6 +484318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -457999,12 +484335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "830622" }, { @@ -458032,6 +484369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458047,12 +484386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfd751" }, { @@ -458080,6 +484420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458095,12 +484437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26556a" }, { @@ -458128,6 +484471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458143,12 +484488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfd751" }, { @@ -458176,6 +484522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458191,12 +484539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e0f1" }, { @@ -458224,6 +484573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458239,12 +484590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b8170" }, { @@ -458272,6 +484624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458287,12 +484641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -458320,6 +484675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458335,12 +484692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e13f3" }, { @@ -458368,6 +484726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458383,12 +484743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -458416,6 +484777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458431,12 +484794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95f4d1" }, { @@ -458464,6 +484828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458479,12 +484845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -458512,6 +484879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458527,12 +484896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60ef9e" }, { @@ -458560,6 +484930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458575,12 +484947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40e9d0" }, { @@ -458608,6 +484981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458623,12 +484998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -458656,6 +485032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458671,12 +485049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61c583" }, { @@ -458704,6 +485083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458719,12 +485100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -458752,6 +485134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458767,12 +485151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e04da" }, { @@ -458800,6 +485185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458815,12 +485202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d0c1c" }, { @@ -458848,6 +485236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458863,12 +485253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -458896,6 +485287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458911,12 +485304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b75b70" } ], @@ -458947,6 +485341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -458966,12 +485362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -458998,6 +485395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459013,12 +485412,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6286f9" }, { @@ -459046,6 +485446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459061,12 +485463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f5a49" }, { @@ -459094,6 +485497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459109,12 +485514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abf877" } ], @@ -459145,6 +485551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459163,12 +485571,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -459195,6 +485604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459210,12 +485621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "960a29" }, { @@ -459243,6 +485655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459258,12 +485672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -459294,6 +485709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459309,12 +485726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -459342,6 +485760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459357,12 +485777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -459390,6 +485811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459408,9 +485831,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Blood on the Altar'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "92b54a" }, { @@ -459438,6 +485861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459456,9 +485881,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -459485,6 +485910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459500,12 +485927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f96ed0" }, { @@ -459533,6 +485961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459548,12 +485978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49f43a" }, { @@ -459581,6 +486012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459596,12 +486029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb0272" }, { @@ -459629,6 +486063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459644,12 +486080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -459677,6 +486114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459695,12 +486134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -459727,6 +486167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459742,12 +486184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f80a44" }, { @@ -459775,6 +486218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459790,12 +486235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f2757" } ], @@ -459842,6 +486288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459860,9 +486308,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff2560", "States": { "2": { @@ -459890,6 +486338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459908,9 +486358,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -459938,6 +486388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -459956,9 +486408,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -459988,6 +486440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460006,9 +486460,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abd306", "States": { "2": { @@ -460036,6 +486490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460054,9 +486510,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -460084,6 +486540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460102,9 +486560,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -460134,6 +486592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460152,9 +486612,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -460182,6 +486642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460200,9 +486662,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -460230,6 +486692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460248,9 +486712,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -460280,6 +486744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460298,9 +486764,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ca219", "States": { "2": { @@ -460328,6 +486794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460346,9 +486814,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -460376,6 +486844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460394,9 +486864,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -460426,6 +486896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460444,9 +486916,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfc54c", "States": { "2": { @@ -460474,6 +486946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460492,9 +486966,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -460522,6 +486996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460540,9 +487016,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -460572,6 +487048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460587,12 +487065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "733391" }, { @@ -460620,6 +487099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460638,9 +487119,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "39a81b", "States": { "2": { @@ -460668,6 +487149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460686,9 +487169,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -460716,6 +487199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460734,9 +487219,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -460766,6 +487251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460784,9 +487271,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15247d", "States": { "3": { @@ -460814,6 +487301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460832,9 +487321,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "2": { @@ -460862,6 +487351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460880,9 +487371,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" } } @@ -460912,6 +487403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460920,9 +487413,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -460949,6 +487442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -460968,7 +487463,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -460976,12 +487472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -461008,6 +487505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461023,12 +487522,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0f3d" }, { @@ -461056,6 +487556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461071,12 +487573,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce3bcc" }, { @@ -461104,6 +487607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461119,12 +487624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f24e67" } ], @@ -461155,6 +487661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461174,7 +487682,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -461182,12 +487691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -461214,6 +487724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461229,12 +487741,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a909a" }, { @@ -461262,6 +487775,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461277,12 +487792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159555" }, { @@ -461310,6 +487826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461325,12 +487843,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2abe4e" } ], @@ -461361,6 +487880,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461380,7 +487901,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -461388,12 +487910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -461420,6 +487943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461435,12 +487960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "084254" }, { @@ -461468,6 +487994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461483,12 +488011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8579aa" }, { @@ -461516,6 +488045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461531,12 +488062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "018fc4" } ], @@ -461567,6 +488099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461586,7 +488120,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -461594,12 +488129,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -461626,6 +488162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461641,12 +488179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c4849" }, { @@ -461674,6 +488213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461689,12 +488230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "943aea" }, { @@ -461722,6 +488264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461737,12 +488281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01ce7b" } ], @@ -461773,6 +488318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461792,7 +488339,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -461800,12 +488348,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -461832,6 +488381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461847,12 +488398,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19ce2b" }, { @@ -461880,6 +488432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461895,12 +488449,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2559b7" }, { @@ -461928,6 +488483,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461943,12 +488500,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac7ca2" } ], @@ -461979,6 +488537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -461998,7 +488558,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -462006,12 +488567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -462038,6 +488600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462053,12 +488617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f3193" }, { @@ -462086,6 +488651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462101,12 +488668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "333962" }, { @@ -462134,6 +488702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462149,12 +488719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15cd93" } ], @@ -462188,6 +488759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462206,9 +488779,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4f179", "States": { "2": { @@ -462236,6 +488809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462254,9 +488829,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -462284,6 +488859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462302,9 +488879,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -462334,6 +488911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462352,9 +488931,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8711dd", "States": { "2": { @@ -462382,6 +488961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462400,9 +488981,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -462430,6 +489011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462448,9 +489031,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -462503,6 +489086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462531,9 +489116,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0f29d2\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6873,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"1be9d7\":{\"lock\":false,\"pos\":{\"x\":-5.7503,\"y\":1.4997,\"z\":-14.6691},\"rot\":{\"x\":359.9689,\"y\":0.0049,\"z\":359.9749}},\"1d3069\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.8463,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"27d0df\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.664,\"z\":0.3732},\"rot\":{\"x\":0.0168,\"y\":179.9991,\"z\":0.0803}},\"64e623\":{\"lock\":false,\"pos\":{\"x\":-5.6754,\"y\":1.7906,\"z\":-10.4487},\"rot\":{\"x\":4.7978,\"y\":269.9975,\"z\":0.0126}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-27.505,\"y\":1.6199,\"z\":-0.0138},\"rot\":{\"x\":359.9201,\"y\":269.9939,\"z\":0.0169}},\"768494\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6965,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"9c4595\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9981,\"z\":0.0687}},\"a621ae\":{\"lock\":false,\"pos\":{\"x\":-3.7028,\"y\":1.5825,\"z\":-14.5775},\"rot\":{\"x\":359.9212,\"y\":270.0076,\"z\":0.0204}},\"aa50e4\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6557,\"z\":-10.4402},\"rot\":{\"x\":359.9203,\"y\":269.9988,\"z\":0.0179}},\"b1bd40\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"b47b11\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6543,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"b858d0\":{\"lock\":false,\"pos\":{\"x\":-3.7559,\"y\":1.6624,\"z\":15.0672},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"caeb2f\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"d5b919\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"f2a05a\":{\"lock\":false,\"pos\":{\"x\":-20.1527,\"y\":1.6096,\"z\":-0.1231},\"rot\":{\"x\":359.9201,\"y\":269.9825,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -462560,6 +489145,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462578,9 +489165,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -462607,6 +489194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462622,12 +489211,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -462655,6 +489245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462670,12 +489262,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f7ecc" } ], @@ -462719,6 +489312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462779,7 +489374,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -462787,12 +489383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -462819,6 +489416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462834,12 +489433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -462867,6 +489467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462882,12 +489484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6d9b2" }, { @@ -462915,6 +489518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462930,12 +489535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -462963,6 +489569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -462978,12 +489586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dd094" }, { @@ -463011,6 +489620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463026,12 +489637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f855c" }, { @@ -463059,6 +489671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463074,12 +489688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dd094" }, { @@ -463107,6 +489722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463122,12 +489739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -463155,6 +489773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463170,12 +489790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac1417" }, { @@ -463203,6 +489824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463218,12 +489841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8596b" }, { @@ -463251,6 +489875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463266,12 +489892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27658e" }, { @@ -463299,6 +489926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463314,12 +489943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e8e0b" }, { @@ -463347,6 +489977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463362,12 +489994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8e5f7" }, { @@ -463395,6 +490028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463410,12 +490045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -463443,6 +490079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463458,12 +490096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fa82b" }, { @@ -463491,6 +490130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463506,12 +490147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef7cab" }, { @@ -463539,6 +490181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463554,12 +490198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "651a9e" }, { @@ -463587,6 +490232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463602,12 +490249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c53c4a" }, { @@ -463635,6 +490283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463650,12 +490300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "077019" }, { @@ -463683,6 +490334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463698,12 +490351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -463731,6 +490385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463746,12 +490402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e80a5" }, { @@ -463779,6 +490436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463794,12 +490453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -463827,6 +490487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463842,12 +490504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb0b3" }, { @@ -463875,6 +490538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463890,12 +490555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -463923,6 +490589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463938,12 +490606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -463971,6 +490640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -463986,12 +490657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42d459" }, { @@ -464019,6 +490691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464034,12 +490708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -464067,6 +490742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464082,12 +490759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3e2e4" }, { @@ -464115,6 +490793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464130,12 +490810,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b6ae2" }, { @@ -464163,6 +490844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464178,12 +490861,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3e2e4" }, { @@ -464211,6 +490895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464226,12 +490912,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -464259,6 +490946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464274,12 +490963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "52824c" }, { @@ -464307,6 +490997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464322,12 +491014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -464355,6 +491048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464370,12 +491065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -464403,6 +491099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464418,12 +491116,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ec8cc" }, { @@ -464451,6 +491150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464466,12 +491167,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -464499,6 +491201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464514,12 +491218,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -464547,6 +491252,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464562,12 +491269,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -464595,6 +491303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464610,12 +491320,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f3d39" }, { @@ -464643,6 +491354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464658,12 +491371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e44036" }, { @@ -464691,6 +491405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464706,12 +491422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbe20d" }, { @@ -464739,6 +491456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464754,12 +491473,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b9792" }, { @@ -464787,6 +491507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464802,12 +491524,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76139c" }, { @@ -464835,6 +491558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464850,12 +491575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -464883,6 +491609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464898,12 +491626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c2f4a" } ], @@ -464934,6 +491663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -464953,12 +491684,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -464985,6 +491717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465000,12 +491734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "919fa0" }, { @@ -465033,6 +491768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465048,12 +491785,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -465081,6 +491819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465096,12 +491836,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b1dd5" } ], @@ -465132,6 +491873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465150,12 +491893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -465182,6 +491926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465197,12 +491943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5d928" }, { @@ -465230,6 +491977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465245,12 +491994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -465281,6 +492031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465302,12 +492054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -465334,6 +492087,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465349,12 +492104,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "881e29" }, { @@ -465382,6 +492138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465397,12 +492155,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "905f01" }, { @@ -465430,6 +492189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465445,12 +492206,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65d096" }, { @@ -465478,6 +492240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465493,12 +492257,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "950fcf" }, { @@ -465526,6 +492291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465541,12 +492308,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -465577,6 +492345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465592,12 +492362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -465625,6 +492396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465640,12 +492413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64e623" }, { @@ -465673,6 +492447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465691,9 +492467,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Where Doom Awaits'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "a621ae" }, { @@ -465721,6 +492497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465729,9 +492507,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -465758,6 +492536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465776,9 +492556,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dedbb0" }, { @@ -465806,6 +492586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465824,9 +492606,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53c7c5" }, { @@ -465854,6 +492636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465872,9 +492656,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5100b" }, { @@ -465902,6 +492686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465920,9 +492706,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ce53d" } ], @@ -465953,6 +492739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -465968,12 +492756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5b919" }, { @@ -466001,6 +492790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466019,9 +492810,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2a05a", "States": { "2": { @@ -466049,6 +492840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466067,9 +492860,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -466097,6 +492890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466115,9 +492910,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -466147,6 +492942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466162,12 +492959,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1bd40" }, { @@ -466195,6 +492993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466216,12 +493016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -466248,6 +493049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466263,12 +493066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "becc3c" }, { @@ -466296,6 +493100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466311,12 +493117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66af3c" }, { @@ -466344,6 +493151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466359,12 +493168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "493726" }, { @@ -466392,6 +493202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466407,12 +493219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d2043" }, { @@ -466440,6 +493253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466455,12 +493270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a06a3b" } ], @@ -466491,6 +493307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466509,9 +493327,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -466539,6 +493357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466557,9 +493377,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -466587,6 +493407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466605,9 +493427,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -466637,6 +493459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466652,12 +493476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "caeb2f" }, { @@ -466685,6 +493510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466706,12 +493533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -466738,6 +493566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466753,12 +493583,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49a3cd" }, { @@ -466786,6 +493617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466801,12 +493634,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7239aa" }, { @@ -466834,6 +493668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466849,12 +493685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d05756" }, { @@ -466882,6 +493719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466897,12 +493736,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd637" }, { @@ -466930,6 +493770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -466945,12 +493787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5dd0e" } ], @@ -467004,6 +493847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467032,9 +493877,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"448edd\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6805,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":269.9988,\"z\":0.0169}},\"64a607\":{\"lock\":false,\"pos\":{\"x\":-3.731,\"y\":1.5824,\"z\":-14.6733},\"rot\":{\"x\":359.9197,\"y\":269.9706,\"z\":0.0169}},\"726813\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.8517,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"729b5b\":{\"lock\":false,\"pos\":{\"x\":-2.6888,\"y\":1.3987,\"z\":-5.0485},\"rot\":{\"x\":359.9832,\"y\":0.0003,\"z\":359.9197}},\"8662fa\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"9a5705\":{\"lock\":false,\"pos\":{\"x\":-5.4165,\"y\":1.7062,\"z\":-10.478},\"rot\":{\"x\":0.0373,\"y\":270.059,\"z\":359.8585}},\"a01672\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6551,\"z\":0.3732},\"rot\":{\"x\":0.0165,\"y\":180.2081,\"z\":0.0803}},\"aa50e4\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9198,\"y\":269.9982,\"z\":0.0165}},\"da24ef\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"e3fba9\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -467061,6 +493906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467076,12 +493923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "448edd" }, { @@ -467109,6 +493957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467124,12 +493974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -467157,6 +494008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467172,12 +494025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8662fa" }, { @@ -467205,6 +494059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467220,12 +494076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a5705" }, { @@ -467253,6 +494110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467268,12 +494127,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -467301,6 +494161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467319,9 +494181,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Lost in Time and Space'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "64a607" }, { @@ -467349,6 +494211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467357,9 +494221,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -467386,6 +494250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467394,9 +494260,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -467423,6 +494289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467443,12 +494311,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -467475,6 +494344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467490,12 +494361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36ab3e" }, { @@ -467523,6 +494395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467538,12 +494412,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ff26a" }, { @@ -467571,6 +494446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467586,12 +494463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85ddfb" }, { @@ -467619,6 +494497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467634,12 +494514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -467673,6 +494554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467681,9 +494564,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -467710,6 +494593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467730,12 +494615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -467762,6 +494648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467777,12 +494665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36ab3e" }, { @@ -467810,6 +494699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467825,12 +494716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ff26a" }, { @@ -467858,6 +494750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467873,12 +494767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0686cc" }, { @@ -467906,6 +494801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467921,12 +494818,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -467963,6 +494861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -467983,12 +494883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -468015,6 +494916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468030,12 +494933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3bf03" }, { @@ -468063,6 +494967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468078,12 +494984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed6504" }, { @@ -468111,6 +495018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468126,12 +495035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19793c" }, { @@ -468159,6 +495069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468174,12 +495086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -468210,6 +495123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468271,7 +495186,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -468279,12 +495195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -468311,6 +495228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468326,12 +495245,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -468359,6 +495279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468374,12 +495296,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "10b92f" }, { @@ -468407,6 +495330,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468422,12 +495347,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -468455,6 +495381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468470,12 +495398,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -468503,6 +495432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468518,12 +495449,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c4d15" }, { @@ -468551,6 +495483,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468566,12 +495500,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b01c1a" }, { @@ -468599,6 +495534,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468614,12 +495551,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9e3e2" }, { @@ -468647,6 +495585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468662,12 +495602,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a97e94" }, { @@ -468695,6 +495636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468710,12 +495653,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64803b" }, { @@ -468743,6 +495687,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468758,12 +495704,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff3b62" }, { @@ -468791,6 +495738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468806,12 +495755,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91d7bc" }, { @@ -468839,6 +495789,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468854,12 +495806,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -468887,6 +495840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468902,12 +495857,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4edfe1" }, { @@ -468935,6 +495891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468950,12 +495908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8e111" }, { @@ -468983,6 +495942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -468998,12 +495959,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bf115" }, { @@ -469031,6 +495993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469046,12 +496010,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8e111" }, { @@ -469079,6 +496044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469094,12 +496061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bed20e" }, { @@ -469127,6 +496095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469142,12 +496112,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d22809" }, { @@ -469175,6 +496146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469190,12 +496163,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -469223,6 +496197,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469238,12 +496214,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab9229" }, { @@ -469271,6 +496248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469286,12 +496265,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -469319,6 +496299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469334,12 +496316,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04fae6" }, { @@ -469367,6 +496350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469382,12 +496367,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f9f0a" }, { @@ -469415,6 +496401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469430,12 +496418,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -469463,6 +496452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469478,12 +496469,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "224e79" }, { @@ -469511,6 +496503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469526,12 +496520,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "816c6e" }, { @@ -469559,6 +496554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469574,12 +496571,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a817e8" }, { @@ -469607,6 +496605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469622,12 +496622,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c704c2" }, { @@ -469655,6 +496656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469670,12 +496673,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c0430" }, { @@ -469703,6 +496707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469718,12 +496724,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ccf98" }, { @@ -469751,6 +496758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469766,12 +496775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8100cf" }, { @@ -469799,6 +496809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469814,12 +496826,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b1dac" }, { @@ -469847,6 +496860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469862,12 +496877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -469895,6 +496911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469910,12 +496928,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "788a8c" }, { @@ -469943,6 +496962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -469958,12 +496979,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -469991,6 +497013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470006,12 +497030,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -470039,6 +497064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470054,12 +497081,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -470087,6 +497115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470102,12 +497132,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb0b3" }, { @@ -470135,6 +497166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470150,12 +497183,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -470183,6 +497217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470198,12 +497234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -470231,6 +497268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470246,12 +497285,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42d459" }, { @@ -470279,6 +497319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470294,12 +497336,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -470327,6 +497370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470342,12 +497387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "919fa0" }, { @@ -470375,6 +497421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470390,12 +497438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -470423,6 +497472,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470438,12 +497489,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b1dd5" } ], @@ -470474,6 +497526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470492,9 +497546,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -470521,6 +497575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470536,12 +497592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8985b" }, { @@ -470569,6 +497626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470584,12 +497643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bcbc5" }, { @@ -470617,6 +497677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470632,12 +497694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3ddcd" } ], @@ -470704,6 +497767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470732,9 +497797,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0b0c58\":{\"lock\":false,\"pos\":{\"x\":-5.7076,\"y\":1.6686,\"z\":15.8305},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"1a4770\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"2eb7a1\":{\"lock\":false,\"pos\":{\"x\":-22.1947,\"y\":1.734,\"z\":-7.7129},\"rot\":{\"x\":0.0847,\"y\":269.9983,\"z\":359.916}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-20.2168,\"y\":1.6096,\"z\":-0.2355},\"rot\":{\"x\":359.9201,\"y\":269.9937,\"z\":0.0169}},\"4b5e17\":{\"lock\":false,\"pos\":{\"x\":-3.4875,\"y\":1.5819,\"z\":-15.0699},\"rot\":{\"x\":359.9197,\"y\":269.9803,\"z\":0.0169}},\"62c028\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.8143,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":180.0168}},\"633816\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"6571a3\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9198,\"y\":269.9976,\"z\":0.0165}},\"7dc46b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}},\"96f250\":{\"lock\":false,\"pos\":{\"x\":-5.3381,\"y\":1.7061,\"z\":-10.5004},\"rot\":{\"x\":0.0425,\"y\":270.0231,\"z\":359.8714}},\"b24a2a\":{\"lock\":false,\"pos\":{\"x\":-2.2208,\"y\":1.6645,\"z\":15.8341},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"c3915f\":{\"lock\":false,\"pos\":{\"x\":-21.6123,\"y\":1.7961,\"z\":7.515},\"rot\":{\"x\":355.8572,\"y\":270.0008,\"z\":0.0174}},\"cf40fc\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"d2eb25\":{\"lock\":false,\"pos\":{\"x\":-23.6762,\"y\":1.6884,\"z\":7.5698},\"rot\":{\"x\":359.9182,\"y\":270.0044,\"z\":0.0156}},\"dbdfa1\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3731},\"rot\":{\"x\":0.0168,\"y\":180.0004,\"z\":0.0803}},\"ddbf36\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"fcb3e4\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.6997},\"rot\":{\"x\":359.9201,\"y\":270.0032,\"z\":0.0167}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -470761,6 +497826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470784,7 +497851,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -470792,12 +497860,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -470824,6 +497893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470839,12 +497910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3ffb6" }, { @@ -470872,6 +497944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470887,12 +497961,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "563240" }, { @@ -470920,6 +497995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470935,12 +498012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63e894" }, { @@ -470968,6 +498046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -470983,12 +498063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e872c5" }, { @@ -471016,6 +498097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471031,12 +498114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da02ea" }, { @@ -471064,6 +498148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471079,12 +498165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d87e6" }, { @@ -471112,6 +498199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471127,12 +498216,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" } ], @@ -471163,6 +498253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471178,12 +498270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b0c58" }, { @@ -471211,6 +498304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471265,7 +498360,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -471273,12 +498369,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -471305,6 +498402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471320,12 +498419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a97e94" }, { @@ -471353,6 +498453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471368,12 +498470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64803b" }, { @@ -471401,6 +498504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471416,12 +498521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff3b62" }, { @@ -471449,6 +498555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471464,12 +498572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91d7bc" }, { @@ -471497,6 +498606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471512,12 +498623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -471545,6 +498657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471560,12 +498674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4edfe1" }, { @@ -471593,6 +498708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471608,12 +498725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -471641,6 +498759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471656,12 +498776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "662570" }, { @@ -471689,6 +498810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471704,12 +498827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e8e0b" }, { @@ -471737,6 +498861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471752,12 +498878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8e5f7" }, { @@ -471785,6 +498912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471800,12 +498929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -471833,6 +498963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471848,12 +498980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fa82b" }, { @@ -471881,6 +499014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471896,12 +499031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c7e59" }, { @@ -471929,6 +499065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471944,12 +499082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5babb2" }, { @@ -471977,6 +499116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -471992,12 +499133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -472025,6 +499167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472040,12 +499184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "157a1f" }, { @@ -472073,6 +499218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472088,12 +499235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f4382" }, { @@ -472121,6 +499269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472136,12 +499286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe4557" }, { @@ -472169,6 +499320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472184,12 +499337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf889d" }, { @@ -472217,6 +499371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472232,12 +499388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd9bc9" }, { @@ -472265,6 +499422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472280,12 +499439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee2862" }, { @@ -472313,6 +499473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472328,12 +499490,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e2895" }, { @@ -472361,6 +499524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472376,12 +499541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee2862" }, { @@ -472409,6 +499575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472424,12 +499592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c35c1" }, { @@ -472457,6 +499626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472472,12 +499643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "969c50" }, { @@ -472505,6 +499677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472520,12 +499694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -472553,6 +499728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472568,12 +499745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8cc8c" }, { @@ -472601,6 +499779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472616,12 +499796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d6b4c" }, { @@ -472649,6 +499830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472664,12 +499847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8cc8c" }, { @@ -472697,6 +499881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472712,12 +499898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -472745,6 +499932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472760,12 +499949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64281b" }, { @@ -472793,6 +499983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472808,12 +500000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -472841,6 +500034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472856,12 +500051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -472889,6 +500085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472904,12 +500102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb0b3" }, { @@ -472937,6 +500136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -472952,12 +500153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -472985,6 +500187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473000,12 +500204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -473033,6 +500238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473048,12 +500255,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42d459" }, { @@ -473081,6 +500289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473096,12 +500306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -473132,6 +500343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473151,12 +500364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -473183,6 +500397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473198,12 +500414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70a774" }, { @@ -473231,6 +500448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473246,12 +500465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "742cea" }, { @@ -473279,6 +500499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473294,12 +500516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -473330,6 +500553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473350,12 +500575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -473382,6 +500608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473397,12 +500625,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aaceb4" }, { @@ -473430,6 +500659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473445,12 +500676,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "588bec" }, { @@ -473478,6 +500710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473493,12 +500727,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "726ac2" }, { @@ -473526,6 +500761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473541,12 +500778,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -473577,6 +500815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473592,12 +500832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -473625,6 +500866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473640,12 +500883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96f250" }, { @@ -473673,6 +500917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473691,9 +500937,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Miskatonic Museum'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b5e17" }, { @@ -473721,6 +500967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473739,9 +500987,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -473768,6 +501016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473783,12 +501033,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -473816,6 +501067,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473831,12 +501084,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d45f10" }, { @@ -473864,6 +501118,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473879,12 +501135,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40c516" }, { @@ -473912,6 +501169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473927,12 +501186,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e88ba8" } ], @@ -473976,6 +501236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -473991,12 +501253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf40fc" }, { @@ -474024,6 +501287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474042,9 +501307,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -474072,6 +501337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474090,9 +501357,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -474120,6 +501387,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474138,9 +501407,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -474170,6 +501439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474185,12 +501456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633816" }, { @@ -474218,6 +501490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474236,9 +501510,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dc46b", "States": { "3": { @@ -474266,6 +501540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474284,9 +501560,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "2": { @@ -474314,6 +501590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474332,9 +501610,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" } } @@ -474364,6 +501642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474379,12 +501659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2eb25" }, { @@ -474412,6 +501693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474427,12 +501710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3915f" }, { @@ -474460,6 +501744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474478,9 +501764,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a4770", "States": { "3": { @@ -474508,6 +501794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474526,9 +501814,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "2": { @@ -474556,6 +501844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474574,9 +501864,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fdd4f4" } } @@ -474606,6 +501896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474621,12 +501913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2eb7a1" }, { @@ -474654,6 +501947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474669,12 +501964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcb3e4" } ], @@ -474725,6 +502021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474753,9 +502051,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"04861e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9203,\"y\":269.9999,\"z\":0.0159}},\"05b0dd\":{\"lock\":false,\"pos\":{\"x\":-22.1435,\"y\":1.83,\"z\":-0.0594},\"rot\":{\"x\":359.8859,\"y\":269.9973,\"z\":0.0123}},\"18c876\":{\"lock\":false,\"pos\":{\"x\":-27.5018,\"y\":1.6185,\"z\":-4.7524},\"rot\":{\"x\":0.0684,\"y\":135.0001,\"z\":0.0446}},\"269f5a\":{\"lock\":false,\"pos\":{\"x\":-5.3675,\"y\":1.706,\"z\":-10.4445},\"rot\":{\"x\":359.9207,\"y\":270.0058,\"z\":0.0163}},\"2a4634\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9938,\"z\":0.0799}},\"2de1a2\":{\"lock\":false,\"pos\":{\"x\":-28.2805,\"y\":1.6221,\"z\":3.8323},\"rot\":{\"x\":0.0446,\"y\":45.0001,\"z\":359.9316}},\"2eb425\":{\"lock\":false,\"pos\":{\"x\":-20.4398,\"y\":1.6077,\"z\":-7.812},\"rot\":{\"x\":0.0799,\"y\":90.0002,\"z\":359.9831}},\"2ee2b1\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7984,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"2ee4bd\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"393c71\":{\"lock\":false,\"pos\":{\"x\":-3.7896,\"y\":1.5824,\"z\":-14.7634},\"rot\":{\"x\":359.9197,\"y\":270.0057,\"z\":0.0168}},\"42e1b7\":{\"lock\":false,\"pos\":{\"x\":-22.1515,\"y\":1.8278,\"z\":-7.6655},\"rot\":{\"x\":359.888,\"y\":270.0129,\"z\":0.0184}},\"542581\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9938,\"z\":0.0799}},\"584b1a\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"7216fc\":{\"lock\":false,\"pos\":{\"x\":-19.8355,\"y\":1.6103,\"z\":3.7241},\"rot\":{\"x\":0.0684,\"y\":135.0004,\"z\":0.0446}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9938,\"z\":0.0799}},\"7310f8\":{\"lock\":false,\"pos\":{\"x\":-15.5907,\"y\":1.8203,\"z\":-7.7117},\"rot\":{\"x\":357.1161,\"y\":269.9965,\"z\":0.0159}},\"82b2b8\":{\"lock\":false,\"pos\":{\"x\":-26.9436,\"y\":1.619,\"z\":-0.1945},\"rot\":{\"x\":0.0797,\"y\":89.9999,\"z\":359.9865}},\"995fe7\":{\"lock\":false,\"pos\":{\"x\":-17.1198,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9202,\"y\":270.0024,\"z\":0.0156}},\"aa50e4\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4409},\"rot\":{\"x\":359.9198,\"y\":270.0033,\"z\":0.0165}},\"ac4427\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6884,\"z\":7.57},\"rot\":{\"x\":359.9202,\"y\":270.0002,\"z\":0.0156}},\"b1e332\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6839,\"z\":-7.7001},\"rot\":{\"x\":359.9203,\"y\":269.9998,\"z\":0.016}},\"c50379\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6953,\"z\":-0.03},\"rot\":{\"x\":359.9205,\"y\":269.9999,\"z\":0.0149}},\"cda035\":{\"lock\":false,\"pos\":{\"x\":-15.5825,\"y\":1.8227,\"z\":-0.0067},\"rot\":{\"x\":355.9369,\"y\":270.0086,\"z\":0.0131}},\"cf4a62\":{\"lock\":false,\"pos\":{\"x\":-22.1432,\"y\":1.8342,\"z\":7.5834},\"rot\":{\"x\":356.2621,\"y\":270.0009,\"z\":0.0137}},\"e58475\":{\"lock\":false,\"pos\":{\"x\":-28.6584,\"y\":1.8388,\"z\":-0.0326},\"rot\":{\"x\":358.2489,\"y\":270.0025,\"z\":0.0152}},\"f22251\":{\"lock\":false,\"pos\":{\"x\":-4.071,\"y\":1.6715,\"z\":15.034},\"rot\":{\"x\":359.9197,\"y\":269.9994,\"z\":180.0168}},\"f7dd31\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9203,\"y\":269.9997,\"z\":0.0154}},\"fb8d6d\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -474782,6 +502080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474800,9 +502100,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -474829,6 +502129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474849,12 +502151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -474881,6 +502184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474896,12 +502201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66919a" }, { @@ -474929,6 +502235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474944,12 +502252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be5eb9" }, { @@ -474977,6 +502286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -474992,12 +502303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "331c18" }, { @@ -475025,6 +502337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475040,12 +502354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66919a" } ], @@ -475092,6 +502407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475113,12 +502430,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -475145,6 +502463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475160,12 +502480,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8825e" }, { @@ -475193,6 +502514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475208,12 +502531,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "092c6d" }, { @@ -475241,6 +502565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475256,12 +502582,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c2292" }, { @@ -475289,6 +502616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475304,12 +502633,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fab08a" }, { @@ -475337,6 +502667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475352,12 +502684,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a8dac" } ], @@ -475388,6 +502721,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475439,7 +502774,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -475447,12 +502783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -475479,6 +502816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475494,12 +502833,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fd2b9" }, { @@ -475527,6 +502867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475542,12 +502884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a1f34" }, { @@ -475575,6 +502918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475590,12 +502935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dd094" }, { @@ -475623,6 +502969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475638,12 +502986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f855c" }, { @@ -475671,6 +503020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475686,12 +503037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dd094" }, { @@ -475719,6 +503071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475734,12 +503088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -475767,6 +503122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475782,12 +503139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac1417" }, { @@ -475815,6 +503173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475830,12 +503190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8596b" }, { @@ -475863,6 +503224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475878,12 +503241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27658e" }, { @@ -475911,6 +503275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475926,12 +503292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -475959,6 +503326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -475974,12 +503343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "653ad0" }, { @@ -476007,6 +503377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476022,12 +503394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -476055,6 +503428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476070,12 +503445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "174be7" }, { @@ -476103,6 +503479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476118,12 +503496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -476151,6 +503530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476166,12 +503547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36006f" }, { @@ -476199,6 +503581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476214,12 +503598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -476247,6 +503632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476262,12 +503649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -476295,6 +503683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476310,12 +503700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97a21e" }, { @@ -476343,6 +503734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476358,12 +503751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -476391,6 +503785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476406,12 +503802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -476439,6 +503836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476454,12 +503853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef7cab" }, { @@ -476487,6 +503887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476502,12 +503904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "651a9e" }, { @@ -476535,6 +503938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476550,12 +503955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c53c4a" }, { @@ -476583,6 +503989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476598,12 +504006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "077019" }, { @@ -476631,6 +504040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476646,12 +504057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -476679,6 +504091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476694,12 +504108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e80a5" }, { @@ -476727,6 +504142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476742,12 +504159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60ef9e" }, { @@ -476775,6 +504193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476790,12 +504210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40e9d0" }, { @@ -476823,6 +504244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476838,12 +504261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -476871,6 +504295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476886,12 +504312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61c583" }, { @@ -476919,6 +504346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476934,12 +504363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -476967,6 +504397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -476982,12 +504414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36342a" }, { @@ -477015,6 +504448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477030,12 +504465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebb8db" }, { @@ -477063,6 +504499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477078,12 +504516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -477111,6 +504550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477126,12 +504567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -477162,6 +504604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477181,12 +504625,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -477213,6 +504658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477228,12 +504675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e27853" }, { @@ -477261,6 +504709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477276,12 +504726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fed4b" }, { @@ -477309,6 +504760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477324,12 +504777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -477360,6 +504814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477378,12 +504834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -477410,6 +504867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477425,12 +504884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ccc8ee" }, { @@ -477458,6 +504918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477473,12 +504935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -477509,6 +504972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477524,12 +504989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -477557,6 +505023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477572,12 +505040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "269f5a" }, { @@ -477605,6 +505074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477623,9 +505094,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Undimensioned and Unseen'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "393c71" }, { @@ -477653,6 +505124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477668,12 +505141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7310f8" }, { @@ -477701,6 +505175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477716,12 +505192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7dd31" }, { @@ -477749,6 +505226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477767,9 +505246,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -477797,6 +505276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477815,9 +505296,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -477845,6 +505326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477863,9 +505346,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -477895,6 +505378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477910,12 +505395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cda035" }, { @@ -477943,6 +505429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -477958,12 +505446,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "995fe7" }, { @@ -477991,6 +505480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478009,9 +505500,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2eb425", "States": { "2": { @@ -478039,6 +505530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478057,9 +505550,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -478087,6 +505580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478105,9 +505600,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -478137,6 +505632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478152,12 +505649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42e1b7" }, { @@ -478185,6 +505683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478200,12 +505700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1e332" }, { @@ -478233,6 +505734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478251,9 +505754,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a4634", "States": { "2": { @@ -478281,6 +505784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478299,9 +505804,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -478329,6 +505834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478347,9 +505854,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -478379,6 +505886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478394,12 +505903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04861e" }, { @@ -478427,6 +505937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478442,12 +505954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05b0dd" }, { @@ -478475,6 +505988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478493,9 +506008,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7216fc", "States": { "2": { @@ -478523,6 +506038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478541,9 +506058,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -478571,6 +506088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478589,9 +506108,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -478621,6 +506140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478639,9 +506160,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "542581", "States": { "2": { @@ -478669,6 +506190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478687,9 +506210,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -478717,6 +506240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478735,9 +506260,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -478767,6 +506292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478782,12 +506309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac4427" }, { @@ -478815,6 +506343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478830,12 +506360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf4a62" }, { @@ -478863,6 +506394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478881,9 +506414,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2de1a2", "States": { "2": { @@ -478911,6 +506444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478929,9 +506464,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -478959,6 +506494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -478977,9 +506514,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -479009,6 +506546,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479027,9 +506566,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82b2b8", "States": { "2": { @@ -479057,6 +506596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479075,9 +506616,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -479105,6 +506646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479123,9 +506666,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -479155,6 +506698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479173,9 +506718,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18c876", "States": { "2": { @@ -479203,6 +506748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479221,9 +506768,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -479251,6 +506798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479269,9 +506818,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -479301,6 +506850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479316,12 +506867,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c50379" }, { @@ -479349,6 +506901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479364,12 +506918,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e58475" } ], @@ -479420,6 +506975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479438,9 +506995,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --First checkbox\r\n-- {\r\n-- pos = {-0.62,0.1,0.056},\r\n-- size = 400,\r\n-- state = false\r\n-- },\r\n --Second checkbox\r\n-- {\r\n-- pos = {-0.629,0.1,0.199},\r\n-- size = 400,\r\n-- state = false\r\n-- },\r\n --Third checkbox\r\n-- {\r\n-- pos = {-0.594,0.1,0.355},\r\n-- size = 400,\r\n-- state = false\r\n-- },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n {\r\n pos = {-0.7,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one counter 2\r\n {\r\n pos = {-0.52,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one xp 1\r\n {\r\n pos = {-0.517,0.1,-0.55},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 1\r\n {\r\n pos = {-0.274,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 2\r\n {\r\n pos = {-0.074,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two xp 1\r\n {\r\n pos = {-0.061,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 1\r\n {\r\n pos = {0.153,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 2\r\n {\r\n pos = {0.379,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three xp 1\r\n {\r\n pos = {0.38,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 1\r\n {\r\n pos = {0.614,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 2\r\n {\r\n pos = {0.82,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four xp 1\r\n {\r\n pos = {0.827,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --Slot one player\r\n {\r\n pos = {-0.637,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one investigator\r\n {\r\n pos = {-0.637,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one story\r\n {\r\n pos = {-0.637,0.1,-0.25},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two player\r\n {\r\n pos = {-0.2,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two investigator\r\n {\r\n pos = {-0.2,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two story\r\n {\r\n pos = {-0.2,0.1,-0.25},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three player\r\n {\r\n pos = {0.241,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three investigator\r\n {\r\n pos = {0.237,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three story\r\n {\r\n pos = {0.24,0.1,-0.25},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four player\r\n {\r\n pos = {0.671,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four investigator\r\n {\r\n pos = {0.671,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four story\r\n {\r\n pos = {0.671,0.1,-0.25},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes\r\n {\r\n pos = {-0.45,0.1,0.55},\r\n rows =18,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes 2\r\n {\r\n pos = {0.384,0.1,0.228},\r\n rows = 8,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Cultists interrogated\r\n {\r\n pos = {0.384,0.1,0.69},\r\n rows = 8,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", "LuaScriptState": "{\"checkbox\":[],\"counter\":[{\"hideBG\":true,\"pos\":[-0.7,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.52,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.517,0.1,-0.55],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[-0.274,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.074,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.061,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.153,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.379,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.38,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.614,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.82,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.827,0.1,-0.54],\"size\":300,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.25],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.25],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.241,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.237,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.24,0.1,-0.25],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.25],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[-0.45,0.1,0.55],\"rows\":18,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[0.384,0.1,0.228],\"rows\":8,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[0.384,0.1,0.69],\"rows\":8,\"value\":\"\",\"width\":3500}]}", + "XmlUI": "", "GUID": "b713e7", "States": { "2": { @@ -479468,6 +507025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479486,9 +507045,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --1 checkbox\r\n {\r\n pos = {-0.847,0.1,-0.649},\r\n size = 250,\r\n state = false\r\n },\r\n --2 checkbox\r\n {\r\n pos = {-0.514,0.1,-0.733},\r\n size = 250,\r\n state = false\r\n },\r\n --3 checkbox\r\n {\r\n pos = {-0.512,0.1,-0.612},\r\n size = 250,\r\n state = false\r\n },\r\n --4 checkbox\r\n {\r\n pos = {0.175,0.1,-0.708},\r\n size = 250,\r\n state = false\r\n },\r\n --5 checkbox\r\n {\r\n pos = {0.174,0.1,-0.574},\r\n size = 250,\r\n state = false\r\n },\r\n --6 checkbox\r\n {\r\n pos = {-0.035,0.1,-0.408},\r\n size = 250,\r\n state = false\r\n },\r\n --7 checkbox\r\n {\r\n pos = {-0.818,0.1,-0.373},\r\n size = 250,\r\n state = false\r\n },\r\n --8 checkbox\r\n {\r\n pos = {-0.361,0.1,-0.235},\r\n size = 250,\r\n state = false\r\n },\r\n --9 checkbox\r\n {\r\n pos = {0.323,0.1,-0.091},\r\n size = 250,\r\n state = false\r\n },\r\n --10 checkbox\r\n {\r\n pos = {-0.099,0.1,0.027},\r\n size = 250,\r\n state = false\r\n },\r\n --11 checkbox\r\n {\r\n pos = {-0.778,0.1,0.126},\r\n size = 250,\r\n state = false\r\n },\r\n --12 checkbox\r\n {\r\n pos = {-0.256,0.1,0.296},\r\n size = 250,\r\n state = false\r\n },\r\n --13 checkbox\r\n {\r\n pos = {0.179,0.1,0.461},\r\n size = 250,\r\n state = false\r\n },\r\n --14 checkbox\r\n {\r\n pos = {0.289,0.1,0.726},\r\n size = 250,\r\n state = false\r\n },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n\r\n --Campaign Notes\r\n {\r\n pos = {-0.4,0.1,0.652},\r\n rows =6,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", "LuaScriptState": "{\"checkbox\":[{\"pos\":[-0.847,0.1,-0.649],\"size\":250,\"state\":false},{\"pos\":[-0.514,0.1,-0.733],\"size\":250,\"state\":false},{\"pos\":[-0.512,0.1,-0.612],\"size\":250,\"state\":false},{\"pos\":[0.175,0.1,-0.708],\"size\":250,\"state\":false},{\"pos\":[0.174,0.1,-0.574],\"size\":250,\"state\":false},{\"pos\":[-0.035,0.1,-0.408],\"size\":250,\"state\":false},{\"pos\":[-0.818,0.1,-0.373],\"size\":250,\"state\":false},{\"pos\":[-0.361,0.1,-0.235],\"size\":250,\"state\":false},{\"pos\":[0.323,0.1,-0.091],\"size\":250,\"state\":false},{\"pos\":[-0.099,0.1,0.027],\"size\":250,\"state\":false},{\"pos\":[-0.778,0.1,0.126],\"size\":250,\"state\":false},{\"pos\":[-0.256,0.1,0.296],\"size\":250,\"state\":false},{\"pos\":[0.179,0.1,0.461],\"size\":250,\"state\":false},{\"pos\":[0.289,0.1,0.726],\"size\":250,\"state\":false}],\"counter\":[],\"textbox\":[{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[-0.4,0.1,0.652],\"rows\":6,\"value\":\"\",\"width\":3500}]}", + "XmlUI": "", "GUID": "72c448" } } @@ -479518,6 +507077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479546,9 +507107,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"02daa0\":{\"lock\":false,\"pos\":{\"x\":-3.9273,\"y\":1.793,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"09f0d9\":{\"lock\":false,\"pos\":{\"x\":-20.6211,\"y\":1.6091,\"z\":-3.8333},\"rot\":{\"x\":359.9747,\"y\":209.9999,\"z\":0.0776}},\"2503af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9956,\"z\":0.0169}},\"376ef8\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180.0002,\"z\":0.0799}},\"4541f6\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9964,\"z\":0.0169}},\"45f91d\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9976,\"z\":0.0169}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6557,\"z\":-10.4411},\"rot\":{\"x\":359.9204,\"y\":269.9768,\"z\":0.0183}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.5754,\"y\":1.6101,\"z\":-0.4063},\"rot\":{\"x\":359.9201,\"y\":269.9938,\"z\":0.0169}},\"72b0c4\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.655,\"z\":-5.0771},\"rot\":{\"x\":0.0168,\"y\":179.9919,\"z\":0.0803}},\"85af77\":{\"lock\":false,\"pos\":{\"x\":-20.6223,\"y\":1.6124,\"z\":7.1175},\"rot\":{\"x\":359.9201,\"y\":269.9939,\"z\":0.0169}},\"a71c47\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"a74352\":{\"lock\":false,\"pos\":{\"x\":-3.9601,\"y\":1.5828,\"z\":-14.3534},\"rot\":{\"x\":359.9197,\"y\":270.0457,\"z\":0.0168}},\"aa50e4\":{\"lock\":false,\"pos\":{\"x\":-5.5597,\"y\":1.7999,\"z\":-10.4861},\"rot\":{\"x\":5.1508,\"y\":270.0186,\"z\":0.0126}},\"b680b5\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9997,\"z\":0.0799}},\"b8bae0\":{\"lock\":false,\"pos\":{\"x\":-20.5298,\"y\":1.6112,\"z\":3.6223},\"rot\":{\"x\":0.0684,\"y\":135,\"z\":0.0446}},\"b90f89\":{\"lock\":false,\"pos\":{\"x\":-2.7243,\"y\":1.6566,\"z\":0.3558},\"rot\":{\"x\":0.0169,\"y\":179.9864,\"z\":0.0803}},\"c33d1f\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":0.0169}},\"db7433\":{\"lock\":false,\"pos\":{\"x\":-12.2512,\"y\":1.6729,\"z\":8.8943},\"rot\":{\"x\":359.9201,\"y\":269.9963,\"z\":0.0169}},\"dd38a5\":{\"lock\":false,\"pos\":{\"x\":-12.178,\"y\":1.6721,\"z\":6.3546},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":0.0169}},\"e7dfe0\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9897,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -479575,6 +507136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479625,7 +507188,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -479633,12 +507197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -479665,6 +507230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479680,12 +507247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a97e94" }, { @@ -479713,6 +507281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479728,12 +507298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64803b" }, { @@ -479761,6 +507332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479776,12 +507349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff3b62" }, { @@ -479809,6 +507383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479824,12 +507400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91d7bc" }, { @@ -479857,6 +507434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479872,12 +507451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -479905,6 +507485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479920,12 +507502,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4edfe1" }, { @@ -479953,6 +507536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -479968,12 +507553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -480001,6 +507587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480016,12 +507604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "662570" }, { @@ -480049,6 +507638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480064,12 +507655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -480097,6 +507689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480112,12 +507706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6d9b2" }, { @@ -480145,6 +507740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480160,12 +507757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -480193,6 +507791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480208,12 +507808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -480241,6 +507842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480256,12 +507859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c4d15" }, { @@ -480289,6 +507893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480304,12 +507910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b01c1a" }, { @@ -480337,6 +507944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480352,12 +507961,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9e3e2" }, { @@ -480385,6 +507995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480400,12 +508012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2aa77" }, { @@ -480433,6 +508046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480448,12 +508063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -480481,6 +508097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480496,12 +508114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -480529,6 +508148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480544,12 +508165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb0b3" }, { @@ -480577,6 +508199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480592,12 +508216,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -480625,6 +508250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480640,12 +508267,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -480673,6 +508301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480688,12 +508318,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42d459" }, { @@ -480721,6 +508352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480736,12 +508369,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -480769,6 +508403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480784,12 +508420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e44036" }, { @@ -480817,6 +508454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480832,12 +508471,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbe20d" }, { @@ -480865,6 +508505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480880,12 +508522,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b9792" }, { @@ -480913,6 +508556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480928,12 +508573,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76139c" }, { @@ -480961,6 +508607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -480976,12 +508624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -481009,6 +508658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481024,12 +508675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c2f4a" }, { @@ -481057,6 +508709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481072,12 +508726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60ef9e" }, { @@ -481105,6 +508760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481120,12 +508777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40e9d0" }, { @@ -481153,6 +508811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481168,12 +508828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -481201,6 +508862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481216,12 +508879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61c583" }, { @@ -481249,6 +508913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481264,12 +508930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -481300,6 +508967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481318,9 +508987,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09f0d9", "States": { "2": { @@ -481348,6 +509017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481366,9 +509037,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -481396,6 +509067,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481414,9 +509087,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -481446,6 +509119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481461,12 +509136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2503af" }, { @@ -481494,6 +509170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481512,9 +509190,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "376ef8", "States": { "2": { @@ -481542,6 +509220,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481560,9 +509240,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -481590,6 +509270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481608,9 +509290,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -481640,6 +509322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481655,12 +509339,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4541f6" }, { @@ -481688,6 +509373,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481703,12 +509390,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45f91d" }, { @@ -481736,6 +509424,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481751,12 +509441,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -481784,6 +509475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481802,9 +509495,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -481832,6 +509525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481850,9 +509545,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -481880,6 +509575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481898,9 +509595,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -481930,6 +509627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481949,12 +509648,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -481981,6 +509681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -481996,12 +509698,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae9906" }, { @@ -482029,6 +509732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482044,12 +509749,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7ee8a" }, { @@ -482077,6 +509783,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482092,12 +509800,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -482128,6 +509837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482146,9 +509857,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85af77", "States": { "2": { @@ -482176,6 +509887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482194,9 +509907,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -482224,6 +509937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482242,9 +509957,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -482274,6 +509989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482292,9 +510009,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -482321,6 +510038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482336,12 +510055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66197b" }, { @@ -482369,6 +510089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482384,12 +510106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "685c14" }, { @@ -482417,6 +510140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482432,12 +510157,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd02ba" }, { @@ -482465,6 +510191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482480,12 +510208,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42806b" }, { @@ -482513,6 +510242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482528,12 +510259,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c7371" }, { @@ -482561,6 +510293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482576,12 +510310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85d21d" }, { @@ -482609,6 +510344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482624,12 +510361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "379ac4" }, { @@ -482657,6 +510395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482675,12 +510415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -482707,6 +510448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482722,12 +510465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c567d" }, { @@ -482755,6 +510499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482770,12 +510516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fda8e" } ], @@ -482822,6 +510569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482840,9 +510589,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Dunwich Legacy'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "a74352" }, { @@ -482870,6 +510619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482885,12 +510636,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -482918,6 +510670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482936,9 +510690,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b680b5", "States": { "2": { @@ -482966,6 +510720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -482984,9 +510740,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -483014,6 +510770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483032,9 +510790,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -483064,6 +510822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483082,9 +510842,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8bae0", "States": { "2": { @@ -483112,6 +510872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483130,9 +510892,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -483160,6 +510922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483178,9 +510942,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -483210,6 +510974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483229,12 +510995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -483261,6 +511028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483276,12 +511045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fac5d" }, { @@ -483309,6 +511079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483324,12 +511096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1cd6b" }, { @@ -483357,6 +511130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483372,12 +511147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -483408,6 +511184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483423,12 +511201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c33d1f" }, { @@ -483456,6 +511235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483471,12 +511252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db7433" }, { @@ -483504,6 +511286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483519,12 +511303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd38a5" }, { @@ -483552,6 +511337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483567,12 +511354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7dfe0" } ], @@ -483623,6 +511411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483651,9 +511441,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"116a78\":{\"lock\":false,\"pos\":{\"x\":-3.9273,\"y\":1.7984,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"2439da\":{\"lock\":false,\"pos\":{\"x\":-4.9066,\"y\":1.4987,\"z\":-13.9204},\"rot\":{\"x\":359.9929,\"y\":0.0003,\"z\":359.9314}},\"247967\":{\"lock\":false,\"pos\":{\"x\":-3.4005,\"y\":1.5819,\"z\":-14.5398},\"rot\":{\"x\":359.92,\"y\":270.0072,\"z\":0.0151}},\"319e29\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"3db4d1\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9983,\"z\":0.0799}},\"42ab75\":{\"lock\":false,\"pos\":{\"x\":-26.9023,\"y\":1.6235,\"z\":15.2697},\"rot\":{\"x\":0.0799,\"y\":90.0032,\"z\":359.9831}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-17.1164,\"y\":1.602,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9984,\"z\":0.0799}},\"482318\":{\"lock\":false,\"pos\":{\"x\":-20.3813,\"y\":1.6143,\"z\":15.0363},\"rot\":{\"x\":0.0799,\"y\":90.0115,\"z\":359.9831}},\"52dd93\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6706,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"588354\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6892,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-3.9411,\"y\":1.6556,\"z\":-10.4404},\"rot\":{\"x\":359.9198,\"y\":269.9688,\"z\":0.0165}},\"88cfd9\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6087,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":179.9985,\"z\":0.0799}},\"9f9330\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"aa50e4\":{\"lock\":false,\"pos\":{\"x\":-5.3786,\"y\":1.706,\"z\":-10.4861},\"rot\":{\"x\":359.9208,\"y\":269.9654,\"z\":0.0164}},\"d30e98\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.658,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"f236cc\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9984,\"z\":0.0799}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -483680,6 +511470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483698,9 +511490,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -483727,6 +511519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483747,12 +511541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -483779,6 +511574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483794,12 +511591,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0707" }, { @@ -483827,6 +511625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483842,12 +511642,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d1810" }, { @@ -483875,6 +511676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483890,12 +511693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb943f" }, { @@ -483923,6 +511727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483938,12 +511744,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0707" } ], @@ -483974,6 +511781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -483989,12 +511798,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21ca4f" } ], @@ -484038,6 +511848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484089,7 +511901,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2338": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -484097,7 +511910,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -484105,7 +511919,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2330": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/", @@ -484113,12 +511928,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -484145,6 +511961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484160,12 +511978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "979865" }, { @@ -484193,6 +512012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484208,12 +512029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f3a8e" }, { @@ -484241,6 +512063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484256,12 +512080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -484289,6 +512114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484304,12 +512131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7a9ae" }, { @@ -484337,6 +512165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484352,12 +512182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b21462" }, { @@ -484385,6 +512216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484400,12 +512233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66a478" }, { @@ -484433,6 +512267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484448,12 +512284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b21462" }, { @@ -484481,6 +512318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484496,12 +512335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -484529,6 +512369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484544,12 +512386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "761e27" }, { @@ -484577,6 +512420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484592,12 +512437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02547a" }, { @@ -484625,6 +512471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484640,12 +512488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49f43a" }, { @@ -484673,6 +512522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484688,12 +512539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bc20d" }, { @@ -484721,6 +512573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484736,12 +512590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49f43a" }, { @@ -484769,6 +512624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484784,12 +512641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d63054" }, { @@ -484817,6 +512675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484832,12 +512692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b347d1" }, { @@ -484865,6 +512726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484880,12 +512743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36612" }, { @@ -484913,6 +512777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484928,12 +512794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50fdc5" }, { @@ -484961,6 +512828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -484976,12 +512845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4911f2" }, { @@ -485009,6 +512879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485024,12 +512896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -485057,6 +512930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485072,12 +512947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -485105,6 +512981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485120,12 +512998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6d9b2" }, { @@ -485153,6 +513032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485168,12 +513049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -485201,6 +513083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485216,12 +513100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a97e94" }, { @@ -485249,6 +513134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485264,12 +513151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64803b" }, { @@ -485297,6 +513185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485312,12 +513202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff3b62" }, { @@ -485345,6 +513236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485360,12 +513253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91d7bc" }, { @@ -485393,6 +513287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485408,12 +513304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -485441,6 +513338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485456,12 +513355,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4edfe1" }, { @@ -485489,6 +513389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485504,12 +513406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dd094" }, { @@ -485537,6 +513440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485552,12 +513457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f855c" }, { @@ -485585,6 +513491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485600,12 +513508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dd094" }, { @@ -485633,6 +513542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485648,12 +513559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -485681,6 +513593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485696,12 +513610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac1417" }, { @@ -485729,6 +513644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485744,12 +513661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8596b" }, { @@ -485777,6 +513695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485792,12 +513712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27658e" } ], @@ -485828,6 +513749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485850,7 +513773,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2332": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/", @@ -485858,12 +513782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -485890,6 +513815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485905,12 +513832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad8e9f" }, { @@ -485938,6 +513866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -485953,12 +513883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22da82" }, { @@ -485986,6 +513917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486001,12 +513934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44ad52" }, { @@ -486034,6 +513968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486049,12 +513985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "54c524" }, { @@ -486082,6 +514019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486097,12 +514036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d6e00" }, { @@ -486130,6 +514070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486145,12 +514087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6f731" } ], @@ -486181,6 +514124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486199,12 +514144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -486231,6 +514177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486246,12 +514194,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d207eb" }, { @@ -486279,6 +514228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486294,12 +514245,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -486330,6 +514282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486345,12 +514299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -486378,6 +514333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486393,12 +514350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -486426,6 +514384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486444,9 +514404,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Essex County Express'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "247967" }, { @@ -486474,6 +514434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486482,9 +514444,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -486511,6 +514473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486529,9 +514493,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2c8c3" }, { @@ -486559,6 +514523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486577,9 +514543,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa839" }, { @@ -486607,6 +514573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486625,9 +514593,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de80ff" }, { @@ -486655,6 +514623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486673,9 +514643,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6903e" } ], @@ -486706,6 +514676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486726,7 +514698,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -486734,12 +514707,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -486766,6 +514740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486781,12 +514757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03d617" }, { @@ -486814,6 +514791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486829,12 +514808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d60b80" }, { @@ -486862,6 +514842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486877,12 +514859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4b757" }, { @@ -486910,6 +514893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486925,12 +514910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34abd4" } ], @@ -486961,6 +514947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -486979,9 +514967,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -487009,6 +514997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487027,9 +515017,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -487057,6 +515047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487075,9 +515067,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -487107,6 +515099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487125,9 +515119,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3db4d1", "States": { "2": { @@ -487155,6 +515149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487173,9 +515169,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -487203,6 +515199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487221,9 +515219,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -487253,6 +515251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487271,9 +515271,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f236cc", "States": { "2": { @@ -487301,6 +515301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487319,9 +515321,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -487349,6 +515351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487367,9 +515371,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -487399,6 +515403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487417,9 +515423,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88cfd9", "States": { "2": { @@ -487447,6 +515453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487465,9 +515473,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -487495,6 +515503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487513,9 +515523,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -487545,6 +515555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487563,9 +515575,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "482318", "States": { "2": { @@ -487593,6 +515605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487611,9 +515625,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -487641,6 +515655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487659,9 +515675,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -487691,6 +515707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487709,9 +515727,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42ab75", "States": { "2": { @@ -487739,6 +515757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487757,9 +515777,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -487787,6 +515807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487805,9 +515827,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -487837,6 +515859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487863,7 +515887,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -487871,12 +515896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -487903,6 +515929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487918,12 +515946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62eb90" }, { @@ -487951,6 +515980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -487966,12 +515997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "464528" }, { @@ -487999,6 +516031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488014,12 +516048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cfca4" }, { @@ -488047,6 +516082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488062,12 +516099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0794a4" }, { @@ -488095,6 +516133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488110,12 +516150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3f902" }, { @@ -488143,6 +516184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488158,12 +516201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3a321" }, { @@ -488191,6 +516235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488206,12 +516252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c93d4" }, { @@ -488239,6 +516286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488254,12 +516303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fb5f0" }, { @@ -488287,6 +516337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488302,12 +516354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64ffb0" }, { @@ -488335,6 +516388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488350,12 +516405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "905f69" } ], @@ -488409,6 +516465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488437,9 +516495,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0f9069\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"1d6227\":{\"lock\":false,\"pos\":{\"x\":-3.8342,\"y\":1.5825,\"z\":-14.6606},\"rot\":{\"x\":359.9197,\"y\":270.0013,\"z\":0.0168}},\"1eb845\":{\"lock\":false,\"pos\":{\"x\":-27.2868,\"y\":1.6185,\"z\":-3.5701},\"rot\":{\"x\":0.0684,\"y\":135.0001,\"z\":0.0446}},\"45341b\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"4b1874\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"50fc37\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7344,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"53d666\":{\"lock\":false,\"pos\":{\"x\":1.6963,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"549a3d\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6557,\"z\":-10.4409},\"rot\":{\"x\":359.9196,\"y\":270.0025,\"z\":0.0178}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.6144,\"y\":1.6101,\"z\":-0.3314},\"rot\":{\"x\":359.9201,\"y\":270.0063,\"z\":0.0169}},\"7faf81\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"9a3039\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"aa50e4\":{\"lock\":false,\"pos\":{\"x\":-5.6573,\"y\":1.792,\"z\":-10.5265},\"rot\":{\"x\":4.8498,\"y\":269.9606,\"z\":0.0119}},\"acc7ef\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"b45961\":{\"lock\":false,\"pos\":{\"x\":-26.6851,\"y\":1.6187,\"z\":-0.0751},\"rot\":{\"x\":359.9201,\"y\":270.0063,\"z\":0.0169}},\"de3bd5\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6885,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.999,\"z\":0.0169}},\"f6109e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6874,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -488466,6 +516524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488486,12 +516546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -488518,6 +516579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488533,12 +516596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "145366" }, { @@ -488566,6 +516630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488581,12 +516647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fdc9d7" }, { @@ -488614,6 +516681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488629,12 +516698,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f8d84" }, { @@ -488662,6 +516732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488677,12 +516749,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -488713,6 +516786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488731,9 +516806,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Dunwich Legacy'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d6227" }, { @@ -488761,6 +516836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488779,9 +516856,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1eb845", "States": { "2": { @@ -488809,6 +516886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488827,9 +516906,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -488857,6 +516936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488875,9 +516956,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -488907,6 +516988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488922,12 +517005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45341b" }, { @@ -488955,6 +517039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -488970,12 +517056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b1874" }, { @@ -489003,6 +517090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489042,7 +517131,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -489050,7 +517140,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -489058,12 +517149,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -489090,6 +517182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489105,12 +517199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57f732" }, { @@ -489138,6 +517233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489153,12 +517250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a8299" }, { @@ -489186,6 +517284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489201,12 +517301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -489234,6 +517335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489249,12 +517352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "849ccd" }, { @@ -489282,6 +517386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489297,12 +517403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8cc8c" }, { @@ -489330,6 +517437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489345,12 +517454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d6b4c" }, { @@ -489378,6 +517488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489393,12 +517505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8cc8c" }, { @@ -489426,6 +517539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489441,12 +517556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -489474,6 +517590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489489,12 +517607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64281b" }, { @@ -489522,6 +517641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489537,12 +517658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -489570,6 +517692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489585,12 +517709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -489618,6 +517743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489633,12 +517760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3b1ad" }, { @@ -489666,6 +517794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489681,12 +517811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -489714,6 +517845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489729,12 +517862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41c162" }, { @@ -489762,6 +517896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489777,12 +517913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb489f" }, { @@ -489810,6 +517947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489825,12 +517964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5da81c" }, { @@ -489858,6 +517998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489873,12 +518015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b2e99" }, { @@ -489906,6 +518049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489921,12 +518066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5bca1" }, { @@ -489954,6 +518100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -489969,12 +518117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -490002,6 +518151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490017,12 +518168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -490050,6 +518202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490065,12 +518219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -490098,6 +518253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490113,12 +518270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2cf85" }, { @@ -490146,6 +518304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490161,12 +518321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -490197,6 +518358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490215,9 +518378,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -490244,6 +518407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490259,12 +518424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66197b" }, { @@ -490292,6 +518458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490311,12 +518479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -490343,6 +518512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490358,12 +518529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce6ce6" }, { @@ -490391,6 +518563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490406,12 +518580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc63df" }, { @@ -490439,6 +518614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490454,12 +518631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cf7f9" } ], @@ -490490,6 +518668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490505,12 +518685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f03306" }, { @@ -490538,6 +518719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490553,12 +518736,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8359a3" }, { @@ -490586,6 +518770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490601,12 +518787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "911f8c" }, { @@ -490634,6 +518821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490657,12 +518846,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -490689,6 +518879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490704,12 +518896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dd094" }, { @@ -490737,6 +518930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490752,12 +518947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f855c" }, { @@ -490785,6 +518981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490800,12 +518998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dd094" }, { @@ -490833,6 +519032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490848,12 +519049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -490881,6 +519083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490896,12 +519100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac1417" }, { @@ -490929,6 +519134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490944,12 +519151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8596b" }, { @@ -490977,6 +519185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -490992,12 +519202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27658e" } ], @@ -491028,6 +519239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491047,12 +519260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -491079,6 +519293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491094,12 +519310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "919fa0" }, { @@ -491127,6 +519344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491142,12 +519361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -491175,6 +519395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491190,12 +519412,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b1dd5" } ], @@ -491226,6 +519449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491241,12 +519466,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcf6ea" } ], @@ -491290,6 +519516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491308,9 +519536,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "549a3d", "States": { "2": { @@ -491338,6 +519566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491356,9 +519586,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -491386,6 +519616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491404,9 +519636,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -491436,6 +519668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491451,12 +519685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -491484,6 +519719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491502,9 +519739,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -491532,6 +519769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491550,9 +519789,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -491580,6 +519819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491598,9 +519839,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -491630,6 +519871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491645,12 +519888,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7faf81" }, { @@ -491678,6 +519922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491693,12 +519939,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a3039" }, { @@ -491726,6 +519973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491741,12 +519990,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -491774,6 +520024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491793,12 +520045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -491825,6 +520078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491840,12 +520095,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d9d42" }, { @@ -491873,6 +520129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491888,12 +520146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f53012" }, { @@ -491921,6 +520180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491936,12 +520197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -491972,6 +520234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -491990,9 +520254,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b45961", "States": { "2": { @@ -492020,6 +520284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492038,9 +520304,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -492068,6 +520334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492086,9 +520354,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -492118,6 +520386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492133,12 +520403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -492166,6 +520437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492181,12 +520454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6109e" } ], @@ -492240,6 +520514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492268,9 +520544,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -492297,6 +520573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492315,9 +520593,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -492344,6 +520622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492366,12 +520646,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -492398,6 +520679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492413,12 +520696,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3effb8" }, { @@ -492446,6 +520730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492461,12 +520747,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd93e2" }, { @@ -492494,6 +520781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492509,12 +520798,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a92ef8" }, { @@ -492542,6 +520832,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492557,12 +520849,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "613256" }, { @@ -492590,6 +520883,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492605,12 +520900,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca4b6d" }, { @@ -492638,6 +520934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492653,12 +520951,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" } ], @@ -492689,6 +520988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492711,12 +521012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -492743,6 +521045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492758,12 +521062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2789ff" }, { @@ -492791,6 +521096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492806,12 +521113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2d075" }, { @@ -492839,6 +521147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492854,12 +521164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6340b" }, { @@ -492887,6 +521198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492902,12 +521215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4bbb4" }, { @@ -492935,6 +521249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492950,12 +521266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -492983,6 +521300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -492998,12 +521317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9d501" } ], @@ -493034,6 +521354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493053,12 +521375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -493085,6 +521408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493100,12 +521425,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9dc22" }, { @@ -493133,6 +521459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493148,12 +521476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d46d72" }, { @@ -493181,6 +521510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493196,12 +521527,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c7c3" } ], @@ -493232,6 +521564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493250,12 +521584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -493282,6 +521617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493297,12 +521634,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -493330,6 +521668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493345,12 +521685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "662570" } ], @@ -493381,6 +521722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493400,12 +521743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -493432,6 +521776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493447,12 +521793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -493480,6 +521827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493495,12 +521844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6d9b2" }, { @@ -493528,6 +521878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493543,12 +521895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" } ], @@ -493579,6 +521932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493601,12 +521956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -493633,6 +521989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493648,12 +522006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a97e94" }, { @@ -493681,6 +522040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493696,12 +522057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64803b" }, { @@ -493729,6 +522091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493744,12 +522108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff3b62" }, { @@ -493777,6 +522142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493792,12 +522159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91d7bc" }, { @@ -493825,6 +522193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493840,12 +522210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -493873,6 +522244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493888,12 +522261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4edfe1" } ], @@ -493924,6 +522298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493944,12 +522320,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -493976,6 +522353,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -493991,12 +522370,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e8e0b" }, { @@ -494024,6 +522404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494039,12 +522421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8e5f7" }, { @@ -494072,6 +522455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494087,12 +522472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -494120,6 +522506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494135,12 +522523,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fa82b" } ], @@ -494171,6 +522560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494191,12 +522582,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -494223,6 +522615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494238,12 +522632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -494271,6 +522666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494286,12 +522683,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c4d15" }, { @@ -494319,6 +522717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494334,12 +522734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b01c1a" }, { @@ -494367,6 +522768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494382,12 +522785,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9e3e2" } ], @@ -494418,6 +522822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494441,12 +522847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -494473,6 +522880,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494488,12 +522897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dd094" }, { @@ -494521,6 +522931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494536,12 +522948,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f855c" }, { @@ -494569,6 +522982,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494584,12 +522999,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dd094" }, { @@ -494617,6 +523033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494632,12 +523050,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -494665,6 +523084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494680,12 +523101,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac1417" }, { @@ -494713,6 +523135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494728,12 +523152,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8596b" }, { @@ -494761,6 +523186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494776,12 +523203,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27658e" } ], @@ -494812,6 +523240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494833,12 +523263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -494865,6 +523296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494880,12 +523313,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60ef9e" }, { @@ -494913,6 +523347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494928,12 +523364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40e9d0" }, { @@ -494961,6 +523398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -494976,12 +523415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -495009,6 +523449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495024,12 +523466,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61c583" }, { @@ -495057,6 +523500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495072,12 +523517,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -495108,6 +523554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495128,12 +523576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -495160,6 +523609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495175,12 +523626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36342a" }, { @@ -495208,6 +523660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495223,12 +523677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebb8db" }, { @@ -495256,6 +523711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495271,12 +523728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -495304,6 +523762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495319,12 +523779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -495355,6 +523816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495377,12 +523840,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -495409,6 +523873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495424,12 +523890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8cc8c" }, { @@ -495457,6 +523924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495472,12 +523941,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d6b4c" }, { @@ -495505,6 +523975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495520,12 +523992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8cc8c" }, { @@ -495553,6 +524026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495568,12 +524043,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -495601,6 +524077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495616,12 +524094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64281b" }, { @@ -495649,6 +524128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495664,12 +524145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -495700,6 +524182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495722,12 +524206,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -495754,6 +524239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495769,12 +524256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e44036" }, { @@ -495802,6 +524290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495817,12 +524307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbe20d" }, { @@ -495850,6 +524341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495865,12 +524358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b9792" }, { @@ -495898,6 +524392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495913,12 +524409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76139c" }, { @@ -495946,6 +524443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -495961,12 +524460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -495994,6 +524494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496009,12 +524511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c2f4a" } ], @@ -496045,6 +524548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496067,12 +524572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -496099,6 +524605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496114,12 +524622,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -496147,6 +524656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496162,12 +524673,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb0b3" }, { @@ -496195,6 +524707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496210,12 +524724,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -496243,6 +524758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496258,12 +524775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -496291,6 +524809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496306,12 +524826,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42d459" }, { @@ -496339,6 +524860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496354,12 +524877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -496390,6 +524914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496409,12 +524935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -496441,6 +524968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496456,12 +524985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "919fa0" }, { @@ -496489,6 +525019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496504,12 +525036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -496537,6 +525070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496552,12 +525087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b1dd5" } ], @@ -496588,6 +525124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496610,12 +525148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -496642,6 +525181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496657,12 +525198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d6b0f" }, { @@ -496690,6 +525232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496705,12 +525249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db1aee" }, { @@ -496738,6 +525283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496753,12 +525300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "851dc1" }, { @@ -496786,6 +525334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496801,12 +525351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8906a9" }, { @@ -496834,6 +525385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496849,12 +525402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -496882,6 +525436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496897,12 +525453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d91086" } ], @@ -496933,6 +525490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -496955,12 +525514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -496987,6 +525547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497002,12 +525564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb489f" }, { @@ -497035,6 +525598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497050,12 +525615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5da81c" }, { @@ -497083,6 +525649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497098,12 +525666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b2e99" }, { @@ -497131,6 +525700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497146,12 +525717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5bca1" }, { @@ -497179,6 +525751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497194,12 +525768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -497227,6 +525802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497242,12 +525819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -497278,6 +525856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497300,12 +525880,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -497332,6 +525913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497347,12 +525930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef7cab" }, { @@ -497380,6 +525964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497395,12 +525981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "651a9e" }, { @@ -497428,6 +526015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497443,12 +526032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c53c4a" }, { @@ -497476,6 +526066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497491,12 +526083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "077019" }, { @@ -497524,6 +526117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497539,12 +526134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -497572,6 +526168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497587,12 +526185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e80a5" } ], @@ -497623,6 +526222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497642,12 +526243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -497674,6 +526276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497689,12 +526293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f6d5c" }, { @@ -497722,6 +526327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497737,12 +526344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33870a" }, { @@ -497770,6 +526378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497785,12 +526395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -497821,6 +526432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497843,12 +526456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -497875,6 +526489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497890,12 +526506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ccfdd" }, { @@ -497923,6 +526540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497938,12 +526557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fac08" }, { @@ -497971,6 +526591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -497986,12 +526608,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4ebc7" }, { @@ -498019,6 +526642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498034,12 +526659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5296" }, { @@ -498067,6 +526693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498082,12 +526710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b74e5" }, { @@ -498115,6 +526744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498130,12 +526761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f5a02" } ], @@ -498166,6 +526798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498186,12 +526820,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -498218,6 +526853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498233,12 +526870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d32e4" }, { @@ -498266,6 +526904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498281,12 +526921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9349fd" }, { @@ -498314,6 +526955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498329,12 +526972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ae587" }, { @@ -498362,6 +527006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498377,12 +527023,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "459f5a" } ], @@ -498413,6 +527060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498435,12 +527084,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -498467,6 +527117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498482,12 +527134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e20141" }, { @@ -498515,6 +527168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498530,12 +527185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "522968" }, { @@ -498563,6 +527219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498578,12 +527236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bf1f8" }, { @@ -498611,6 +527270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498626,12 +527287,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" }, { @@ -498659,6 +527321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498674,12 +527338,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcaaad" }, { @@ -498707,6 +527372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498722,12 +527389,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" } ], @@ -498758,6 +527426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498780,12 +527450,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -498812,6 +527483,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498827,12 +527500,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c189a5" }, { @@ -498860,6 +527534,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498875,12 +527551,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74b258" }, { @@ -498908,6 +527585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498923,12 +527602,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce7b8" }, { @@ -498956,6 +527636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -498971,12 +527653,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40c629" }, { @@ -499004,6 +527687,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499019,12 +527704,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "006497" }, { @@ -499052,6 +527738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499067,12 +527755,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "068703" } ], @@ -499103,6 +527792,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499125,12 +527816,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -499157,6 +527849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499172,12 +527866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a6d8c" }, { @@ -499205,6 +527900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499220,12 +527917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6af6b" }, { @@ -499253,6 +527951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499268,12 +527968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -499301,6 +528002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499316,12 +528019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -499349,6 +528053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499364,12 +528070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afc45" }, { @@ -499397,6 +528104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499412,12 +528121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afc45" } ], @@ -499448,6 +528158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499467,12 +528179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -499499,6 +528212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499514,12 +528229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70009a" }, { @@ -499547,6 +528263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499562,12 +528280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c023fe" }, { @@ -499595,6 +528314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499610,12 +528331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c321d" } ], @@ -499646,6 +528368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499668,12 +528392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -499700,6 +528425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499715,12 +528442,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "837dc0" }, { @@ -499748,6 +528476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499763,12 +528493,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5a670" }, { @@ -499796,6 +528527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499811,12 +528544,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a13701" }, { @@ -499844,6 +528578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499859,12 +528595,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42b8dc" }, { @@ -499892,6 +528629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499907,12 +528646,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec66a0" }, { @@ -499940,6 +528680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -499955,12 +528697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bea40" } ], @@ -499991,6 +528734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500011,12 +528756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -500043,6 +528789,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500058,12 +528806,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60d096" }, { @@ -500091,6 +528840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500106,12 +528857,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e7c00" }, { @@ -500139,6 +528891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500154,12 +528908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b323c1" }, { @@ -500187,6 +528942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500202,12 +528959,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b323c1" } ], @@ -500238,6 +528996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500272,7 +529032,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "76": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -500280,7 +529041,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "89": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -500288,7 +529050,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "73": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/", @@ -500296,12 +529059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -500328,6 +529092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500343,12 +529109,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b1301" }, { @@ -500376,6 +529143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500391,12 +529160,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20972b" }, { @@ -500424,6 +529194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500439,12 +529211,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2281d8" }, { @@ -500472,6 +529245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500487,12 +529262,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67af79" }, { @@ -500520,6 +529296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500535,12 +529313,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00ae1b" }, { @@ -500568,6 +529347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500583,12 +529364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcc376" }, { @@ -500616,6 +529398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500631,12 +529415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81741e" }, { @@ -500664,6 +529449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500679,12 +529466,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e37396" }, { @@ -500712,6 +529500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500727,12 +529517,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "528887" }, { @@ -500760,6 +529551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500775,12 +529568,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fe6c7" }, { @@ -500808,6 +529602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500823,12 +529619,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db62d1" }, { @@ -500856,6 +529653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500871,12 +529670,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "551a7b" }, { @@ -500904,6 +529704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500919,12 +529721,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "891bde" }, { @@ -500952,6 +529755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -500967,12 +529772,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b796e" }, { @@ -501000,6 +529806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501015,12 +529823,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "259a79" }, { @@ -501048,6 +529857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501063,12 +529874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96ae32" }, { @@ -501096,6 +529908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501111,12 +529925,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "569b06" }, { @@ -501144,6 +529959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501159,12 +529976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e86419" } ], @@ -501195,6 +530013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501250,7 +530070,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2657": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -501258,7 +530079,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "75": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -501266,7 +530088,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2658": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -501274,7 +530097,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "53": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/", @@ -501282,7 +530106,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "54": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/", @@ -501290,7 +530115,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2659": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/", @@ -501298,7 +530124,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "56": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/", @@ -501306,7 +530133,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "66": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/", @@ -501314,7 +530142,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "67": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/", @@ -501322,7 +530151,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2660": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/", @@ -501330,12 +530160,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -501362,6 +530193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501377,12 +530210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79bc73" }, { @@ -501410,6 +530244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501425,12 +530261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "290595" }, { @@ -501458,6 +530295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501473,12 +530312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bddadf" }, { @@ -501506,6 +530346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501521,12 +530363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78cad4" }, { @@ -501554,6 +530397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501569,12 +530414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c297d" }, { @@ -501602,6 +530448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501617,12 +530465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "225198" }, { @@ -501650,6 +530499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501665,12 +530516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59477d" }, { @@ -501698,6 +530550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501713,12 +530567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3b19e" }, { @@ -501746,6 +530601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501761,12 +530618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1b747" }, { @@ -501794,6 +530652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501809,12 +530669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcd44f" }, { @@ -501842,6 +530703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501857,12 +530720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7fddb" }, { @@ -501890,6 +530754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501905,12 +530771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3621c" }, { @@ -501938,6 +530805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -501953,12 +530822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "005e92" }, { @@ -501986,6 +530856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502001,12 +530873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d5122" }, { @@ -502034,6 +530907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502049,12 +530924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9dfc0" }, { @@ -502082,6 +530958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502097,12 +530975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9dfc0" }, { @@ -502130,6 +531009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502145,12 +531026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd576f" }, { @@ -502178,6 +531060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502193,12 +531077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eba049" }, { @@ -502226,6 +531111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502241,12 +531128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74840a" }, { @@ -502274,6 +531162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502289,12 +531179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7b748" }, { @@ -502322,6 +531213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502337,12 +531230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37a76b" }, { @@ -502370,6 +531264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502385,12 +531281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "552a1d" }, { @@ -502418,6 +531315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502433,12 +531332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15983c" }, { @@ -502466,6 +531366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502481,12 +531383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26b322" }, { @@ -502514,6 +531417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502529,12 +531434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03b080" }, { @@ -502562,6 +531468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502577,12 +531485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c5ea8" }, { @@ -502610,6 +531519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502625,12 +531536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b7d4c" }, { @@ -502658,6 +531570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502673,12 +531587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab9d69" }, { @@ -502706,6 +531621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502721,12 +531638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5034e" }, { @@ -502754,6 +531672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502769,12 +531689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e103cf" }, { @@ -502802,6 +531723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502817,12 +531740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "499281" }, { @@ -502850,6 +531774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502865,12 +531791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab18a" }, { @@ -502898,6 +531825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502913,12 +531842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63f502" }, { @@ -502946,6 +531876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -502961,12 +531893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb968b" }, { @@ -502994,6 +531927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503009,12 +531944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "548a9a" }, { @@ -503042,6 +531978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503057,12 +531995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16c364" }, { @@ -503090,6 +532029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503105,12 +532046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef1ce2" }, { @@ -503138,6 +532080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503153,12 +532097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ea5ab" }, { @@ -503186,6 +532131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503201,12 +532148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d0d56" } ], @@ -503237,6 +532185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503308,7 +532258,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "39": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/", @@ -503316,7 +532267,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "40": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/", @@ -503324,7 +532276,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2346": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/", @@ -503332,7 +532285,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2345": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/", @@ -503340,7 +532294,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2343": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/", @@ -503348,7 +532303,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2344": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/", @@ -503356,7 +532312,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2342": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/", @@ -503364,12 +532321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -503396,6 +532354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503411,12 +532371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "916af7" }, { @@ -503444,6 +532405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503459,12 +532422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c3ec" }, { @@ -503492,6 +532456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503507,12 +532473,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "453252" }, { @@ -503540,6 +532507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503555,12 +532524,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4701c" }, { @@ -503588,6 +532558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503603,12 +532575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79e1a4" }, { @@ -503636,6 +532609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503651,12 +532626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "32a6e2" }, { @@ -503684,6 +532660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503699,12 +532677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4448e3" }, { @@ -503732,6 +532711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503747,12 +532728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "399d65" }, { @@ -503780,6 +532762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503795,12 +532779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "027b2f" }, { @@ -503828,6 +532813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503843,12 +532830,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe04b3" }, { @@ -503876,6 +532864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503891,12 +532881,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "10d41c" }, { @@ -503924,6 +532915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503939,12 +532932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97cc02" }, { @@ -503972,6 +532966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -503987,12 +532983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac4b72" }, { @@ -504020,6 +533017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504035,12 +533034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f3ad2" }, { @@ -504068,6 +533068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504083,12 +533085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f39f35" }, { @@ -504116,6 +533119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504131,12 +533136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "febff1" }, { @@ -504164,6 +533170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504179,12 +533187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c1bf" }, { @@ -504212,6 +533221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504227,12 +533238,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95047c" }, { @@ -504260,6 +533272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504275,12 +533289,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b39ab7" }, { @@ -504308,6 +533323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504323,12 +533340,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e89a0a" }, { @@ -504356,6 +533374,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504371,12 +533391,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "649527" }, { @@ -504404,6 +533425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504419,12 +533442,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f119dc" }, { @@ -504452,6 +533476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504467,12 +533493,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dbec9d" }, { @@ -504500,6 +533527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504515,12 +533544,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27fab1" }, { @@ -504548,6 +533578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504563,12 +533595,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "470ba8" }, { @@ -504596,6 +533629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504611,12 +533646,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b0f6c" }, { @@ -504644,6 +533680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504659,12 +533697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d3a26" }, { @@ -504692,6 +533731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504707,12 +533748,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3b3a9" }, { @@ -504740,6 +533782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504755,12 +533799,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "080d4a" }, { @@ -504788,6 +533833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504803,12 +533850,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f54e7" }, { @@ -504836,6 +533884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504851,12 +533901,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a42f33" }, { @@ -504884,6 +533935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504899,12 +533952,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e7f1b" }, { @@ -504932,6 +533986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504947,12 +534003,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44845f" }, { @@ -504980,6 +534037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -504995,12 +534054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "105277" }, { @@ -505028,6 +534088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505043,12 +534105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "659820" }, { @@ -505076,6 +534139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505091,12 +534156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a2381" }, { @@ -505124,6 +534190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505139,12 +534207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f64f68" }, { @@ -505172,6 +534241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505187,12 +534258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d6b52" }, { @@ -505220,6 +534292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505235,12 +534309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be4dc6" }, { @@ -505268,6 +534343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505283,12 +534360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "124288" }, { @@ -505316,6 +534394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505331,12 +534411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48d3db" }, { @@ -505364,6 +534445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505379,12 +534462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d6af5" }, { @@ -505412,6 +534496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505427,12 +534513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04cdf3" }, { @@ -505460,6 +534547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505475,12 +534564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4260f0" }, { @@ -505508,6 +534598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505523,12 +534615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f2498" }, { @@ -505556,6 +534649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505571,12 +534666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2d9d3" }, { @@ -505604,6 +534700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505619,12 +534717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb8aad" }, { @@ -505652,6 +534751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505667,12 +534768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0368c1" }, { @@ -505700,6 +534802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505715,12 +534819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2e0b7" }, { @@ -505748,6 +534853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505763,12 +534870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "519fb4" }, { @@ -505796,6 +534904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505811,12 +534921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f1d00" }, { @@ -505844,6 +534955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505859,12 +534972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "256302" }, { @@ -505892,6 +535006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505907,12 +535023,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2cc635" }, { @@ -505940,6 +535057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -505955,12 +535074,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63b723" }, { @@ -505988,6 +535108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506003,12 +535125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa7abc" } ], @@ -506039,6 +535162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506075,7 +535200,8 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "123": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/", @@ -506083,12 +535209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -506115,6 +535242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506130,12 +535259,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -506163,6 +535293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506178,12 +535310,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f26ea" }, { @@ -506211,6 +535344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506226,12 +535361,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -506259,6 +535395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506274,12 +535412,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -506307,6 +535446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506322,12 +535463,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -506355,6 +535497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506370,12 +535514,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -506403,6 +535548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506418,12 +535565,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5e76a" }, { @@ -506451,6 +535599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506466,12 +535616,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -506499,6 +535650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506514,12 +535667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b634cc" }, { @@ -506547,6 +535701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506562,12 +535718,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88055" }, { @@ -506595,6 +535752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506610,12 +535769,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5499a4" }, { @@ -506643,6 +535803,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506658,12 +535820,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dc445" }, { @@ -506691,6 +535854,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506706,12 +535871,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5b434" }, { @@ -506739,6 +535905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506754,12 +535922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b4513" }, { @@ -506787,6 +535956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506802,12 +535973,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "803008" }, { @@ -506835,6 +536007,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506850,12 +536024,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a0757" }, { @@ -506883,6 +536058,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506898,12 +536075,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53cf0a" }, { @@ -506931,6 +536109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506946,12 +536126,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33dafa" }, { @@ -506979,6 +536160,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -506994,12 +536177,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "107633" }, { @@ -507027,6 +536211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507042,12 +536228,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7d7cc" } ], @@ -507078,6 +536265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507107,7 +536296,8 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "123": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/", @@ -507115,12 +536305,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -507147,6 +536338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507162,12 +536355,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -507195,6 +536389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507210,12 +536406,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d50777" }, { @@ -507243,6 +536440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507258,12 +536457,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86ca2a" }, { @@ -507291,6 +536491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507306,12 +536508,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -507339,6 +536542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507354,12 +536559,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -507387,6 +536593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507402,12 +536610,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc2822" }, { @@ -507435,6 +536644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507450,12 +536661,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -507483,6 +536695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507498,12 +536712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38826f" }, { @@ -507531,6 +536746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507546,12 +536763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f6ed8" }, { @@ -507579,6 +536797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507594,12 +536814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc3569" }, { @@ -507627,6 +536848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507642,12 +536865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e2b9c" }, { @@ -507675,6 +536899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507690,12 +536916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d52dd" }, { @@ -507723,6 +536950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507738,12 +536967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce775" } ], @@ -507774,6 +537004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507837,7 +537069,8 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "123": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/", @@ -507845,12 +537078,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -507877,6 +537111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507892,12 +537128,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bf255" }, { @@ -507925,6 +537162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507940,12 +537179,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2927c6" }, { @@ -507973,6 +537213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -507988,12 +537230,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -508021,6 +537264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508036,12 +537281,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -508069,6 +537315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508084,12 +537332,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b2c36" }, { @@ -508117,6 +537366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508132,12 +537383,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc896" }, { @@ -508165,6 +537417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508180,12 +537434,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -508213,6 +537468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508228,12 +537485,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa340" }, { @@ -508261,6 +537519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508276,12 +537536,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0872f7" }, { @@ -508309,6 +537570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508324,12 +537587,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -508357,6 +537621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508372,12 +537638,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47bd50" }, { @@ -508405,6 +537672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508420,12 +537689,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -508453,6 +537723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508468,12 +537740,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf90c6" }, { @@ -508501,6 +537774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508516,12 +537791,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -508549,6 +537825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508564,12 +537842,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e15d" }, { @@ -508597,6 +537876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508612,12 +537893,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -508645,6 +537927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508660,12 +537944,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -508693,6 +537978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508708,12 +537995,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774f5f" }, { @@ -508741,6 +538029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508756,12 +538046,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -508789,6 +538080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508804,12 +538097,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d18a7d" }, { @@ -508837,6 +538131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508852,12 +538148,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a1943" }, { @@ -508885,6 +538182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508900,12 +538199,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -508933,6 +538233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508948,12 +538250,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598744" }, { @@ -508981,6 +538284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -508996,12 +538301,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -509029,6 +538335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509044,12 +538352,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -509077,6 +538386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509092,12 +538403,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7399a5" }, { @@ -509125,6 +538437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509140,12 +538454,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -509173,6 +538488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509188,12 +538505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774c0b" }, { @@ -509221,6 +538539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509236,12 +538556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d4c1e" }, { @@ -509269,6 +538590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509284,12 +538607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76a7f5" }, { @@ -509317,6 +538641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509332,12 +538658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "839314" }, { @@ -509365,6 +538692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509380,12 +538709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "945939" }, { @@ -509413,6 +538743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509428,12 +538760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "323435" }, { @@ -509461,6 +538794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509476,12 +538811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5eb4c2" }, { @@ -509509,6 +538845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509524,12 +538862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d13692" }, { @@ -509557,6 +538896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509572,12 +538913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c7570" }, { @@ -509605,6 +538947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509620,12 +538964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa6ad6" }, { @@ -509653,6 +538998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509668,12 +539015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ce8bf" }, { @@ -509701,6 +539049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509716,12 +539066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fcb18" }, { @@ -509749,6 +539100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509764,12 +539117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f97fe2" }, { @@ -509797,6 +539151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509812,12 +539168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "119a43" }, { @@ -509845,6 +539202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509860,12 +539219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c450f" }, { @@ -509893,6 +539253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509908,12 +539270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d3634" }, { @@ -509941,6 +539304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -509956,12 +539321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02cc53" }, { @@ -509989,6 +539355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510004,12 +539372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae9723" }, { @@ -510037,6 +539406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510052,12 +539423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c30682" }, { @@ -510085,6 +539457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510100,12 +539474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c69095" } ], @@ -510136,6 +539511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510158,12 +539535,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -510190,6 +539568,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510205,12 +539585,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9d9d7" }, { @@ -510238,6 +539619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510253,12 +539636,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "915fda" }, { @@ -510286,6 +539670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510301,12 +539687,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fba81e" }, { @@ -510334,6 +539721,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510349,12 +539738,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72726a" }, { @@ -510382,6 +539772,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510397,12 +539789,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d9573" }, { @@ -510430,6 +539823,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510445,12 +539840,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e97907" } ], @@ -510481,6 +539877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510530,12 +539928,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -510562,6 +539961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510577,12 +539978,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "401b98" }, { @@ -510610,6 +540012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510625,12 +540029,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90dfd" }, { @@ -510658,6 +540063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510673,12 +540080,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4f1ac" }, { @@ -510706,6 +540114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510721,12 +540131,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cf015" }, { @@ -510754,6 +540165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510769,12 +540182,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c118b2" }, { @@ -510802,6 +540216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510817,12 +540233,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c67a9" }, { @@ -510850,6 +540267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510865,12 +540284,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9283d5" }, { @@ -510898,6 +540318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510913,12 +540335,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3ee15" }, { @@ -510946,6 +540369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -510961,12 +540386,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7eda6c" }, { @@ -510994,6 +540420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511009,12 +540437,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "500bf1" }, { @@ -511042,6 +540471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511057,12 +540488,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7330f5" }, { @@ -511090,6 +540522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511105,12 +540539,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f2bda" }, { @@ -511138,6 +540573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511153,12 +540590,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fde12" }, { @@ -511186,6 +540624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511201,12 +540641,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ade6e9" }, { @@ -511234,6 +540675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511249,12 +540692,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "563177" }, { @@ -511282,6 +540726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511297,12 +540743,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cbc9d" }, { @@ -511330,6 +540777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511345,12 +540794,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a03b8" }, { @@ -511378,6 +540828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511393,12 +540845,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "676e6a" }, { @@ -511426,6 +540879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511441,12 +540896,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c2807" }, { @@ -511474,6 +540930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511489,12 +540947,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8948ac" }, { @@ -511522,6 +540981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511537,12 +540998,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f210df" }, { @@ -511570,6 +541032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511585,12 +541049,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc639e" }, { @@ -511618,6 +541083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511633,12 +541100,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4dd7a" }, { @@ -511666,6 +541134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511681,12 +541151,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d113d1" }, { @@ -511714,6 +541185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511729,12 +541202,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "173e8a" }, { @@ -511762,6 +541236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511777,12 +541253,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5e2f5" }, { @@ -511810,6 +541287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511825,12 +541304,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb6b7a" }, { @@ -511858,6 +541338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511873,12 +541355,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dd75b" }, { @@ -511906,6 +541389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511921,12 +541406,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46ecbb" }, { @@ -511954,6 +541440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -511969,12 +541457,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8bc37" }, { @@ -512002,6 +541491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512017,12 +541508,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ea1c7" }, { @@ -512050,6 +541542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512065,12 +541559,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8187f" }, { @@ -512098,6 +541593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512113,12 +541610,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41f836" } ], @@ -512149,6 +541647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512167,12 +541667,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -512199,6 +541700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512214,12 +541717,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf96b9" }, { @@ -512247,6 +541751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512262,12 +541768,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc674e" } ], @@ -512298,6 +541805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512316,12 +541825,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -512348,6 +541858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512363,12 +541875,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ce113" }, { @@ -512396,6 +541909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512411,12 +541926,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfb393" } ], @@ -512447,6 +541963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512479,7 +541997,8 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2664": { "FaceURL": "https://i.imgur.com/HLQOkvy.jpg", @@ -512487,7 +542006,8 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2665": { "FaceURL": "https://i.imgur.com/FFxz16e.jpg", @@ -512495,12 +542015,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -512527,6 +542048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512542,12 +542065,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef54c7" }, { @@ -512575,6 +542099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512590,12 +542116,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0aae5d" }, { @@ -512623,6 +542150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512638,12 +542167,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60018e" }, { @@ -512671,6 +542201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512686,12 +542218,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a91c0" }, { @@ -512719,6 +542252,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512734,12 +542269,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdbf89" }, { @@ -512767,6 +542303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512782,12 +542320,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1484da" }, { @@ -512815,6 +542354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512830,12 +542371,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c32ef" }, { @@ -512863,6 +542405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512878,12 +542422,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "768755" }, { @@ -512911,6 +542456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512926,12 +542473,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17e165" }, { @@ -512959,6 +542507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -512974,12 +542524,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8ae8" }, { @@ -513007,6 +542558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513022,12 +542575,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19bf4f" }, { @@ -513055,6 +542609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513070,12 +542626,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93dd4c" }, { @@ -513103,6 +542660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513118,12 +542677,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "158b35" }, { @@ -513151,6 +542711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513166,12 +542728,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c715c9" }, { @@ -513199,6 +542762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513214,12 +542779,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "023684" }, { @@ -513247,6 +542813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513262,12 +542830,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05b7a2" } ], @@ -513298,6 +542867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513331,7 +542902,8 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2662": { "FaceURL": "https://i.imgur.com/CN9PXUd.jpg", @@ -513339,12 +542911,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -513371,6 +542944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513386,12 +542961,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4212af" }, { @@ -513419,6 +542995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513434,12 +543012,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a63585" }, { @@ -513467,6 +543046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513482,12 +543063,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec101c" }, { @@ -513515,6 +543097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513530,12 +543114,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c64bf1" }, { @@ -513563,6 +543148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513578,12 +543165,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c26998" }, { @@ -513611,6 +543199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513626,12 +543216,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e0c5a" }, { @@ -513659,6 +543250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513674,12 +543267,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ead562" }, { @@ -513707,6 +543301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513722,12 +543318,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "893ca0" }, { @@ -513755,6 +543352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513770,12 +543369,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb63e7" }, { @@ -513803,6 +543403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513818,12 +543420,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2de0e" }, { @@ -513851,6 +543454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513866,12 +543471,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e1b71" }, { @@ -513899,6 +543505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513914,12 +543522,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c9c6b" }, { @@ -513947,6 +543556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -513962,12 +543573,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f21c4" }, { @@ -513995,6 +543607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514010,12 +543624,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35de51" }, { @@ -514043,6 +543658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514058,12 +543675,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ebdb5" }, { @@ -514091,6 +543709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514106,12 +543726,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86be88" }, { @@ -514139,6 +543760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514154,12 +543777,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1ba64" } ], @@ -514190,6 +543814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514250,12 +543876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -514282,6 +543909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514297,12 +543926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bed6a" }, { @@ -514330,6 +543960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514345,12 +543977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bed6a" }, { @@ -514378,6 +544011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514393,12 +544028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31e37e" }, { @@ -514426,6 +544062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514441,12 +544079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bed6a" }, { @@ -514474,6 +544113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514489,12 +544130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41e5c9" }, { @@ -514522,6 +544164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514537,12 +544181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dedf7d" }, { @@ -514570,6 +544215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514585,12 +544232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "470d38" }, { @@ -514618,6 +544266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514633,12 +544283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8f268" }, { @@ -514666,6 +544317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514681,12 +544334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66f462" }, { @@ -514714,6 +544368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514729,12 +544385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dea5d3" }, { @@ -514762,6 +544419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514777,12 +544436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e32948" }, { @@ -514810,6 +544470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514825,12 +544487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "470a03" }, { @@ -514858,6 +544521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514873,12 +544538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "621078" }, { @@ -514906,6 +544572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514921,12 +544589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9b607" }, { @@ -514954,6 +544623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -514969,12 +544640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7faab" }, { @@ -515002,6 +544674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515017,12 +544691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "312d52" }, { @@ -515050,6 +544725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515065,12 +544742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0b1bb" }, { @@ -515098,6 +544776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515113,12 +544793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff0f15" }, { @@ -515146,6 +544827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515161,12 +544844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6edac" }, { @@ -515194,6 +544878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515209,12 +544895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fcf87" }, { @@ -515242,6 +544929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515257,12 +544946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b35444" }, { @@ -515290,6 +544980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515305,12 +544997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8399dd" }, { @@ -515338,6 +545031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515353,12 +545048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18494c" }, { @@ -515386,6 +545082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515401,12 +545099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b80a66" }, { @@ -515434,6 +545133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515449,12 +545150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2566f1" }, { @@ -515482,6 +545184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515497,12 +545201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bef41" }, { @@ -515530,6 +545235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515545,12 +545252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "896e92" }, { @@ -515578,6 +545286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515593,12 +545303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "121209" }, { @@ -515626,6 +545337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515641,12 +545354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20f554" }, { @@ -515674,6 +545388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515689,12 +545405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed1363" }, { @@ -515722,6 +545439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515737,12 +545456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dc722" }, { @@ -515770,6 +545490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515785,12 +545507,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fa9e0" }, { @@ -515818,6 +545541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515833,12 +545558,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4440de" }, { @@ -515866,6 +545592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515881,12 +545609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f68fb" }, { @@ -515914,6 +545643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515929,12 +545660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26dd46" }, { @@ -515962,6 +545694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -515977,12 +545711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "707456" }, { @@ -516010,6 +545745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516025,12 +545762,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc553a" }, { @@ -516058,6 +545796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516073,12 +545813,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "caba36" }, { @@ -516106,6 +545847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516121,12 +545864,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "794903" }, { @@ -516154,6 +545898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516169,12 +545915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "10c564" }, { @@ -516202,6 +545949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516217,12 +545966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef8642" }, { @@ -516250,6 +546000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516265,12 +546017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d1eec" }, { @@ -516298,6 +546051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516313,12 +546068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7347f2" }, { @@ -516346,6 +546102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516361,12 +546119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9b3c5" } ], @@ -516397,6 +546156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516426,12 +546187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -516458,6 +546220,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516473,12 +546237,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d682c" }, { @@ -516506,6 +546271,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516521,12 +546288,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe6b01" }, { @@ -516554,6 +546322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516569,12 +546339,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "763f2b" }, { @@ -516602,6 +546373,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516617,12 +546390,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9989f2" }, { @@ -516650,6 +546424,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516665,12 +546441,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85007f" }, { @@ -516698,6 +546475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516713,12 +546492,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af5d2c" }, { @@ -516746,6 +546526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516761,12 +546543,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "894376" }, { @@ -516794,6 +546577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516809,12 +546594,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0673f6" }, { @@ -516842,6 +546628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516857,12 +546645,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b73a5" }, { @@ -516890,6 +546679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516905,12 +546696,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "178da9" }, { @@ -516938,6 +546730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -516953,12 +546747,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e2e37" }, { @@ -516986,6 +546781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517001,12 +546798,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61410b" }, { @@ -517034,6 +546832,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517049,12 +546849,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1893f1" } ], @@ -517085,6 +546886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517114,12 +546917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -517146,6 +546950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517161,12 +546967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c278f" }, { @@ -517194,6 +547001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517209,12 +547018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "198394" }, { @@ -517242,6 +547052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517257,12 +547069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cfc06" }, { @@ -517290,6 +547103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517305,12 +547120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d00ab9" }, { @@ -517338,6 +547154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517353,12 +547171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f759d9" }, { @@ -517386,6 +547205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517401,12 +547222,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f68247" }, { @@ -517434,6 +547256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517449,12 +547273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5cee7" }, { @@ -517482,6 +547307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517497,12 +547324,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7216f5" }, { @@ -517530,6 +547358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517545,12 +547375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a0365" }, { @@ -517578,6 +547409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517593,12 +547426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2927d8" }, { @@ -517626,6 +547460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517641,12 +547477,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89e433" }, { @@ -517674,6 +547511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517689,12 +547528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bbb1e" }, { @@ -517722,6 +547562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517737,12 +547579,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d3b97" } ], @@ -517773,6 +547616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517824,12 +547669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -517856,6 +547702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517871,12 +547719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1206b" }, { @@ -517904,6 +547753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517919,12 +547770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "766633" }, { @@ -517952,6 +547804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -517967,12 +547821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be7bde" }, { @@ -518000,6 +547855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518015,12 +547872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d4479" }, { @@ -518048,6 +547906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518063,12 +547923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4f8c3" }, { @@ -518096,6 +547957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518111,12 +547974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e75e4c" }, { @@ -518144,6 +548008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518159,12 +548025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "082086" }, { @@ -518192,6 +548059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518207,12 +548076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "919da4" }, { @@ -518240,6 +548110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518255,12 +548127,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "646c0e" }, { @@ -518288,6 +548161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518303,12 +548178,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1b639" }, { @@ -518336,6 +548212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518351,12 +548229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e4387" }, { @@ -518384,6 +548263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518399,12 +548280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae8867" }, { @@ -518432,6 +548314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518447,12 +548331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd44d1" }, { @@ -518480,6 +548365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518495,12 +548382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50b857" }, { @@ -518528,6 +548416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518543,12 +548433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "085f52" }, { @@ -518576,6 +548467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518591,12 +548484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2de72d" }, { @@ -518624,6 +548518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518639,12 +548535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1be04" }, { @@ -518672,6 +548569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518687,12 +548586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b12cf" }, { @@ -518720,6 +548620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518735,12 +548637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f639f9" }, { @@ -518768,6 +548671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518783,12 +548688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0bede" }, { @@ -518816,6 +548722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518831,12 +548739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d59e1" }, { @@ -518864,6 +548773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518879,12 +548790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef24b4" }, { @@ -518912,6 +548824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518927,12 +548841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c870e9" }, { @@ -518960,6 +548875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -518975,12 +548892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cc0b2" }, { @@ -519008,6 +548926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519023,12 +548943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c8131" }, { @@ -519056,6 +548977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519071,12 +548994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4e4d3" }, { @@ -519104,6 +549028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519119,12 +549045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7ca01" }, { @@ -519152,6 +549079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519167,12 +549096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34eda1" }, { @@ -519200,6 +549130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519215,12 +549147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eefdee" }, { @@ -519248,6 +549181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519263,12 +549198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05dbc3" }, { @@ -519296,6 +549232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519311,12 +549249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd6405" }, { @@ -519344,6 +549283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519359,12 +549300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2af87" }, { @@ -519392,6 +549334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519407,12 +549351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7275cb" }, { @@ -519440,6 +549385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519455,12 +549402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381f6" }, { @@ -519488,6 +549436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519503,12 +549453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56b578" } ], @@ -519539,6 +549490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519595,12 +549548,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -519627,6 +549581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519642,12 +549598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "891282" }, { @@ -519675,6 +549632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519690,12 +549649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6cd01" }, { @@ -519723,6 +549683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519738,12 +549700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6e2b8" }, { @@ -519771,6 +549734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519786,12 +549751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "776222" }, { @@ -519819,6 +549785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519834,12 +549802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e417e8" }, { @@ -519867,6 +549836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519882,12 +549853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd17ff" }, { @@ -519915,6 +549887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519930,12 +549904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e24635" }, { @@ -519963,6 +549938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -519978,12 +549955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d1b30" }, { @@ -520011,6 +549989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520026,12 +550006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af5c41" }, { @@ -520059,6 +550040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520074,12 +550057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c92d8" }, { @@ -520107,6 +550091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520122,12 +550108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbfaec" }, { @@ -520155,6 +550142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520170,12 +550159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1568bc" }, { @@ -520203,6 +550193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520218,12 +550210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d27333" }, { @@ -520251,6 +550244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520266,12 +550261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "054826" }, { @@ -520299,6 +550295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520314,12 +550312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8b7a2" }, { @@ -520347,6 +550346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520362,12 +550363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a31dd" }, { @@ -520395,6 +550397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520410,12 +550414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "926c99" }, { @@ -520443,6 +550448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520458,12 +550465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f9aaf" }, { @@ -520491,6 +550499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520506,12 +550516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3757b7" }, { @@ -520539,6 +550550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520554,12 +550567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "28ebe1" }, { @@ -520587,6 +550601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520602,12 +550618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c21ad7" }, { @@ -520635,6 +550652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520650,12 +550669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14f8f1" }, { @@ -520683,6 +550703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520698,12 +550720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21cd56" }, { @@ -520731,6 +550754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520746,12 +550771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1588b6" }, { @@ -520779,6 +550805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520794,12 +550822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7edfb0" }, { @@ -520827,6 +550856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520842,12 +550873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34409b" }, { @@ -520875,6 +550907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520890,12 +550924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e59778" }, { @@ -520923,6 +550958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520938,12 +550975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ee0f0" }, { @@ -520971,6 +551009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -520986,12 +551026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a69973" }, { @@ -521019,6 +551060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521034,12 +551077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "adcbb0" }, { @@ -521067,6 +551111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521082,12 +551128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7b446" }, { @@ -521115,6 +551162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521130,12 +551179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "586028" }, { @@ -521163,6 +551213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521178,12 +551230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ffd6d" }, { @@ -521211,6 +551264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521226,12 +551281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "029812" }, { @@ -521259,6 +551315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521274,12 +551332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6d241" }, { @@ -521307,6 +551366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521322,12 +551383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2806c" }, { @@ -521355,6 +551417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521370,12 +551434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35fe2f" }, { @@ -521403,6 +551468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521418,12 +551485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3d027" }, { @@ -521451,6 +551519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521466,12 +551536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0dc453" }, { @@ -521499,6 +551570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521514,12 +551587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c4c60" } ], @@ -521550,6 +551624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521577,7 +551653,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "1298": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/", @@ -521585,12 +551662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -521617,6 +551695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521632,12 +551712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17871b" }, { @@ -521665,6 +551746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521680,12 +551763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73d855" }, { @@ -521713,6 +551797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521728,12 +551814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b9dbf" }, { @@ -521761,6 +551848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521776,12 +551865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ada4f" }, { @@ -521809,6 +551899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521824,12 +551916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "54ef29" }, { @@ -521857,6 +551950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521872,12 +551967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79390e" }, { @@ -521905,6 +552001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521920,12 +552018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "487d1f" }, { @@ -521953,6 +552052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -521968,12 +552069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b77109" }, { @@ -522001,6 +552103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522016,12 +552120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a2bf1" }, { @@ -522049,6 +552154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522064,12 +552171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f7d9a" }, { @@ -522097,6 +552205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522112,12 +552222,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f1614" } ], @@ -522148,6 +552259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522179,12 +552292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -522211,6 +552325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522226,12 +552342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2be806" }, { @@ -522259,6 +552376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522274,12 +552393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43dc89" }, { @@ -522307,6 +552427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522322,12 +552444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbe6e8" }, { @@ -522355,6 +552478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522370,12 +552495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70904c" }, { @@ -522403,6 +552529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522418,12 +552546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da2655" }, { @@ -522451,6 +552580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522466,12 +552597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58bf8d" }, { @@ -522499,6 +552631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522514,12 +552648,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6b3fc" }, { @@ -522547,6 +552682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522562,12 +552699,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df4a7" }, { @@ -522595,6 +552733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522610,12 +552750,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5f222" }, { @@ -522643,6 +552784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522658,12 +552801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89593e" }, { @@ -522691,6 +552835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522706,12 +552852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a9acd" }, { @@ -522739,6 +552886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522754,12 +552903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87937f" }, { @@ -522787,6 +552937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522802,12 +552954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5a713" }, { @@ -522835,6 +552988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522850,12 +553005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2376d1" }, { @@ -522883,6 +553039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522898,12 +553056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "964bf2" } ], @@ -522934,6 +553093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -522986,12 +553147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -523018,6 +553180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523033,12 +553197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22aed2" }, { @@ -523066,6 +553231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523081,12 +553248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1461d8" }, { @@ -523114,6 +553282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523129,12 +553299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93c195" }, { @@ -523162,6 +553333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523177,12 +553350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "677b10" }, { @@ -523210,6 +553384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523225,12 +553401,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03fa5a" }, { @@ -523258,6 +553435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523273,12 +553452,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "71244a" }, { @@ -523306,6 +553486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523321,12 +553503,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fee93" }, { @@ -523354,6 +553537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523369,12 +553554,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ce1b4" }, { @@ -523402,6 +553588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523417,12 +553605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e64c28" }, { @@ -523450,6 +553639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523465,12 +553656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "737ecd" }, { @@ -523498,6 +553690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523513,12 +553707,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18f1d9" }, { @@ -523546,6 +553741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523561,12 +553758,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72603b" }, { @@ -523594,6 +553792,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523609,12 +553809,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a2616" }, { @@ -523642,6 +553843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523657,12 +553860,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11e31d" }, { @@ -523690,6 +553894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523705,12 +553911,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3a79d" }, { @@ -523738,6 +553945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523753,12 +553962,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72cf4d" }, { @@ -523786,6 +553996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523801,12 +554013,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cec33" }, { @@ -523834,6 +554047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523849,12 +554064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5d586" }, { @@ -523882,6 +554098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523897,12 +554115,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd7bd2" }, { @@ -523930,6 +554149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523945,12 +554166,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8d52b" }, { @@ -523978,6 +554200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -523993,12 +554217,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c097d8" }, { @@ -524026,6 +554251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524041,12 +554268,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a17423" }, { @@ -524074,6 +554302,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524089,12 +554319,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3c531" }, { @@ -524122,6 +554353,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524137,12 +554370,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f06df7" }, { @@ -524170,6 +554404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524185,12 +554421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bfd8f6" }, { @@ -524218,6 +554455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524233,12 +554472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4a174" }, { @@ -524266,6 +554506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524281,12 +554523,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fce07" }, { @@ -524314,6 +554557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524329,12 +554574,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67b662" }, { @@ -524362,6 +554608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524377,12 +554625,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c26773" }, { @@ -524410,6 +554659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524425,12 +554676,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d43edb" }, { @@ -524458,6 +554710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524473,12 +554727,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdadde" }, { @@ -524506,6 +554761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524521,12 +554778,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f3fa1" }, { @@ -524554,6 +554812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524569,12 +554829,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a92fa6" }, { @@ -524602,6 +554863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524617,12 +554880,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c988f8" }, { @@ -524650,6 +554914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524665,12 +554931,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e6717" }, { @@ -524698,6 +554965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524713,12 +554982,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd8c43" } ], @@ -524749,6 +555019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524773,12 +555045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -524805,6 +555078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524820,12 +555095,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05d368" }, { @@ -524853,6 +555129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524868,12 +555146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98a6eb" }, { @@ -524901,6 +555180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524916,12 +555197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "679548" }, { @@ -524949,6 +555231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -524964,12 +555248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58ab68" }, { @@ -524997,6 +555282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525012,12 +555299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab80bf" }, { @@ -525045,6 +555333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525060,12 +555350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab80bf" }, { @@ -525093,6 +555384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525108,12 +555401,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97335d" }, { @@ -525141,6 +555435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525156,12 +555452,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f1f3c" } ], @@ -525192,6 +555489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525215,12 +555514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -525247,6 +555547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525262,12 +555564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7978f" }, { @@ -525295,6 +555598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525310,12 +555615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d217a" }, { @@ -525343,6 +555649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525358,12 +555666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16ec42" }, { @@ -525391,6 +555700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525406,12 +555717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dd1d9" }, { @@ -525439,6 +555751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525454,12 +555768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0cb5" }, { @@ -525487,6 +555802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525502,12 +555819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fbcc6" }, { @@ -525535,6 +555853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525550,12 +555870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7fd35" } ], @@ -525586,6 +555907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525638,7 +555961,8 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2604": { "FaceURL": "https://i.imgur.com/4vUPeDS.jpg", @@ -525646,7 +555970,8 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2601": { "FaceURL": "https://i.imgur.com/Kw5u56P.jpg", @@ -525654,7 +555979,8 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2653": { "FaceURL": "https://i.imgur.com/Kw5u56P.jpg", @@ -525662,12 +555988,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -525694,6 +556021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525709,12 +556038,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ff610" }, { @@ -525742,6 +556072,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525757,12 +556089,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d2583" }, { @@ -525790,6 +556123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525805,12 +556140,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bcc344" }, { @@ -525838,6 +556174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525853,12 +556191,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9445f" }, { @@ -525886,6 +556225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525901,12 +556242,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35d4c5" }, { @@ -525934,6 +556276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525949,12 +556293,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9445f" }, { @@ -525982,6 +556327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -525997,12 +556344,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbb723" }, { @@ -526030,6 +556378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526045,12 +556395,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abd75a" }, { @@ -526078,6 +556429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526093,12 +556446,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46f30b" }, { @@ -526126,6 +556480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526141,12 +556497,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bb510" }, { @@ -526174,6 +556531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526189,12 +556548,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4dfc1c" }, { @@ -526222,6 +556582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526237,12 +556599,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc5c21" }, { @@ -526270,6 +556633,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526285,12 +556650,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eeff54" }, { @@ -526318,6 +556684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526333,12 +556701,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "512f93" }, { @@ -526366,6 +556735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526381,12 +556752,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "353475" }, { @@ -526414,6 +556786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526429,12 +556803,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b6d9c" }, { @@ -526462,6 +556837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526477,12 +556854,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e6245" }, { @@ -526510,6 +556888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526525,12 +556905,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "555dff" }, { @@ -526558,6 +556939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526573,12 +556956,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6d845" }, { @@ -526606,6 +556990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526621,12 +557007,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbfc9c" }, { @@ -526654,6 +557041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526669,12 +557058,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59695a" }, { @@ -526702,6 +557092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526717,12 +557109,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "623fb1" }, { @@ -526750,6 +557143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526765,12 +557160,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5db6b7" }, { @@ -526798,6 +557194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526813,12 +557211,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f1430" }, { @@ -526846,6 +557245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526861,12 +557262,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7727b0" }, { @@ -526894,6 +557296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526909,12 +557313,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "594b02" }, { @@ -526942,6 +557347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -526957,12 +557364,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89f177" }, { @@ -526990,6 +557398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527005,12 +557415,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f2934" }, { @@ -527038,6 +557449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527053,12 +557466,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebb16e" }, { @@ -527086,6 +557500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527101,12 +557517,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "716efa" }, { @@ -527134,6 +557551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527149,12 +557568,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0369d" }, { @@ -527182,6 +557602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527197,12 +557619,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f17c8" }, { @@ -527230,6 +557653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527245,12 +557670,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bc8a2" }, { @@ -527278,6 +557704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527293,12 +557721,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b22648" }, { @@ -527326,6 +557755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527341,12 +557772,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49a6b7" }, { @@ -527374,6 +557806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527389,12 +557823,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c631d" } ], @@ -527425,6 +557860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527445,7 +557882,8 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2601": { "FaceURL": "https://i.imgur.com/Kw5u56P.jpg", @@ -527453,12 +557891,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -527485,6 +557924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527500,12 +557941,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d207f8" }, { @@ -527533,6 +557975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527548,12 +557992,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae522c" }, { @@ -527581,6 +558026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527596,12 +558043,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3065a4" }, { @@ -527629,6 +558077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527644,12 +558094,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac5f51" } ], @@ -527680,6 +558131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527701,12 +558154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -527733,6 +558187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527748,12 +558204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3dc03" }, { @@ -527781,6 +558238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527796,12 +558255,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c092e1" }, { @@ -527829,6 +558289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527844,12 +558306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a4bf1" }, { @@ -527877,6 +558340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527892,12 +558357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc2fb1" }, { @@ -527925,6 +558391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527940,12 +558408,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a4c6c" } ], @@ -527976,6 +558445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -527997,12 +558468,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -528029,6 +558501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528044,12 +558518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c3d58" }, { @@ -528077,6 +558552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528092,12 +558569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ae819" }, { @@ -528125,6 +558603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528140,12 +558620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29e1ba" }, { @@ -528173,6 +558654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528188,12 +558671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51ea78" }, { @@ -528221,6 +558705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528236,12 +558722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2f948" } ], @@ -528272,6 +558759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528293,12 +558782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -528325,6 +558815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528340,12 +558832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a04f16" }, { @@ -528373,6 +558866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528388,12 +558883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9542e8" }, { @@ -528421,6 +558917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528436,12 +558934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "660874" }, { @@ -528469,6 +558968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528484,12 +558985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58402d" }, { @@ -528517,6 +559019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528532,12 +559036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b107c" } ], @@ -528568,6 +559073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528588,7 +559095,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2343": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -528596,12 +559104,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -528628,6 +559137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528643,12 +559154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4b9d3" }, { @@ -528676,6 +559188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528691,12 +559205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a02c" }, { @@ -528724,6 +559239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528739,12 +559256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "571733" }, { @@ -528772,6 +559290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528787,12 +559307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ff419" } ], @@ -528823,6 +559344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528845,12 +559368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -528877,6 +559401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528892,12 +559418,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b28aa" }, { @@ -528925,6 +559452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528940,12 +559469,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -528973,6 +559503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -528988,12 +559520,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "906ef2" }, { @@ -529021,6 +559554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529036,12 +559571,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61dec3" }, { @@ -529069,6 +559605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529084,12 +559622,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a7539" }, { @@ -529117,6 +559656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529132,12 +559673,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ef7c7" } ], @@ -529168,6 +559710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529189,7 +559733,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2342": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -529197,12 +559742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -529229,6 +559775,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529244,12 +559792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "632986" }, { @@ -529277,6 +559826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529292,12 +559843,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e5f0a" }, { @@ -529325,6 +559877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529340,12 +559894,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8b917" }, { @@ -529373,6 +559928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529388,12 +559945,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7d6b8" }, { @@ -529421,6 +559979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529436,12 +559996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5b1e" } ], @@ -529472,6 +560033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529494,12 +560057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -529526,6 +560090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529541,12 +560107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6a48e" }, { @@ -529574,6 +560141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529589,12 +560158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -529622,6 +560192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529637,12 +560209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89f4f6" }, { @@ -529670,6 +560243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529685,12 +560260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04e5d3" }, { @@ -529718,6 +560294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529733,12 +560311,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f4f54" }, { @@ -529766,6 +560345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529781,12 +560362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62cc1f" } ], @@ -529817,6 +560399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529839,7 +560423,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2343": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -529847,12 +560432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -529879,6 +560465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529894,12 +560482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3fe44" }, { @@ -529927,6 +560516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529942,12 +560533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8e72f" }, { @@ -529975,6 +560567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -529990,12 +560584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f5327" }, { @@ -530023,6 +560618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530038,12 +560635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34788c" }, { @@ -530071,6 +560669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530086,12 +560686,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4f854" }, { @@ -530119,6 +560720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530134,12 +560737,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8fef" } ], @@ -530170,6 +560774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530197,7 +560803,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2342": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -530205,7 +560812,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "123": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -530213,7 +560821,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "1299": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/", @@ -530221,12 +560830,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -530253,6 +560863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530268,12 +560880,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ecad5" }, { @@ -530301,6 +560914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530316,12 +560931,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53458a" }, { @@ -530349,6 +560965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530364,12 +560982,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfda2a" }, { @@ -530397,6 +561016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530412,12 +561033,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1873c" }, { @@ -530445,6 +561067,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530460,12 +561084,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15b776" }, { @@ -530493,6 +561118,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530508,12 +561135,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9eb622" }, { @@ -530541,6 +561169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530556,12 +561186,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ec75c" }, { @@ -530589,6 +561220,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530604,12 +561237,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4df1b" }, { @@ -530637,6 +561271,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530652,12 +561288,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "227273" }, { @@ -530685,6 +561322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530700,12 +561339,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "746983" }, { @@ -530733,6 +561373,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530748,12 +561390,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b9b1a" } ], @@ -530784,6 +561427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530807,7 +561452,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2343": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -530815,12 +561461,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -530847,6 +561494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530862,12 +561511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ec414" }, { @@ -530895,6 +561545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530910,12 +561562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa161c" }, { @@ -530943,6 +561596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -530958,12 +561613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "180783" }, { @@ -530991,6 +561647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531006,12 +561664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "266843" }, { @@ -531039,6 +561698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531054,12 +561715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f460e3" }, { @@ -531087,6 +561749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531102,12 +561766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f8db4" }, { @@ -531135,6 +561800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531150,12 +561817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "062575" } ], @@ -531186,6 +561854,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531218,7 +561888,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "34": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642393244/74ADDF83D8B03DBF4AD5DC7230C2D12E84685317/", @@ -531226,7 +561897,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "117": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -531234,7 +561906,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "112": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", @@ -531242,7 +561915,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "116": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", @@ -531250,7 +561924,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "115": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", @@ -531258,7 +561933,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "114": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", @@ -531266,7 +561942,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "113": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", @@ -531274,7 +561951,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "120": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", @@ -531282,7 +561960,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "119": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", @@ -531290,7 +561969,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "118": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", @@ -531298,12 +561978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -531330,6 +562011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531345,12 +562028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "533af3" }, { @@ -531378,6 +562062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531393,12 +562079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9acce" }, { @@ -531426,6 +562113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531441,12 +562130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c1944" }, { @@ -531474,6 +562164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531489,12 +562181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72e0c7" }, { @@ -531522,6 +562215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531537,12 +562232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1020b8" }, { @@ -531570,6 +562266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531585,12 +562283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cf91b" }, { @@ -531618,6 +562317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531633,12 +562334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5421cb" }, { @@ -531666,6 +562368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531681,12 +562385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8c5f2" }, { @@ -531714,6 +562419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531729,12 +562436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc8eb5" }, { @@ -531762,6 +562470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531777,12 +562487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a91e8f" }, { @@ -531810,6 +562521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531825,12 +562538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45268d" }, { @@ -531858,6 +562572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531873,12 +562589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0ac1b" }, { @@ -531906,6 +562623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531921,12 +562640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0dd29c" }, { @@ -531954,6 +562674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -531969,12 +562691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd52dc" }, { @@ -532002,6 +562725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532017,12 +562742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d43c35" }, { @@ -532050,6 +562776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532065,12 +562793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d552e0" } ], @@ -532101,6 +562830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532137,7 +562868,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "35": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", @@ -532145,12 +562877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -532177,6 +562910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532192,12 +562927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de1cd2" }, { @@ -532225,6 +562961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532240,12 +562978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6793f" }, { @@ -532273,6 +563012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532288,12 +563029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46af71" }, { @@ -532321,6 +563063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532336,12 +563080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "caabe8" }, { @@ -532369,6 +563114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532384,12 +563131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e98498" }, { @@ -532417,6 +563165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532432,12 +563182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a25d" }, { @@ -532465,6 +563216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532480,12 +563233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad5593" }, { @@ -532513,6 +563267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532528,12 +563284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "292569" }, { @@ -532561,6 +563318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532576,12 +563335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c7992" }, { @@ -532609,6 +563369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532624,12 +563386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ef190" }, { @@ -532657,6 +563420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532672,12 +563437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5509c" }, { @@ -532705,6 +563471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532720,12 +563488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b93657" }, { @@ -532753,6 +563522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532768,12 +563539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a90fd5" }, { @@ -532801,6 +563573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532816,12 +563590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6473f5" }, { @@ -532849,6 +563624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532864,12 +563641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "784ebd" }, { @@ -532897,6 +563675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532912,12 +563692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "71df4e" }, { @@ -532945,6 +563726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -532960,12 +563743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4bc3c" }, { @@ -532993,6 +563777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533008,12 +563794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2dea8" }, { @@ -533041,6 +563828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533056,12 +563845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "39fae4" }, { @@ -533089,6 +563879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533104,12 +563896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ca952" } ], @@ -533140,6 +563933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533174,7 +563969,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "35": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", @@ -533182,12 +563978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -533214,6 +564011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533229,12 +564028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "278b2f" }, { @@ -533262,6 +564062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533277,12 +564079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d263b6" }, { @@ -533310,6 +564113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533325,12 +564130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -533358,6 +564164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533373,12 +564181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c442af" }, { @@ -533406,6 +564215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533421,12 +564232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "deaa6c" }, { @@ -533454,6 +564266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533469,12 +564283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fff9f" }, { @@ -533502,6 +564317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533517,12 +564334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a7f2c" }, { @@ -533550,6 +564368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533565,12 +564385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "701563" }, { @@ -533598,6 +564419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533613,12 +564436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "add566" }, { @@ -533646,6 +564470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533661,12 +564487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3baf39" }, { @@ -533694,6 +564521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533709,12 +564538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bdf0f" }, { @@ -533742,6 +564572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533757,12 +564589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55679c" }, { @@ -533790,6 +564623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533805,12 +564640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7837cd" }, { @@ -533838,6 +564674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533853,12 +564691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab7766" }, { @@ -533886,6 +564725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533901,12 +564742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b4391" }, { @@ -533934,6 +564776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533949,12 +564793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e3bd8" }, { @@ -533982,6 +564827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -533997,12 +564844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2cad0b" }, { @@ -534030,6 +564878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534045,12 +564895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4efea7" } ], @@ -534081,6 +564932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534103,12 +564956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -534135,6 +564989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534150,12 +565006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b7c88" }, { @@ -534183,6 +565040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534198,12 +565057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62b6cd" }, { @@ -534231,6 +565091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534246,12 +565108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53b9cb" }, { @@ -534279,6 +565142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534294,12 +565159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -534327,6 +565193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534342,12 +565210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0abaca" }, { @@ -534375,6 +565244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534390,12 +565261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -534426,6 +565298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534446,12 +565320,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -534478,6 +565353,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534493,12 +565370,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "326f11" }, { @@ -534526,6 +565404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534541,12 +565421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c35966" }, { @@ -534574,6 +565455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534589,12 +565472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f2c2e" }, { @@ -534622,6 +565506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534637,12 +565523,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "367d03" } ], @@ -534673,6 +565560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534695,12 +565584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -534727,6 +565617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534742,12 +565634,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0eb939" }, { @@ -534775,6 +565668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534790,12 +565685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7870f6" }, { @@ -534823,6 +565719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534838,12 +565736,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "408a82" }, { @@ -534871,6 +565770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534886,12 +565787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "525275" }, { @@ -534919,6 +565821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534934,12 +565838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dac94" }, { @@ -534967,6 +565872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -534982,12 +565889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3761ce" } ], @@ -535018,6 +565926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535041,12 +565951,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -535073,6 +565984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535088,12 +566001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4949ea" }, { @@ -535121,6 +566035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535136,12 +566052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8092b" }, { @@ -535169,6 +566086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535184,12 +566103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a558b5" }, { @@ -535217,6 +566137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535232,12 +566154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7c676" }, { @@ -535265,6 +566188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535280,12 +566205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "407e66" }, { @@ -535313,6 +566239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535328,12 +566256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64341a" }, { @@ -535361,6 +566290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535376,12 +566307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fa642" } ], @@ -535412,6 +566344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535433,12 +566367,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -535465,6 +566400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535480,12 +566417,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9136e" }, { @@ -535513,6 +566451,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535528,12 +566468,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d53c1" }, { @@ -535561,6 +566502,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535576,12 +566519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d32fa0" }, { @@ -535609,6 +566553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535624,12 +566570,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa8c0e" }, { @@ -535657,6 +566604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535672,12 +566621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4c440" } ], @@ -535708,6 +566658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535729,12 +566681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -535761,6 +566714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535776,12 +566731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a13d0" }, { @@ -535809,6 +566765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535824,12 +566782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb625" }, { @@ -535857,6 +566816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535872,12 +566833,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81dc7a" }, { @@ -535905,6 +566867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535920,12 +566884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "976fd8" }, { @@ -535953,6 +566918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -535968,12 +566935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab69b8" } ], @@ -536004,6 +566972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536035,7 +567005,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2320": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", @@ -536043,7 +567014,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2319": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", @@ -536051,7 +567023,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2318": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", @@ -536059,12 +567032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -536091,6 +567065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536106,12 +567082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35dcd2" }, { @@ -536139,6 +567116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536154,12 +567133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96a76c" }, { @@ -536187,6 +567167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536202,12 +567184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d5674" }, { @@ -536235,6 +567218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536250,12 +567235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b7c7c" }, { @@ -536283,6 +567269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536298,12 +567286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68cfea" }, { @@ -536331,6 +567320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536346,12 +567337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c31146" }, { @@ -536379,6 +567371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536394,12 +567388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a0759" }, { @@ -536427,6 +567422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536442,12 +567439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc78d7" }, { @@ -536475,6 +567473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536490,12 +567490,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1539ea" }, { @@ -536523,6 +567524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536538,12 +567541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3f8c3" }, { @@ -536571,6 +567575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536586,12 +567592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7fb9d" }, { @@ -536619,6 +567626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536634,12 +567643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fe9f1" }, { @@ -536667,6 +567677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536682,12 +567694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05d5ef" }, { @@ -536715,6 +567728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536730,12 +567745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eca18e" }, { @@ -536763,6 +567779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536778,12 +567796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "845563" } ], @@ -536814,6 +567833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536834,12 +567855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -536866,6 +567888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536881,12 +567905,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47147f" }, { @@ -536914,6 +567939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536929,12 +567956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c04e0" }, { @@ -536962,6 +567990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -536977,12 +568007,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "278e46" }, { @@ -537010,6 +568041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537025,12 +568058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e49187" } ], @@ -537061,6 +568095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537083,12 +568119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -537115,6 +568152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537130,12 +568169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef132d" }, { @@ -537163,6 +568203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537178,12 +568220,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "717c42" }, { @@ -537211,6 +568254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537226,12 +568271,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbcb9f" }, { @@ -537259,6 +568305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537274,12 +568322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43ba03" }, { @@ -537307,6 +568356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537322,12 +568373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f41b0" }, { @@ -537355,6 +568407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537370,12 +568424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a350a" } ], @@ -537406,6 +568461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537426,12 +568483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -537458,6 +568516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537473,12 +568533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "397fce" }, { @@ -537506,6 +568567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537521,12 +568584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f84e0e" }, { @@ -537554,6 +568618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537569,12 +568635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79968" }, { @@ -537602,6 +568669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537617,12 +568686,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "092d86" } ], @@ -537653,6 +568723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537672,12 +568744,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -537704,6 +568777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537719,12 +568794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f798c8" }, { @@ -537752,6 +568828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537767,12 +568845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f92f1e" }, { @@ -537800,6 +568879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537815,12 +568896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1eb9b" } ], @@ -537851,6 +568933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537874,7 +568958,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", @@ -537882,12 +568967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -537914,6 +569000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537929,12 +569017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a83e8" }, { @@ -537962,6 +569051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -537977,12 +569068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d80c14" }, { @@ -538010,6 +569102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538025,12 +569119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41d2da" }, { @@ -538058,6 +569153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538073,12 +569170,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23b99c" }, { @@ -538106,6 +569204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538121,12 +569221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4f8dc" }, { @@ -538154,6 +569255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538169,12 +569272,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa1331" }, { @@ -538202,6 +569306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538217,12 +569323,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be1726" } ], @@ -538253,6 +569360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538273,12 +569382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -538305,6 +569415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538320,12 +569432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7732b3" }, { @@ -538353,6 +569466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538368,12 +569483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e4752" }, { @@ -538401,6 +569517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538416,12 +569534,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "10c2cb" }, { @@ -538449,6 +569568,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538464,12 +569585,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db1b65" } ], @@ -538500,6 +569622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538537,7 +569661,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2319": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", @@ -538545,7 +569670,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2320": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", @@ -538553,12 +569679,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -538585,6 +569712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538600,12 +569729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c24b98" }, { @@ -538633,6 +569763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538648,12 +569780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7fb9d" }, { @@ -538681,6 +569814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538696,12 +569831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0699e7" }, { @@ -538729,6 +569865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538744,12 +569882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5483" }, { @@ -538777,6 +569916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538792,12 +569933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0ffe2" }, { @@ -538825,6 +569967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538840,12 +569984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1bd9a" }, { @@ -538873,6 +570018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538888,12 +570035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9160a" }, { @@ -538921,6 +570069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538936,12 +570086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33990b" }, { @@ -538969,6 +570120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -538984,12 +570137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18ddb6" }, { @@ -539017,6 +570171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539032,12 +570188,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "523948" }, { @@ -539065,6 +570222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539080,12 +570239,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47d379" }, { @@ -539113,6 +570273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539128,12 +570290,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b98c8" }, { @@ -539161,6 +570324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539176,12 +570341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "873e22" }, { @@ -539209,6 +570375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539224,12 +570392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ddf65" }, { @@ -539257,6 +570426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539272,12 +570443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd8076" }, { @@ -539305,6 +570477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539320,12 +570494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6480fa" }, { @@ -539353,6 +570528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539368,12 +570545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ef9c4" }, { @@ -539401,6 +570579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539416,12 +570596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba8956" }, { @@ -539449,6 +570630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539464,12 +570647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d862a5" }, { @@ -539497,6 +570681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539512,12 +570698,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46cad7" }, { @@ -539545,6 +570732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539560,12 +570749,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffedcd" } ], @@ -539596,6 +570786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539645,7 +570837,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2754": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", @@ -539653,12 +570846,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -539685,6 +570879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539700,12 +570896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f65ded" }, { @@ -539733,6 +570930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539748,12 +570947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fc433" }, { @@ -539781,6 +570981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539796,12 +570998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "801539" }, { @@ -539829,6 +571032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539844,12 +571049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b05f2" }, { @@ -539877,6 +571083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539892,12 +571100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad69c7" }, { @@ -539925,6 +571134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539940,12 +571151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "832e11" }, { @@ -539973,6 +571185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -539988,12 +571202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8767b5" }, { @@ -540021,6 +571236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540036,12 +571253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84bbd0" }, { @@ -540069,6 +571287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540084,12 +571304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "716bb1" }, { @@ -540117,6 +571338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540132,12 +571355,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3088f" }, { @@ -540165,6 +571389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540180,12 +571406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "199d00" }, { @@ -540213,6 +571440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540228,12 +571457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9c83e" }, { @@ -540261,6 +571491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540276,12 +571508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d02d98" }, { @@ -540309,6 +571542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540324,12 +571559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de0939" }, { @@ -540357,6 +571593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540372,12 +571610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13d3f3" }, { @@ -540405,6 +571644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540420,12 +571661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "71e37c" }, { @@ -540453,6 +571695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540468,12 +571712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c0d7e" }, { @@ -540501,6 +571746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540516,12 +571763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d6a42" }, { @@ -540549,6 +571797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540564,12 +571814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f896e" }, { @@ -540597,6 +571848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540612,12 +571865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "962a85" }, { @@ -540645,6 +571899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540660,12 +571916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5bd251" }, { @@ -540693,6 +571950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540708,12 +571967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7725f0" }, { @@ -540741,6 +572001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540756,12 +572018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e23b2" }, { @@ -540789,6 +572052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540804,12 +572069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bfb2e" }, { @@ -540837,6 +572103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540852,12 +572120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecc30a" }, { @@ -540885,6 +572154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540900,12 +572171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "669016" }, { @@ -540933,6 +572205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540948,12 +572222,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c309da" }, { @@ -540981,6 +572256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -540996,12 +572273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a9156" }, { @@ -541029,6 +572307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541044,12 +572324,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "561923" }, { @@ -541077,6 +572358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541092,12 +572375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91ea7c" }, { @@ -541125,6 +572409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541140,12 +572426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73138b" }, { @@ -541173,6 +572460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541188,12 +572477,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b521b" }, { @@ -541221,6 +572511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541236,12 +572528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5885f" } ], @@ -541272,6 +572565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541307,7 +572602,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3126": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", @@ -541315,12 +572611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -541347,6 +572644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541362,12 +572661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "723cb3" }, { @@ -541395,6 +572695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541410,12 +572712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "367d1d" }, { @@ -541443,6 +572746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541458,12 +572763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03d161" }, { @@ -541491,6 +572797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541506,12 +572814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31bd61" }, { @@ -541539,6 +572848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541554,12 +572865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "582874" }, { @@ -541587,6 +572899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541602,12 +572916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "582874" }, { @@ -541635,6 +572950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541650,12 +572967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "582874" }, { @@ -541683,6 +573001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541698,12 +573018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "582874" }, { @@ -541731,6 +573052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541746,12 +573069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "940982" }, { @@ -541779,6 +573103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541794,12 +573120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f6a54" }, { @@ -541827,6 +573154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541842,12 +573171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f6a54" }, { @@ -541875,6 +573205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541890,12 +573222,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "292724" }, { @@ -541923,6 +573256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541938,12 +573273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "292724" }, { @@ -541971,6 +573307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -541986,12 +573324,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d21848" }, { @@ -542019,6 +573358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542034,12 +573375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d21848" }, { @@ -542067,6 +573409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542082,12 +573426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f2790" }, { @@ -542115,6 +573460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542130,12 +573477,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f2790" }, { @@ -542163,6 +573511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542178,12 +573528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a81e3d" }, { @@ -542211,6 +573562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542226,12 +573579,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4452d" } ], @@ -542262,6 +573616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542294,7 +573650,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3124": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", @@ -542302,12 +573659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -542334,6 +573692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542349,12 +573709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57cee5" }, { @@ -542382,6 +573743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542397,12 +573760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d43918" }, { @@ -542430,6 +573794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542445,12 +573811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "499347" }, { @@ -542478,6 +573845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542493,12 +573862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51bd26" }, { @@ -542526,6 +573896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542541,12 +573913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d47a01" }, { @@ -542574,6 +573947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542589,12 +573964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817b5a" }, { @@ -542622,6 +573998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542637,12 +574015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f6a54" }, { @@ -542670,6 +574049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542685,12 +574066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e2ff5" }, { @@ -542718,6 +574100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542733,12 +574117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "024771" }, { @@ -542766,6 +574151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542781,12 +574168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38256e" }, { @@ -542814,6 +574202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542829,12 +574219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3da23" }, { @@ -542862,6 +574253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542877,12 +574270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9aa5ab" }, { @@ -542910,6 +574304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542925,12 +574321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abf303" }, { @@ -542958,6 +574355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -542973,12 +574372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "28d66c" }, { @@ -543006,6 +574406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543021,12 +574423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "323982" }, { @@ -543054,6 +574457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543069,12 +574474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cc16b" } ], @@ -543105,6 +574511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543134,12 +574542,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -543166,6 +574575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543181,12 +574592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "892799" }, { @@ -543214,6 +574626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543229,12 +574643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97fa36" }, { @@ -543262,6 +574677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543277,12 +574694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "892799" }, { @@ -543310,6 +574728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543325,12 +574745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99b040" }, { @@ -543358,6 +574779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543373,12 +574796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99b040" }, { @@ -543406,6 +574830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543421,12 +574847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99b040" }, { @@ -543454,6 +574881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543469,12 +574898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bec23e" }, { @@ -543502,6 +574932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543517,12 +574949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bec23e" }, { @@ -543550,6 +574983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543565,12 +575000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8cfe7" }, { @@ -543598,6 +575034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543613,12 +575051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8cfe7" }, { @@ -543646,6 +575085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543661,12 +575102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7dd13" }, { @@ -543694,6 +575136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543709,12 +575153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7dd13" }, { @@ -543742,6 +575187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543757,12 +575204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2cc36" } ], @@ -543793,6 +575241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543813,12 +575263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -543845,6 +575296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543860,12 +575313,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a36f2f" }, { @@ -543893,6 +575347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543908,12 +575364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3ec6a" }, { @@ -543941,6 +575398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -543956,12 +575415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6582d7" }, { @@ -543989,6 +575449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544004,12 +575466,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6582d7" } ], @@ -544040,6 +575503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544064,12 +575529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -544096,6 +575562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544111,12 +575579,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a71412" }, { @@ -544144,6 +575613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544159,12 +575630,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "735cdb" }, { @@ -544192,6 +575664,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544207,12 +575681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a71412" }, { @@ -544240,6 +575715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544255,12 +575732,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a47dba" }, { @@ -544288,6 +575766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544303,12 +575783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a47dba" }, { @@ -544336,6 +575817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544351,12 +575834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7dd13" }, { @@ -544384,6 +575868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544399,12 +575885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ccd9f0" }, { @@ -544432,6 +575919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544447,12 +575936,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7dd13" } ], @@ -544483,6 +575973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544503,12 +575995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -544535,6 +576028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544550,12 +576045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c1b20" }, { @@ -544583,6 +576079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544598,12 +576096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af86ae" }, { @@ -544631,6 +576130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544646,12 +576147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be9d6c" }, { @@ -544679,6 +576181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544694,12 +576198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be9d6c" } ], @@ -544730,6 +576235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544753,12 +576260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -544785,6 +576293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544800,12 +576310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b4ef3" }, { @@ -544833,6 +576344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544848,12 +576361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa916a" }, { @@ -544881,6 +576395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544896,12 +576412,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b4ef3" }, { @@ -544929,6 +576446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544944,12 +576463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cadd49" }, { @@ -544977,6 +576497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -544992,12 +576514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -545025,6 +576548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545040,12 +576565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d726b" }, { @@ -545073,6 +576599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545088,12 +576616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -545124,6 +576653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545146,12 +576677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -545178,6 +576710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545193,12 +576727,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d63054" }, { @@ -545226,6 +576761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545241,12 +576778,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b347d1" }, { @@ -545274,6 +576812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545289,12 +576829,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36612" }, { @@ -545322,6 +576863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545337,12 +576880,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50fdc5" }, { @@ -545370,6 +576914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545385,12 +576931,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4911f2" }, { @@ -545418,6 +576965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545433,12 +576982,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -545469,6 +577019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545490,12 +577042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -545522,6 +577075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545537,12 +577092,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -545570,6 +577126,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545585,12 +577143,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec86a2" }, { @@ -545618,6 +577177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545633,12 +577194,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad2df0" }, { @@ -545666,6 +577228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545681,12 +577245,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a12fd2" }, { @@ -545714,6 +577279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545729,12 +577296,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -545765,6 +577333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545788,12 +577358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -545820,6 +577391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545835,12 +577408,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -545868,6 +577442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545883,12 +577459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -545916,6 +577493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545931,12 +577510,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -545964,6 +577544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -545979,12 +577561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -546012,6 +577595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546027,12 +577612,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -546060,6 +577646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546075,12 +577663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -546108,6 +577697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546123,12 +577714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -546159,6 +577751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546178,12 +577772,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -546210,6 +577805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546225,12 +577822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -546258,6 +577856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546273,12 +577873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2cf85" }, { @@ -546306,6 +577907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546321,12 +577924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -546357,6 +577961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546376,12 +577982,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -546408,6 +578015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546423,12 +578032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -546456,6 +578066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546471,12 +578083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -546504,6 +578117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546519,12 +578134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" } ], @@ -546555,6 +578171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546575,12 +578193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -546607,6 +578226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546622,12 +578243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -546655,6 +578277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546670,12 +578294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -546703,6 +578328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546718,12 +578345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -546751,6 +578379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546766,12 +578396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" } ], @@ -546802,6 +578433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546822,12 +578455,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -546854,6 +578488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546869,12 +578505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e04da" }, { @@ -546902,6 +578539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546917,12 +578556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d0c1c" }, { @@ -546950,6 +578590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -546965,12 +578607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -546998,6 +578641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547013,12 +578658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b75b70" } ], @@ -547049,6 +578695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547072,12 +578720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -547104,6 +578753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547119,12 +578770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -547152,6 +578804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547167,12 +578821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "272ea4" }, { @@ -547200,6 +578855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547215,12 +578872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -547248,6 +578906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547263,12 +578923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99efa0" }, { @@ -547296,6 +578957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547311,12 +578974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" }, { @@ -547344,6 +579008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547359,12 +579025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30bb55" }, { @@ -547392,6 +579059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547407,12 +579076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" } ], @@ -547443,6 +579113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547461,12 +579133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -547493,6 +579166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547508,12 +579183,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -547541,6 +579217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547556,12 +579234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4904d0" } ], @@ -547592,6 +579271,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547612,12 +579293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -547644,6 +579326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547659,12 +579343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad01d5" }, { @@ -547692,6 +579377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547707,12 +579394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e4b6f" }, { @@ -547740,6 +579428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547755,12 +579445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -547788,6 +579479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547803,12 +579496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c04b5" } ], @@ -547839,6 +579533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547859,12 +579555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -547891,6 +579588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547906,12 +579605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4ae63" }, { @@ -547939,6 +579639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -547954,12 +579656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f2e83" }, { @@ -547987,6 +579690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548002,12 +579707,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4ae63" }, { @@ -548035,6 +579741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548050,12 +579758,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -548086,6 +579795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548106,12 +579817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -548138,6 +579850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548153,12 +579867,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "796db7" }, { @@ -548186,6 +579901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548201,12 +579918,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47ed9e" }, { @@ -548234,6 +579952,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548249,12 +579969,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -548282,6 +580003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548297,12 +580020,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfd69a" } ], @@ -548333,6 +580057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548353,12 +580079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -548385,6 +580112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548400,12 +580129,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cf636" }, { @@ -548433,6 +580163,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548448,12 +580180,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a845" }, { @@ -548481,6 +580214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548496,12 +580231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -548529,6 +580265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548544,12 +580282,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc5fa" } ], @@ -548580,6 +580319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548600,12 +580341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -548632,6 +580374,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548647,12 +580391,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "621de5" }, { @@ -548680,6 +580425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548695,12 +580442,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b126fb" }, { @@ -548728,6 +580476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548743,12 +580493,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "924656" }, { @@ -548776,6 +580527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548791,12 +580544,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e06a" } ], @@ -548827,6 +580581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548847,12 +580603,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -548879,6 +580636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548894,12 +580653,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9cb0f" }, { @@ -548927,6 +580687,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548942,12 +580704,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b23ff" }, { @@ -548975,6 +580738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -548990,12 +580755,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c942d4" }, { @@ -549023,6 +580789,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549038,12 +580806,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9df5fa" } ], @@ -549074,6 +580843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549094,12 +580865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -549126,6 +580898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549141,12 +580915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48601c" }, { @@ -549174,6 +580949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549189,12 +580966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc58cb" }, { @@ -549222,6 +581000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549237,12 +581017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf7d6b" }, { @@ -549270,6 +581051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549285,12 +581068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa76f7" } ], @@ -549321,6 +581105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549343,12 +581129,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -549375,6 +581162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549390,12 +581179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e13" }, { @@ -549423,6 +581213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549438,12 +581230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cfcad" }, { @@ -549471,6 +581264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549486,12 +581281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8c436" }, { @@ -549519,6 +581315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549534,12 +581332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5bae" }, { @@ -549567,6 +581366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549582,12 +581383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31f1b5" }, { @@ -549615,6 +581417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549630,12 +581434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fdcaf" } ], @@ -549666,6 +581471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549686,12 +581493,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -549718,6 +581526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549733,12 +581543,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8ca95" }, { @@ -549766,6 +581577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549781,12 +581594,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2472d3" }, { @@ -549814,6 +581628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549829,12 +581645,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebbf2f" }, { @@ -549862,6 +581679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549877,12 +581696,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4faa7f" } ], @@ -549913,6 +581733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549933,12 +581755,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -549965,6 +581788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -549980,12 +581805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa43f" }, { @@ -550013,6 +581839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550028,12 +581856,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e43efd" }, { @@ -550061,6 +581890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550076,12 +581907,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e45ec8" }, { @@ -550109,6 +581941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550124,12 +581958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25d93a" } ], @@ -550160,6 +581995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550179,12 +582016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -550211,6 +582049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550226,12 +582066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3ada0" }, { @@ -550259,6 +582100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550274,12 +582117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce95a3" }, { @@ -550307,6 +582151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550322,12 +582168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6476cc" } ], @@ -550358,6 +582205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550380,12 +582229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -550412,6 +582262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550427,12 +582279,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb88d3" }, { @@ -550460,6 +582313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550475,12 +582330,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "127543" }, { @@ -550508,6 +582364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550523,12 +582381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "133060" }, { @@ -550556,6 +582415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550571,12 +582432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23fc06" }, { @@ -550604,6 +582466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550619,12 +582483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09c755" }, { @@ -550652,6 +582517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550667,12 +582534,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f9c1e" } ], @@ -550703,6 +582571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550723,12 +582593,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -550755,6 +582626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550770,12 +582643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d30166" }, { @@ -550803,6 +582677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550818,12 +582694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f56f1" }, { @@ -550851,6 +582728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550866,12 +582745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "646a1a" }, { @@ -550899,6 +582779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550914,12 +582796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a45b3a" } ], @@ -550950,6 +582833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -550970,12 +582855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -551002,6 +582888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551017,12 +582905,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "605181" }, { @@ -551050,6 +582939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551065,12 +582956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99845e" }, { @@ -551098,6 +582990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551113,12 +583007,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fb152" }, { @@ -551146,6 +583041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551161,12 +583058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c2d5a" } ], @@ -551197,6 +583095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551219,12 +583119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -551251,6 +583152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551266,12 +583169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07cb83" }, { @@ -551299,6 +583203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551314,12 +583220,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9a81c" }, { @@ -551347,6 +583254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551362,12 +583271,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e64ec2" }, { @@ -551395,6 +583305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551410,12 +583322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdd705" }, { @@ -551443,6 +583356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551458,12 +583373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af23c" }, { @@ -551491,6 +583407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551506,12 +583424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd39c6" } ], @@ -551542,6 +583461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551564,12 +583485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -551596,6 +583518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551611,12 +583535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b08a8" }, { @@ -551644,6 +583569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551659,12 +583586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1c795" }, { @@ -551692,6 +583620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551707,12 +583637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db8153" }, { @@ -551740,6 +583671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551755,12 +583688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27dc33" }, { @@ -551788,6 +583722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551803,12 +583739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb76f8" }, { @@ -551836,6 +583773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551851,12 +583790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a2c73" } ], @@ -551887,6 +583827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551910,12 +583852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -551942,6 +583885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -551957,12 +583902,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "947597" }, { @@ -551990,6 +583936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552005,12 +583953,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6cb3f1" }, { @@ -552038,6 +583987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552053,12 +584004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e7b73" }, { @@ -552086,6 +584038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552101,12 +584055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d3af5" }, { @@ -552134,6 +584089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552149,12 +584106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -552182,6 +584140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552197,12 +584157,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a0545" }, { @@ -552230,6 +584191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552245,12 +584208,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "040fdc" } ], @@ -552281,6 +584245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552301,12 +584267,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -552333,6 +584300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552348,12 +584317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48ff80" }, { @@ -552381,6 +584351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552396,12 +584368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3c0d0" }, { @@ -552429,6 +584402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552444,12 +584419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -552477,6 +584453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552492,12 +584470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7161b9" } ], @@ -552528,6 +584507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552547,12 +584528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -552579,6 +584561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552594,12 +584578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -552627,6 +584612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552642,12 +584629,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc41a5" }, { @@ -552675,6 +584663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552690,12 +584680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" } ], @@ -552726,6 +584717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552747,12 +584740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -552779,6 +584773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552794,12 +584790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -552827,6 +584824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552842,12 +584841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19a53b" }, { @@ -552875,6 +584875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552890,12 +584892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa6826" }, { @@ -552923,6 +584926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552938,12 +584943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -552971,6 +584977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -552986,12 +584994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" } ], @@ -553022,6 +585031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553043,12 +585054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -553075,6 +585087,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553090,12 +585104,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -553123,6 +585138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553138,12 +585155,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b50ce8" }, { @@ -553171,6 +585189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553186,12 +585206,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4441df" }, { @@ -553219,6 +585240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553234,12 +585257,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -553267,6 +585291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553282,12 +585308,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" } ], @@ -553318,6 +585345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553339,12 +585368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -553371,6 +585401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553386,12 +585418,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -553419,6 +585452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553434,12 +585469,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f2492" }, { @@ -553467,6 +585503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553482,12 +585520,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3480cc" }, { @@ -553515,6 +585554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553530,12 +585571,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -553563,6 +585605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553578,12 +585622,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" } ], @@ -553614,6 +585659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553635,12 +585682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -553667,6 +585715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553682,12 +585732,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -553715,6 +585766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553730,12 +585783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c4124" }, { @@ -553763,6 +585817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553778,12 +585834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7613e0" }, { @@ -553811,6 +585868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553826,12 +585885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -553859,6 +585919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553874,12 +585936,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" } ], @@ -553910,6 +585973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553931,12 +585996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -553963,6 +586029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -553978,12 +586046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -554011,6 +586080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554026,12 +586097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "363bfa" }, { @@ -554059,6 +586131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554074,12 +586148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "870ee1" }, { @@ -554107,6 +586182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554122,12 +586199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -554155,6 +586233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554170,12 +586250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" } ], @@ -554206,6 +586287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554239,12 +586322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -554271,6 +586355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554286,12 +586372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -554319,6 +586406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554334,12 +586423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abea7c" }, { @@ -554367,6 +586457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554382,12 +586474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ca8a4" }, { @@ -554415,6 +586508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554430,12 +586525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "227b47" }, { @@ -554463,6 +586559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554478,12 +586576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -554511,6 +586610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554526,12 +586627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "079905" }, { @@ -554559,6 +586661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554574,12 +586678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -554607,6 +586712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554622,12 +586729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef03ae" }, { @@ -554655,6 +586763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554670,12 +586780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -554703,6 +586814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554718,12 +586831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19f49a" }, { @@ -554751,6 +586865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554766,12 +586882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd99b0" }, { @@ -554799,6 +586916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554814,12 +586933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a5ba5" }, { @@ -554847,6 +586967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554862,12 +586984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -554895,6 +587018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554910,12 +587035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40d63c" }, { @@ -554943,6 +587069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -554958,12 +587086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26251e" }, { @@ -554991,6 +587120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555006,12 +587137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -555039,6 +587171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555054,12 +587188,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bafc5c" } ], @@ -555090,6 +587225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555122,7 +587259,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2347": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", @@ -555130,12 +587268,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -555162,6 +587301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555177,12 +587318,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785613" }, { @@ -555210,6 +587352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555225,12 +587369,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785613" }, { @@ -555258,6 +587403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555273,12 +587420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785613" }, { @@ -555306,6 +587454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555321,12 +587471,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2b60" }, { @@ -555354,6 +587505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555369,12 +587522,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9386a" }, { @@ -555402,6 +587556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555417,12 +587573,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2b60" }, { @@ -555450,6 +587607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555465,12 +587624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f27bf" }, { @@ -555498,6 +587658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555513,12 +587675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f27bf" }, { @@ -555546,6 +587709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555561,12 +587726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef8a41" }, { @@ -555594,6 +587760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555609,12 +587777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e634db" }, { @@ -555642,6 +587811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555657,12 +587828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef8a41" }, { @@ -555690,6 +587862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555705,12 +587879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6af4f4" }, { @@ -555738,6 +587913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555753,12 +587930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4d669" }, { @@ -555786,6 +587964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555801,12 +587981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34d21c" }, { @@ -555834,6 +588015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555849,12 +588032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -555882,6 +588066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555897,12 +588083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2f955" } ], @@ -555933,6 +588120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -555970,12 +588159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -556002,6 +588192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556017,12 +588209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4845c" }, { @@ -556050,6 +588243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556065,12 +588260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4845c" }, { @@ -556098,6 +588294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556113,12 +588311,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b40bb" }, { @@ -556146,6 +588345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556161,12 +588362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cc2c5" }, { @@ -556194,6 +588396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556209,12 +588413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -556242,6 +588447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556257,12 +588464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -556290,6 +588498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556305,12 +588515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -556338,6 +588549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556353,12 +588566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fb187" }, { @@ -556386,6 +588600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556401,12 +588617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8a1e4" }, { @@ -556434,6 +588651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556449,12 +588668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bad74a" }, { @@ -556482,6 +588702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556497,12 +588719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -556530,6 +588753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556545,12 +588770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -556578,6 +588804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556593,12 +588821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0eece1" }, { @@ -556626,6 +588855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556641,12 +588872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -556674,6 +588906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556689,12 +588923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -556722,6 +588957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556737,12 +588974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -556770,6 +589008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556785,12 +589025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "972fec" }, { @@ -556818,6 +589059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556833,12 +589076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d721c2" }, { @@ -556866,6 +589110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556881,12 +589127,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f7c12" }, { @@ -556914,6 +589161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556929,12 +589178,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8be848" }, { @@ -556962,6 +589212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -556977,12 +589229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" } ], @@ -557029,6 +589282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557037,9 +589292,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -557066,6 +589321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557120,7 +589377,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2347": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", @@ -557128,7 +589386,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2345": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", @@ -557136,12 +589395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -557168,6 +589428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557183,12 +589445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785613" }, { @@ -557216,6 +589479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557231,12 +589496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785613" }, { @@ -557264,6 +589530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557279,12 +589547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785613" }, { @@ -557312,6 +589581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557327,12 +589598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2b60" }, { @@ -557360,6 +589632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557375,12 +589649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9386a" }, { @@ -557408,6 +589683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557423,12 +589700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2b60" }, { @@ -557456,6 +589734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557471,12 +589751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f27bf" }, { @@ -557504,6 +589785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557519,12 +589802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f27bf" }, { @@ -557552,6 +589836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557567,12 +589853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef8a41" }, { @@ -557600,6 +589887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557615,12 +589904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e634db" }, { @@ -557648,6 +589938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557663,12 +589955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef8a41" }, { @@ -557696,6 +589989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557711,12 +590006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6af4f4" }, { @@ -557744,6 +590040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557759,12 +590057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4d669" }, { @@ -557792,6 +590091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557807,12 +590108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34d21c" }, { @@ -557840,6 +590142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557855,12 +590159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -557888,6 +590193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557903,12 +590210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2f955" }, { @@ -557936,6 +590244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557951,12 +590261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fa834" }, { @@ -557984,6 +590295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -557999,12 +590312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fa834" }, { @@ -558032,6 +590346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558047,12 +590363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fa834" }, { @@ -558080,6 +590397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558095,12 +590414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "39ace3" }, { @@ -558128,6 +590448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558143,12 +590465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "39ace3" }, { @@ -558176,6 +590499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558191,12 +590516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02caab" }, { @@ -558224,6 +590550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558239,12 +590567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02caab" }, { @@ -558272,6 +590601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558287,12 +590618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfdc8c" }, { @@ -558320,6 +590652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558335,12 +590669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfdc8c" }, { @@ -558368,6 +590703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558383,12 +590720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfdc8c" }, { @@ -558416,6 +590754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558431,12 +590771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c63cd6" }, { @@ -558464,6 +590805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558479,12 +590822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c63cd6" }, { @@ -558512,6 +590856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558527,12 +590873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43f634" }, { @@ -558560,6 +590907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558575,12 +590924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43f634" }, { @@ -558608,6 +590958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558623,12 +590975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43f634" }, { @@ -558656,6 +591009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558671,12 +591026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6215ed" }, { @@ -558704,6 +591060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558719,12 +591077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "525296" }, { @@ -558752,6 +591111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558767,12 +591128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75881e" }, { @@ -558800,6 +591162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558815,12 +591179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49d1a4" }, { @@ -558848,6 +591213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558863,12 +591230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86b4a8" }, { @@ -558896,6 +591264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558911,12 +591281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75881e" }, { @@ -558944,6 +591315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -558959,12 +591332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43f634" } ], @@ -558995,6 +591369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559048,7 +591424,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4484": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", @@ -559056,7 +591433,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4483": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", @@ -559064,7 +591442,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "4482": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", @@ -559072,12 +591451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -559104,6 +591484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559119,12 +591501,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0de10c" }, { @@ -559152,6 +591535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559167,12 +591552,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dc329" }, { @@ -559200,6 +591586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559215,12 +591603,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ed23d" }, { @@ -559248,6 +591637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559263,12 +591654,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "430478" }, { @@ -559296,6 +591688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559311,12 +591705,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35c286" }, { @@ -559344,6 +591739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559359,12 +591756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8b5c0" }, { @@ -559392,6 +591790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559407,12 +591807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d06c19" }, { @@ -559440,6 +591841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559455,12 +591858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09b1ba" }, { @@ -559488,6 +591892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559503,12 +591909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd1750" }, { @@ -559536,6 +591943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559551,12 +591960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a67b30" }, { @@ -559584,6 +591994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559599,12 +592011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a9fd0" }, { @@ -559632,6 +592045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559647,12 +592062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69fa0b" }, { @@ -559680,6 +592096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559695,12 +592113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a188b" }, { @@ -559728,6 +592147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559743,12 +592164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba6406" }, { @@ -559776,6 +592198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559791,12 +592215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e3d9c" }, { @@ -559824,6 +592249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559839,12 +592266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a01b3" }, { @@ -559872,6 +592300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559887,12 +592317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db6ad1" }, { @@ -559920,6 +592351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559935,12 +592368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "035f54" }, { @@ -559968,6 +592402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -559983,12 +592419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5dbc74" }, { @@ -560016,6 +592453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560031,12 +592470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "537a2f" }, { @@ -560064,6 +592504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560079,12 +592521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4d13a" }, { @@ -560112,6 +592555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560127,12 +592572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b517e" }, { @@ -560160,6 +592606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560175,12 +592623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c283c3" }, { @@ -560208,6 +592657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560223,12 +592674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d69f76" }, { @@ -560256,6 +592708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560271,12 +592725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdf29c" }, { @@ -560304,6 +592759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560319,12 +592776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb15b1" }, { @@ -560352,6 +592810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560367,12 +592827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99c449" }, { @@ -560400,6 +592861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560415,12 +592878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d7bc7" }, { @@ -560448,6 +592912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560463,12 +592929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fdaf9a" }, { @@ -560496,6 +592963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560511,12 +592980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04d820" }, { @@ -560544,6 +593014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560559,12 +593031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "453173" }, { @@ -560592,6 +593065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560607,12 +593082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "950287" }, { @@ -560640,6 +593116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560655,12 +593133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a7b93" }, { @@ -560688,6 +593167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560703,12 +593184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d99919" }, { @@ -560736,6 +593218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560751,12 +593235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "582d94" }, { @@ -560784,6 +593269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560799,12 +593286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5da9b8" }, { @@ -560832,6 +593320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560847,12 +593337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c8909" } ], @@ -560883,6 +593374,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560927,7 +593420,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4484": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", @@ -560935,7 +593429,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4483": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", @@ -560943,7 +593438,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "4482": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", @@ -560951,12 +593447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -560983,6 +593480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -560998,12 +593497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bf831" }, { @@ -561031,6 +593531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561046,12 +593548,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9da9f5" }, { @@ -561079,6 +593582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561094,12 +593599,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dc329" }, { @@ -561127,6 +593633,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561142,12 +593650,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "416545" }, { @@ -561175,6 +593684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561190,12 +593701,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f776ef" }, { @@ -561223,6 +593735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561238,12 +593752,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "adb449" }, { @@ -561271,6 +593786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561286,12 +593803,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "009bed" }, { @@ -561319,6 +593837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561334,12 +593854,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d7881" }, { @@ -561367,6 +593888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561382,12 +593905,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4534a" }, { @@ -561415,6 +593939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561430,12 +593956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "858f4d" }, { @@ -561463,6 +593990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561478,12 +594007,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee0dc6" }, { @@ -561511,6 +594041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561526,12 +594058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fdb3b3" }, { @@ -561559,6 +594092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561574,12 +594109,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5a434" }, { @@ -561607,6 +594143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561622,12 +594160,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "205498" }, { @@ -561655,6 +594194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561670,12 +594211,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd1eba" }, { @@ -561703,6 +594245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561718,12 +594262,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "537a2f" }, { @@ -561751,6 +594296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561766,12 +594313,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e86a44" }, { @@ -561799,6 +594347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561814,12 +594364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d115" }, { @@ -561847,6 +594398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561862,12 +594415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "923952" }, { @@ -561895,6 +594449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561910,12 +594466,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0fbe0" }, { @@ -561943,6 +594500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -561958,12 +594517,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f252c5" }, { @@ -561991,6 +594551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562006,12 +594568,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "105e3a" }, { @@ -562039,6 +594602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562054,12 +594619,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6aa77" }, { @@ -562087,6 +594653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562102,12 +594670,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "febef4" }, { @@ -562135,6 +594704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562150,12 +594721,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f907c0" }, { @@ -562183,6 +594755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562198,12 +594772,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e173e7" }, { @@ -562231,6 +594806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562246,12 +594823,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d30878" }, { @@ -562279,6 +594857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562294,12 +594874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d616d2" } ], @@ -562330,6 +594911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562350,12 +594933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -562382,6 +594966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562397,12 +594983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8ca95" }, { @@ -562430,6 +595017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562445,12 +595034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2472d3" }, { @@ -562478,6 +595068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562493,12 +595085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebbf2f" }, { @@ -562526,6 +595119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562541,12 +595136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4faa7f" } ], @@ -562577,6 +595173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562636,7 +595234,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2318": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/", @@ -562644,7 +595243,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2319": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/", @@ -562652,12 +595252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -562684,6 +595285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562699,12 +595302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -562732,6 +595336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562747,12 +595353,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abea7c" }, { @@ -562780,6 +595387,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562795,12 +595404,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ca8a4" }, { @@ -562828,6 +595438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562843,12 +595455,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "227b47" }, { @@ -562876,6 +595489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562891,12 +595506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -562924,6 +595540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562939,12 +595557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "079905" }, { @@ -562972,6 +595591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -562987,12 +595608,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -563020,6 +595642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563035,12 +595659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef03ae" }, { @@ -563068,6 +595693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563083,12 +595710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -563116,6 +595744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563131,12 +595761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19f49a" }, { @@ -563164,6 +595795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563179,12 +595812,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd99b0" }, { @@ -563212,6 +595846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563227,12 +595863,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a5ba5" }, { @@ -563260,6 +595897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563275,12 +595914,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -563308,6 +595948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563323,12 +595965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -563356,6 +595999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563371,12 +596016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -563404,6 +596050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563419,12 +596067,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -563452,6 +596101,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563467,12 +596118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bafc5c" }, { @@ -563500,6 +596152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563515,12 +596169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fc907" }, { @@ -563548,6 +596203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563563,12 +596220,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75a6b6" }, { @@ -563596,6 +596254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563611,12 +596271,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b871ad" }, { @@ -563644,6 +596305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563659,12 +596322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84787a" }, { @@ -563692,6 +596356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563707,12 +596373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "632dfd" }, { @@ -563740,6 +596407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563755,12 +596424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81b56c" }, { @@ -563788,6 +596458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563803,12 +596475,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a0d4" }, { @@ -563836,6 +596509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563851,12 +596526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ff298" }, { @@ -563884,6 +596560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563899,12 +596577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd9d79" }, { @@ -563932,6 +596611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563947,12 +596628,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f45a4e" }, { @@ -563980,6 +596662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -563995,12 +596679,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e9de1" }, { @@ -564028,6 +596713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564043,12 +596730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a919a3" }, { @@ -564076,6 +596764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564091,12 +596781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb5182" }, { @@ -564124,6 +596815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564139,12 +596832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "952b5c" }, { @@ -564172,6 +596866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564187,12 +596883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d3c92" }, { @@ -564220,6 +596917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564235,12 +596934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb353d" }, { @@ -564268,6 +596968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564283,12 +596985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8edf72" }, { @@ -564316,6 +597019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564331,12 +597036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "efab3f" }, { @@ -564364,6 +597070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564379,12 +597087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "769271" }, { @@ -564412,6 +597121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564427,12 +597138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b38ed6" }, { @@ -564460,6 +597172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564475,12 +597189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a44f6b" }, { @@ -564508,6 +597223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564523,12 +597240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "021a99" }, { @@ -564556,6 +597274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564571,12 +597291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a577f" }, { @@ -564604,6 +597325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564619,12 +597342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b5d64" }, { @@ -564652,6 +597376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564667,12 +597393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c8b64" }, { @@ -564700,6 +597427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564715,12 +597444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be41db" } ], @@ -564751,6 +597481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564771,12 +597503,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -564803,6 +597536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564818,12 +597553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa43f" }, { @@ -564851,6 +597587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564866,12 +597604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e43efd" }, { @@ -564899,6 +597638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564914,12 +597655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e45ec8" }, { @@ -564947,6 +597689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -564962,12 +597706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25d93a" } ], @@ -564998,6 +597743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565020,12 +597767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -565052,6 +597800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565067,12 +597817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b08a8" }, { @@ -565100,6 +597851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565115,12 +597868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1c795" }, { @@ -565148,6 +597902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565163,12 +597919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db8153" }, { @@ -565196,6 +597953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565211,12 +597970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27dc33" }, { @@ -565244,6 +598004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565259,12 +598021,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb76f8" }, { @@ -565292,6 +598055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565307,12 +598072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a2c73" } ], @@ -565343,6 +598109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565363,12 +598131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -565395,6 +598164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565410,12 +598181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d30166" }, { @@ -565443,6 +598215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565458,12 +598232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f56f1" }, { @@ -565491,6 +598266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565506,12 +598283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "646a1a" }, { @@ -565539,6 +598317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565554,12 +598334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a45b3a" } ], @@ -565590,6 +598371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565612,12 +598395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -565644,6 +598428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565659,12 +598445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb88d3" }, { @@ -565692,6 +598479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565707,12 +598496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "127543" }, { @@ -565740,6 +598530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565755,12 +598547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "133060" }, { @@ -565788,6 +598581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565803,12 +598598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23fc06" }, { @@ -565836,6 +598632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565851,12 +598649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09c755" }, { @@ -565884,6 +598683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565899,12 +598700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f9c1e" } ], @@ -565935,6 +598737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -565957,12 +598761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -565989,6 +598794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566004,12 +598811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e13" }, { @@ -566037,6 +598845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566052,12 +598862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cfcad" }, { @@ -566085,6 +598896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566100,12 +598913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8c436" }, { @@ -566133,6 +598947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566148,12 +598964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5bae" }, { @@ -566181,6 +598998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566196,12 +599015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31f1b5" }, { @@ -566229,6 +599049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566244,12 +599066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fdcaf" } ], @@ -566280,6 +599103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566300,12 +599125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -566332,6 +599158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566347,12 +599175,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9cb0f" }, { @@ -566380,6 +599209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566395,12 +599226,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b23ff" }, { @@ -566428,6 +599260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566443,12 +599277,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c942d4" }, { @@ -566476,6 +599311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566491,12 +599328,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9df5fa" } ], @@ -566527,6 +599365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566549,12 +599389,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -566581,6 +599422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566596,12 +599439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07cb83" }, { @@ -566629,6 +599473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566644,12 +599490,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9a81c" }, { @@ -566677,6 +599524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566692,12 +599541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e64ec2" }, { @@ -566725,6 +599575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566740,12 +599592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdd705" }, { @@ -566773,6 +599626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566788,12 +599643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af23c" }, { @@ -566821,6 +599677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566836,12 +599694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd39c6" } ], @@ -566872,6 +599731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566892,12 +599753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -566924,6 +599786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566939,12 +599803,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "605181" }, { @@ -566972,6 +599837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -566987,12 +599854,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99845e" }, { @@ -567020,6 +599888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567035,12 +599905,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fb152" }, { @@ -567068,6 +599939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567083,12 +599956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c2d5a" } ], @@ -567119,6 +599993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567138,12 +600014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -567170,6 +600047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567185,12 +600064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3ada0" }, { @@ -567218,6 +600098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567233,12 +600115,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce95a3" }, { @@ -567266,6 +600149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567281,12 +600166,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6476cc" } ], @@ -567317,6 +600203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567337,12 +600225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -567369,6 +600258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567384,12 +600275,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48601c" }, { @@ -567417,6 +600309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567432,12 +600326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc58cb" }, { @@ -567465,6 +600360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567480,12 +600377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf7d6b" }, { @@ -567513,6 +600411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567528,12 +600428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa76f7" } ], @@ -567564,6 +600465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567584,12 +600487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -567616,6 +600520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567631,12 +600537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "621de5" }, { @@ -567664,6 +600571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567679,12 +600588,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b126fb" }, { @@ -567712,6 +600622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567727,12 +600639,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "924656" }, { @@ -567760,6 +600673,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567775,12 +600690,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e06a" } ], @@ -567811,6 +600727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567852,7 +600770,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2741": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", @@ -567860,7 +600779,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2742": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", @@ -567868,7 +600788,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2746": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", @@ -567876,12 +600797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -567908,6 +600830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567923,12 +600847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d332d" }, { @@ -567956,6 +600881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -567971,12 +600898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dbd74" }, { @@ -568004,6 +600932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568019,12 +600949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e22db7" }, { @@ -568052,6 +600983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568067,12 +601000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ba9a5" }, { @@ -568100,6 +601034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568115,12 +601051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96be34" }, { @@ -568148,6 +601085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568163,12 +601102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c168" }, { @@ -568196,6 +601136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568211,12 +601153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f855a" }, { @@ -568244,6 +601187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568259,12 +601204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "781b57" }, { @@ -568292,6 +601238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568307,12 +601255,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e12734" }, { @@ -568340,6 +601289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568355,12 +601306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3baffc" }, { @@ -568388,6 +601340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568403,12 +601357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27ccf3" }, { @@ -568436,6 +601391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568451,12 +601408,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "476b23" }, { @@ -568484,6 +601442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568499,12 +601459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bb346" }, { @@ -568532,6 +601493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568547,12 +601510,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96c994" }, { @@ -568580,6 +601544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568595,12 +601561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e2ab5" }, { @@ -568628,6 +601595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568643,12 +601612,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42fa87" }, { @@ -568676,6 +601646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568691,12 +601663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d253a6" }, { @@ -568724,6 +601697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568739,12 +601714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1c043" }, { @@ -568772,6 +601748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568787,12 +601765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d810aa" }, { @@ -568820,6 +601799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568835,12 +601816,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a9007" }, { @@ -568868,6 +601850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568883,12 +601867,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87ab5b" }, { @@ -568916,6 +601901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568931,12 +601918,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa505a" }, { @@ -568964,6 +601952,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -568979,12 +601969,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c04e9d" }, { @@ -569012,6 +602003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569027,12 +602020,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6789c0" }, { @@ -569060,6 +602054,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569075,12 +602071,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33ce38" } ], @@ -569111,6 +602108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569152,7 +602151,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2744": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", @@ -569160,7 +602160,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2742": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", @@ -569168,7 +602169,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2746": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", @@ -569176,12 +602178,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -569208,6 +602211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569223,12 +602228,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d4ff1" }, { @@ -569256,6 +602262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569271,12 +602279,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b5d95" }, { @@ -569304,6 +602313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569319,12 +602330,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7146a7" }, { @@ -569352,6 +602364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569367,12 +602381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e60f7" }, { @@ -569400,6 +602415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569415,12 +602432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2273ef" }, { @@ -569448,6 +602466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569463,12 +602483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c287b" }, { @@ -569496,6 +602517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569511,12 +602534,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9a005" }, { @@ -569544,6 +602568,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569559,12 +602585,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92e96b" }, { @@ -569592,6 +602619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569607,12 +602636,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2157cc" }, { @@ -569640,6 +602670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569655,12 +602687,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3fcf5" }, { @@ -569688,6 +602721,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569703,12 +602738,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14f2fe" }, { @@ -569736,6 +602772,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569751,12 +602789,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05c3cf" }, { @@ -569784,6 +602823,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569799,12 +602840,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "022252" }, { @@ -569832,6 +602874,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569847,12 +602891,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b04c8e" }, { @@ -569880,6 +602925,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569895,12 +602942,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "865877" }, { @@ -569928,6 +602976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569943,12 +602993,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd0987" }, { @@ -569976,6 +603027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -569991,12 +603044,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "178d2e" }, { @@ -570024,6 +603078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570039,12 +603095,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "109bcc" }, { @@ -570072,6 +603129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570087,12 +603146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c782d" }, { @@ -570120,6 +603180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570135,12 +603197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a73d9" }, { @@ -570168,6 +603231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570183,12 +603248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb1b4c" }, { @@ -570216,6 +603282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570231,12 +603299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35d44c" }, { @@ -570264,6 +603333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570279,12 +603350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3c505" }, { @@ -570312,6 +603384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570327,12 +603401,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f14c1" }, { @@ -570360,6 +603435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570375,12 +603452,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9cdda" } ], @@ -570411,6 +603489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570468,7 +603548,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2347": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", @@ -570476,7 +603557,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2345": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", @@ -570484,12 +603566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -570516,6 +603599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570531,12 +603616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4845c" }, { @@ -570564,6 +603650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570579,12 +603667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4845c" }, { @@ -570612,6 +603701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570627,12 +603718,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b40bb" }, { @@ -570660,6 +603752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570675,12 +603769,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cc2c5" }, { @@ -570708,6 +603803,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570723,12 +603820,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -570756,6 +603854,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570771,12 +603871,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -570804,6 +603905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570819,12 +603922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -570852,6 +603956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570867,12 +603973,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fb187" }, { @@ -570900,6 +604007,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570915,12 +604024,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8a1e4" }, { @@ -570948,6 +604058,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -570963,12 +604075,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bad74a" }, { @@ -570996,6 +604109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571011,12 +604126,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -571044,6 +604160,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571059,12 +604177,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -571092,6 +604211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571107,12 +604228,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0eece1" }, { @@ -571140,6 +604262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571155,12 +604279,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -571188,6 +604313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571203,12 +604330,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -571236,6 +604364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571251,12 +604381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -571284,6 +604415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571299,12 +604432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "972fec" }, { @@ -571332,6 +604466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571347,12 +604483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d721c2" }, { @@ -571380,6 +604517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571395,12 +604534,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f7c12" }, { @@ -571428,6 +604568,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571443,12 +604585,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8be848" }, { @@ -571476,6 +604619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571491,12 +604636,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -571524,6 +604670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571539,12 +604687,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11687a" }, { @@ -571572,6 +604721,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571587,12 +604738,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d749ed" }, { @@ -571620,6 +604772,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571635,12 +604789,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "983fd2" }, { @@ -571668,6 +604823,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571683,12 +604840,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "450779" }, { @@ -571716,6 +604874,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571731,12 +604891,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13f5e3" }, { @@ -571764,6 +604925,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571779,12 +604942,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c7586" }, { @@ -571812,6 +604976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571827,12 +604993,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93e081" }, { @@ -571860,6 +605027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571875,12 +605044,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecaabf" }, { @@ -571908,6 +605078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571923,12 +605095,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b8e56" }, { @@ -571956,6 +605129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -571971,12 +605146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72c773" }, { @@ -572004,6 +605180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572019,12 +605197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d17e52" }, { @@ -572052,6 +605231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572067,12 +605248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0dcc95" }, { @@ -572100,6 +605282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572115,12 +605299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2e4db" }, { @@ -572148,6 +605333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572163,12 +605350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3de681" }, { @@ -572196,6 +605384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572211,12 +605401,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b429f" }, { @@ -572244,6 +605435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572259,12 +605452,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75881e" }, { @@ -572292,6 +605486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572307,12 +605503,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d451c6" }, { @@ -572340,6 +605537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572355,12 +605554,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdb299" }, { @@ -572388,6 +605588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572403,12 +605605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75881e" }, { @@ -572436,6 +605639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572451,12 +605656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f003bb" } ], @@ -572490,6 +605696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572498,9 +605706,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -572527,6 +605735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572535,9 +605745,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -572564,6 +605774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572582,12 +605794,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -572614,6 +605827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572629,12 +605844,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf96b9" }, { @@ -572662,6 +605878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572677,12 +605895,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc674e" } ], @@ -572713,6 +605932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572731,12 +605952,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -572763,6 +605985,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572778,12 +606002,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ce113" }, { @@ -572811,6 +606036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572826,12 +606053,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfb393" } ], @@ -572862,6 +606090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572911,12 +606141,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -572943,6 +606174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -572958,12 +606191,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "401b98" }, { @@ -572991,6 +606225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573006,12 +606242,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90dfd" }, { @@ -573039,6 +606276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573054,12 +606293,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4f1ac" }, { @@ -573087,6 +606327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573102,12 +606344,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cf015" }, { @@ -573135,6 +606378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573150,12 +606395,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c118b2" }, { @@ -573183,6 +606429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573198,12 +606446,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c67a9" }, { @@ -573231,6 +606480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573246,12 +606497,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9283d5" }, { @@ -573279,6 +606531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573294,12 +606548,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3ee15" }, { @@ -573327,6 +606582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573342,12 +606599,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7eda6c" }, { @@ -573375,6 +606633,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573390,12 +606650,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "500bf1" }, { @@ -573423,6 +606684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573438,12 +606701,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7330f5" }, { @@ -573471,6 +606735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573486,12 +606752,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f2bda" }, { @@ -573519,6 +606786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573534,12 +606803,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fde12" }, { @@ -573567,6 +606837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573582,12 +606854,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ade6e9" }, { @@ -573615,6 +606888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573630,12 +606905,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "563177" }, { @@ -573663,6 +606939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573678,12 +606956,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cbc9d" }, { @@ -573711,6 +606990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573726,12 +607007,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a03b8" }, { @@ -573759,6 +607041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573774,12 +607058,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "676e6a" }, { @@ -573807,6 +607092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573822,12 +607109,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c2807" }, { @@ -573855,6 +607143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573870,12 +607160,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8948ac" }, { @@ -573903,6 +607194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573918,12 +607211,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f210df" }, { @@ -573951,6 +607245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -573966,12 +607262,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc639e" }, { @@ -573999,6 +607296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574014,12 +607313,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4dd7a" }, { @@ -574047,6 +607347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574062,12 +607364,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d113d1" }, { @@ -574095,6 +607398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574110,12 +607415,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "173e8a" }, { @@ -574143,6 +607449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574158,12 +607466,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5e2f5" }, { @@ -574191,6 +607500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574206,12 +607517,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb6b7a" }, { @@ -574239,6 +607551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574254,12 +607568,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dd75b" }, { @@ -574287,6 +607602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574302,12 +607619,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46ecbb" }, { @@ -574335,6 +607653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574350,12 +607670,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8bc37" }, { @@ -574383,6 +607704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574398,12 +607721,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ea1c7" }, { @@ -574431,6 +607755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574446,12 +607772,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8187f" }, { @@ -574479,6 +607806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574494,12 +607823,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41f836" } ], @@ -574530,6 +607860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574552,12 +607884,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -574584,6 +607917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574599,12 +607934,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9d9d7" }, { @@ -574632,6 +607968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574647,12 +607985,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "915fda" }, { @@ -574680,6 +608019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574695,12 +608036,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fba81e" }, { @@ -574728,6 +608070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574743,12 +608087,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72726a" }, { @@ -574776,6 +608121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574791,12 +608138,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d9573" }, { @@ -574824,6 +608172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574839,12 +608189,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e97907" } ], @@ -574875,6 +608226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574883,9 +608236,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -574912,6 +608265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -574944,7 +608299,8 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2664": { "FaceURL": "https://i.imgur.com/HLQOkvy.jpg", @@ -574952,7 +608308,8 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2665": { "FaceURL": "https://i.imgur.com/FFxz16e.jpg", @@ -574960,12 +608317,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -574992,6 +608350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575007,12 +608367,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef54c7" }, { @@ -575040,6 +608401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575055,12 +608418,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0aae5d" }, { @@ -575088,6 +608452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575103,12 +608469,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60018e" }, { @@ -575136,6 +608503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575151,12 +608520,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a91c0" }, { @@ -575184,6 +608554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575199,12 +608571,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdbf89" }, { @@ -575232,6 +608605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575247,12 +608622,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1484da" }, { @@ -575280,6 +608656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575295,12 +608673,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c32ef" }, { @@ -575328,6 +608707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575343,12 +608724,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "768755" }, { @@ -575376,6 +608758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575391,12 +608775,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17e165" }, { @@ -575424,6 +608809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575439,12 +608826,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8ae8" }, { @@ -575472,6 +608860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575487,12 +608877,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19bf4f" }, { @@ -575520,6 +608911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575535,12 +608928,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93dd4c" }, { @@ -575568,6 +608962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575583,12 +608979,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "158b35" }, { @@ -575616,6 +609013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575631,12 +609030,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c715c9" }, { @@ -575664,6 +609064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575679,12 +609081,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "023684" }, { @@ -575712,6 +609115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575727,12 +609132,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05b7a2" } ], @@ -575763,6 +609169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -575777,12 +609185,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {0,0,0,98}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,1.45},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1, y=1, z=1},\r\n font_size=350,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "9ed124" }, { @@ -575810,6 +609219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -575824,12 +609235,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {0,0,0,98}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,1.45},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1, y=1, z=1},\r\n font_size=350,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "535979" } ], @@ -575860,6 +609272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575868,9 +609282,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -575897,6 +609311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575930,7 +609346,8 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2662": { "FaceURL": "https://i.imgur.com/CN9PXUd.jpg", @@ -575938,12 +609355,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -575970,6 +609388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -575985,12 +609405,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4212af" }, { @@ -576018,6 +609439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576033,12 +609456,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a63585" }, { @@ -576066,6 +609490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576081,12 +609507,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec101c" }, { @@ -576114,6 +609541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576129,12 +609558,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c64bf1" }, { @@ -576162,6 +609592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576177,12 +609609,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c26998" }, { @@ -576210,6 +609643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576225,12 +609660,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e0c5a" }, { @@ -576258,6 +609694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576273,12 +609711,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ead562" }, { @@ -576306,6 +609745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576321,12 +609762,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "893ca0" }, { @@ -576354,6 +609796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576369,12 +609813,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb63e7" }, { @@ -576402,6 +609847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576417,12 +609864,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2de0e" }, { @@ -576450,6 +609898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576465,12 +609915,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e1b71" }, { @@ -576498,6 +609949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576513,12 +609966,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c9c6b" }, { @@ -576546,6 +610000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576561,12 +610017,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f21c4" }, { @@ -576594,6 +610051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576609,12 +610068,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35de51" }, { @@ -576642,6 +610102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576657,12 +610119,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ebdb5" }, { @@ -576690,6 +610153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576705,12 +610170,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86be88" }, { @@ -576738,6 +610204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576753,12 +610221,13 @@ "NumWidth": 10, "NumHeight": 5, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1ba64" } ], @@ -576789,6 +610258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -576803,12 +610274,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {0,0,0,98}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,1.45},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1, y=1, z=1},\r\n font_size=350,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "e19c97" }, { @@ -576836,6 +610308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -576850,12 +610324,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {0,0,0,98}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,1.45},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1, y=1, z=1},\r\n font_size=350,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "b7af99" } ], @@ -576889,6 +610364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576897,9 +610374,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -576926,6 +610403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -576989,7 +610468,8 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "123": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/", @@ -576997,12 +610477,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -577029,6 +610510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577044,12 +610527,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bf255" }, { @@ -577077,6 +610561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577092,12 +610578,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2927c6" }, { @@ -577125,6 +610612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577140,12 +610629,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -577173,6 +610663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577188,12 +610680,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -577221,6 +610714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577236,12 +610731,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b2c36" }, { @@ -577269,6 +610765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577284,12 +610782,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc896" }, { @@ -577317,6 +610816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577332,12 +610833,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -577365,6 +610867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577380,12 +610884,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa340" }, { @@ -577413,6 +610918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577428,12 +610935,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0872f7" }, { @@ -577461,6 +610969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577476,12 +610986,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -577509,6 +611020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577524,12 +611037,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47bd50" }, { @@ -577557,6 +611071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577572,12 +611088,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -577605,6 +611122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577620,12 +611139,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf90c6" }, { @@ -577653,6 +611173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577668,12 +611190,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -577701,6 +611224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577716,12 +611241,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e15d" }, { @@ -577749,6 +611275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577764,12 +611292,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -577797,6 +611326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577812,12 +611343,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -577845,6 +611377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577860,12 +611394,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774f5f" }, { @@ -577893,6 +611428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577908,12 +611445,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -577941,6 +611479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -577956,12 +611496,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d18a7d" }, { @@ -577989,6 +611530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578004,12 +611547,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a1943" }, { @@ -578037,6 +611581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578052,12 +611598,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -578085,6 +611632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578100,12 +611649,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598744" }, { @@ -578133,6 +611683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578148,12 +611700,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -578181,6 +611734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578196,12 +611751,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -578229,6 +611785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578244,12 +611802,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7399a5" }, { @@ -578277,6 +611836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578292,12 +611853,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -578325,6 +611887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578340,12 +611904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "774c0b" }, { @@ -578373,6 +611938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578388,12 +611955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d4c1e" }, { @@ -578421,6 +611989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578436,12 +612006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76a7f5" }, { @@ -578469,6 +612040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578484,12 +612057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "839314" }, { @@ -578517,6 +612091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578532,12 +612108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "945939" }, { @@ -578565,6 +612142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578580,12 +612159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "323435" }, { @@ -578613,6 +612193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578628,12 +612210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5eb4c2" }, { @@ -578661,6 +612244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578676,12 +612261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d13692" }, { @@ -578709,6 +612295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578724,12 +612312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c7570" }, { @@ -578757,6 +612346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578772,12 +612363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa6ad6" }, { @@ -578805,6 +612397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578820,12 +612414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ce8bf" }, { @@ -578853,6 +612448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578868,12 +612465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fcb18" }, { @@ -578901,6 +612499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578916,12 +612516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f97fe2" }, { @@ -578949,6 +612550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -578964,12 +612567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "119a43" }, { @@ -578997,6 +612601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579012,12 +612618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c450f" }, { @@ -579045,6 +612652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579060,12 +612669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d3634" }, { @@ -579093,6 +612703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579108,12 +612720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02cc53" }, { @@ -579141,6 +612754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579156,12 +612771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae9723" }, { @@ -579189,6 +612805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579204,12 +612822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c30682" }, { @@ -579237,6 +612856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579252,12 +612873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c69095" } ], @@ -579288,6 +612910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579317,7 +612941,8 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "123": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/", @@ -579325,12 +612950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -579357,6 +612983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579372,12 +613000,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -579405,6 +613034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579420,12 +613051,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d50777" }, { @@ -579453,6 +613085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579468,12 +613102,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86ca2a" }, { @@ -579501,6 +613136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579516,12 +613153,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -579549,6 +613187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579564,12 +613204,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -579597,6 +613238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579612,12 +613255,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc2822" }, { @@ -579645,6 +613289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579660,12 +613306,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -579693,6 +613340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579708,12 +613357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38826f" }, { @@ -579741,6 +613391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579756,12 +613408,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f6ed8" }, { @@ -579789,6 +613442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579804,12 +613459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc3569" }, { @@ -579837,6 +613493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579852,12 +613510,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e2b9c" }, { @@ -579885,6 +613544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579900,12 +613561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d52dd" }, { @@ -579933,6 +613595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -579948,12 +613612,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce775" } ], @@ -579984,6 +613649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580020,7 +613687,8 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "123": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/", @@ -580028,12 +613696,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -580060,6 +613729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580075,12 +613746,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -580108,6 +613780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580123,12 +613797,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f26ea" }, { @@ -580156,6 +613831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580171,12 +613848,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -580204,6 +613882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580219,12 +613899,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -580252,6 +613933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580267,12 +613950,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -580300,6 +613984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580315,12 +614001,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -580348,6 +614035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580363,12 +614052,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5e76a" }, { @@ -580396,6 +614086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580411,12 +614103,13 @@ "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817446" }, { @@ -580444,6 +614137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580459,12 +614154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b634cc" }, { @@ -580492,6 +614188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580507,12 +614205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88055" }, { @@ -580540,6 +614239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580555,12 +614256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5499a4" }, { @@ -580588,6 +614290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580603,12 +614307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dc445" }, { @@ -580636,6 +614341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580651,12 +614358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5b434" }, { @@ -580684,6 +614392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580699,12 +614409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b4513" }, { @@ -580732,6 +614443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580747,12 +614460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "803008" }, { @@ -580780,6 +614494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580795,12 +614511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a0757" }, { @@ -580828,6 +614545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580843,12 +614562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53cf0a" }, { @@ -580876,6 +614596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580891,12 +614613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33dafa" }, { @@ -580924,6 +614647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580939,12 +614664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "107633" }, { @@ -580972,6 +614698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -580987,12 +614715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7d7cc" } ], @@ -581026,6 +614755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581034,9 +614765,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -581063,6 +614794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581134,7 +614867,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "39": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/", @@ -581142,7 +614876,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "40": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/", @@ -581150,7 +614885,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2346": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/", @@ -581158,7 +614894,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2345": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/", @@ -581166,7 +614903,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2343": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/", @@ -581174,7 +614912,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2344": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/", @@ -581182,7 +614921,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2342": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/", @@ -581190,12 +614930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -581222,6 +614963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581237,12 +614980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "916af7" }, { @@ -581270,6 +615014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581285,12 +615031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c3ec" }, { @@ -581318,6 +615065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581333,12 +615082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "453252" }, { @@ -581366,6 +615116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581381,12 +615133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4701c" }, { @@ -581414,6 +615167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581429,12 +615184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79e1a4" }, { @@ -581462,6 +615218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581477,12 +615235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "32a6e2" }, { @@ -581510,6 +615269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581525,12 +615286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4448e3" }, { @@ -581558,6 +615320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581573,12 +615337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "399d65" }, { @@ -581606,6 +615371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581621,12 +615388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "027b2f" }, { @@ -581654,6 +615422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581669,12 +615439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe04b3" }, { @@ -581702,6 +615473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581717,12 +615490,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "10d41c" }, { @@ -581750,6 +615524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581765,12 +615541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97cc02" }, { @@ -581798,6 +615575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581813,12 +615592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac4b72" }, { @@ -581846,6 +615626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581861,12 +615643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f3ad2" }, { @@ -581894,6 +615677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581909,12 +615694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f39f35" }, { @@ -581942,6 +615728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -581957,12 +615745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "febff1" }, { @@ -581990,6 +615779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582005,12 +615796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c1bf" }, { @@ -582038,6 +615830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582053,12 +615847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95047c" }, { @@ -582086,6 +615881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582101,12 +615898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b39ab7" }, { @@ -582134,6 +615932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582149,12 +615949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e89a0a" }, { @@ -582182,6 +615983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582197,12 +616000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "649527" }, { @@ -582230,6 +616034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582245,12 +616051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f119dc" }, { @@ -582278,6 +616085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582293,12 +616102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dbec9d" }, { @@ -582326,6 +616136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582341,12 +616153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27fab1" }, { @@ -582374,6 +616187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582389,12 +616204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "470ba8" }, { @@ -582422,6 +616238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582437,12 +616255,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b0f6c" }, { @@ -582470,6 +616289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582485,12 +616306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d3a26" }, { @@ -582518,6 +616340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582533,12 +616357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3b3a9" }, { @@ -582566,6 +616391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582581,12 +616408,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "080d4a" }, { @@ -582614,6 +616442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582629,12 +616459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f54e7" }, { @@ -582662,6 +616493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582677,12 +616510,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a42f33" }, { @@ -582710,6 +616544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582725,12 +616561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e7f1b" }, { @@ -582758,6 +616595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582773,12 +616612,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44845f" }, { @@ -582806,6 +616646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582821,12 +616663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "105277" }, { @@ -582854,6 +616697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582869,12 +616714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "659820" }, { @@ -582902,6 +616748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582917,12 +616765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a2381" }, { @@ -582950,6 +616799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -582965,12 +616816,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f64f68" }, { @@ -582998,6 +616850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583013,12 +616867,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d6b52" }, { @@ -583046,6 +616901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583061,12 +616918,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be4dc6" }, { @@ -583094,6 +616952,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583109,12 +616969,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "124288" }, { @@ -583142,6 +617003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583157,12 +617020,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48d3db" }, { @@ -583190,6 +617054,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583205,12 +617071,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d6af5" }, { @@ -583238,6 +617105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583253,12 +617122,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04cdf3" }, { @@ -583286,6 +617156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583301,12 +617173,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4260f0" }, { @@ -583334,6 +617207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583349,12 +617224,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f2498" }, { @@ -583382,6 +617258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583397,12 +617275,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2d9d3" }, { @@ -583430,6 +617309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583445,12 +617326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb8aad" }, { @@ -583478,6 +617360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583493,12 +617377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0368c1" }, { @@ -583526,6 +617411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583541,12 +617428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2e0b7" }, { @@ -583574,6 +617462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583589,12 +617479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "519fb4" }, { @@ -583622,6 +617513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583637,12 +617530,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f1d00" }, { @@ -583670,6 +617564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583685,12 +617581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "256302" }, { @@ -583718,6 +617615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583733,12 +617632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2cc635" }, { @@ -583766,6 +617666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583781,12 +617683,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63b723" }, { @@ -583814,6 +617717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583829,12 +617734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa7abc" } ], @@ -583865,6 +617771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583888,7 +617796,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2651": { "FaceURL": "https://i.imgur.com/vLH2OYg.jpg", @@ -583896,12 +617805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -583928,6 +617838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583943,12 +617855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93e291" }, { @@ -583976,6 +617889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -583991,12 +617906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "124422" }, { @@ -584024,6 +617940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584039,12 +617957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c4fa7" }, { @@ -584072,6 +617991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584087,12 +618008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b68d07" }, { @@ -584120,6 +618042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584135,12 +618059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fa708" }, { @@ -584168,6 +618093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584183,12 +618110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9cebe" }, { @@ -584216,6 +618144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584231,12 +618161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c4fa7" } ], @@ -584270,6 +618201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584278,9 +618211,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -584307,6 +618240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584341,7 +618276,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "76": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -584349,7 +618285,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "89": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -584357,7 +618294,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "73": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/", @@ -584365,12 +618303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -584397,6 +618336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584412,12 +618353,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b1301" }, { @@ -584445,6 +618387,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584460,12 +618404,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20972b" }, { @@ -584493,6 +618438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584508,12 +618455,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2281d8" }, { @@ -584541,6 +618489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584556,12 +618506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67af79" }, { @@ -584589,6 +618540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584604,12 +618557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00ae1b" }, { @@ -584637,6 +618591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584652,12 +618608,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcc376" }, { @@ -584685,6 +618642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584700,12 +618659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81741e" }, { @@ -584733,6 +618693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584748,12 +618710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e37396" }, { @@ -584781,6 +618744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584796,12 +618761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "528887" }, { @@ -584829,6 +618795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584844,12 +618812,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fe6c7" }, { @@ -584877,6 +618846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584892,12 +618863,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db62d1" }, { @@ -584925,6 +618897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584940,12 +618914,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "551a7b" }, { @@ -584973,6 +618948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -584988,12 +618965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "891bde" }, { @@ -585021,6 +618999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585036,12 +619016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b796e" }, { @@ -585069,6 +619050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585084,12 +619067,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "259a79" }, { @@ -585117,6 +619101,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585132,12 +619118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96ae32" }, { @@ -585165,6 +619152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585180,12 +619169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "569b06" }, { @@ -585213,6 +619203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585228,12 +619220,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e86419" } ], @@ -585264,6 +619257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585319,7 +619314,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "75": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -585327,7 +619323,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2657": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -585335,7 +619332,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2658": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/", @@ -585343,7 +619341,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "53": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/", @@ -585351,7 +619350,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "54": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/", @@ -585359,7 +619359,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2659": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/", @@ -585367,7 +619368,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "56": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/", @@ -585375,7 +619377,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "66": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/", @@ -585383,7 +619386,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "67": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/", @@ -585391,7 +619395,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2660": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/", @@ -585399,12 +619404,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -585431,6 +619437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585446,12 +619454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79bc73" }, { @@ -585479,6 +619488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585494,12 +619505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "290595" }, { @@ -585527,6 +619539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585542,12 +619556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bddadf" }, { @@ -585575,6 +619590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585590,12 +619607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78cad4" }, { @@ -585623,6 +619641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585638,12 +619658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c297d" }, { @@ -585671,6 +619692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585686,12 +619709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "225198" }, { @@ -585719,6 +619743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585734,12 +619760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59477d" }, { @@ -585767,6 +619794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585782,12 +619811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3b19e" }, { @@ -585815,6 +619845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585830,12 +619862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1b747" }, { @@ -585863,6 +619896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585878,12 +619913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcd44f" }, { @@ -585911,6 +619947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585926,12 +619964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7fddb" }, { @@ -585959,6 +619998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -585974,12 +620015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3621c" }, { @@ -586007,6 +620049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586022,12 +620066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "005e92" }, { @@ -586055,6 +620100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586070,12 +620117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d5122" }, { @@ -586103,6 +620151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586118,12 +620168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9dfc0" }, { @@ -586151,6 +620202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586166,12 +620219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9dfc0" }, { @@ -586199,6 +620253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586214,12 +620270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd576f" }, { @@ -586247,6 +620304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586262,12 +620321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eba049" }, { @@ -586295,6 +620355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586310,12 +620372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7b748" }, { @@ -586343,6 +620406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586358,12 +620423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74840a" }, { @@ -586391,6 +620457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586406,12 +620474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37a76b" }, { @@ -586439,6 +620508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586454,12 +620525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "552a1d" }, { @@ -586487,6 +620559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586502,12 +620576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15983c" }, { @@ -586535,6 +620610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586550,12 +620627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26b322" }, { @@ -586583,6 +620661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586598,12 +620678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03b080" }, { @@ -586631,6 +620712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586646,12 +620729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c5ea8" }, { @@ -586679,6 +620763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586694,12 +620780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b7d4c" }, { @@ -586727,6 +620814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586742,12 +620831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab9d69" }, { @@ -586775,6 +620865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586790,12 +620882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5034e" }, { @@ -586823,6 +620916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586838,12 +620933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e103cf" }, { @@ -586871,6 +620967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586886,12 +620984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "499281" }, { @@ -586919,6 +621018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586934,12 +621035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab18a" }, { @@ -586967,6 +621069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -586982,12 +621086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63f502" }, { @@ -587015,6 +621120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587030,12 +621137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb968b" }, { @@ -587063,6 +621171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587078,12 +621188,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "548a9a" }, { @@ -587111,6 +621222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587126,12 +621239,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16c364" }, { @@ -587159,6 +621273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587174,12 +621290,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef1ce2" }, { @@ -587207,6 +621324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587222,12 +621341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ea5ab" }, { @@ -587255,6 +621375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587270,12 +621392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d0d56" } ], @@ -587306,6 +621429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587326,12 +621451,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -587358,6 +621484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587373,12 +621501,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df9762" }, { @@ -587406,6 +621535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587421,12 +621552,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c9b49" }, { @@ -587454,6 +621586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587469,12 +621603,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3a2d" }, { @@ -587502,6 +621637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587517,12 +621654,13 @@ "NumWidth": 10, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dccafc" } ], @@ -587556,6 +621694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587564,9 +621704,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -587593,6 +621733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587611,9 +621753,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -587640,6 +621782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587666,12 +621810,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -587698,6 +621843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587713,12 +621860,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad9989" }, { @@ -587746,6 +621894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587761,12 +621911,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "371ecc" }, { @@ -587794,6 +621945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587809,12 +621962,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4bac7" }, { @@ -587842,6 +621996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587857,12 +622013,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bb58e" }, { @@ -587890,6 +622047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587905,12 +622064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d48b3b" }, { @@ -587938,6 +622098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -587953,12 +622115,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c7b37" }, { @@ -587986,6 +622149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588001,12 +622166,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6506d9" }, { @@ -588034,6 +622200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588049,12 +622217,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a7486" }, { @@ -588082,6 +622251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588097,12 +622268,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae0f38" }, { @@ -588130,6 +622302,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588145,12 +622319,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d4cbc" } ], @@ -588181,6 +622356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588196,12 +622373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -588229,6 +622407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588244,12 +622424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -588277,6 +622458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588292,12 +622475,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -588325,6 +622509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588340,12 +622526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -588373,6 +622560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588388,12 +622577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -588421,6 +622611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588440,12 +622632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -588472,6 +622665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588487,12 +622682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -588520,6 +622716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588535,12 +622733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "363bfa" }, { @@ -588568,6 +622767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588583,12 +622784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "870ee1" } ], @@ -588619,6 +622821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588638,12 +622842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -588670,6 +622875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588685,12 +622892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -588718,6 +622926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588733,12 +622943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19a53b" }, { @@ -588766,6 +622977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588781,12 +622994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa6826" } ], @@ -588817,6 +623031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588836,12 +623052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -588868,6 +623085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588883,12 +623102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -588916,6 +623136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588931,12 +623153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f2492" }, { @@ -588964,6 +623187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -588979,12 +623204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3480cc" } ], @@ -589015,6 +623241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589034,12 +623262,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -589066,6 +623295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589081,12 +623312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -589114,6 +623346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589129,12 +623363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b50ce8" }, { @@ -589162,6 +623397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589177,12 +623414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4441df" } ], @@ -589213,6 +623451,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589232,12 +623472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -589264,6 +623505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589279,12 +623522,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -589312,6 +623556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589327,12 +623573,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c4124" }, { @@ -589360,6 +623607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589375,12 +623624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7613e0" } ], @@ -589411,6 +623661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589426,12 +623678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c76d9" }, { @@ -589459,6 +623712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589478,12 +623733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -589510,6 +623766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589525,12 +623783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9de2ac" }, { @@ -589558,6 +623817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589573,12 +623834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f4625" }, { @@ -589606,6 +623868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589621,12 +623885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" } ], @@ -589657,6 +623922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589672,12 +623939,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5630c2" }, { @@ -589705,6 +623973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589726,12 +623996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -589758,6 +624029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589773,12 +624046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70e5f9" }, { @@ -589806,6 +624080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589821,12 +624097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3ed47" }, { @@ -589854,6 +624131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589869,12 +624148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "423356" }, { @@ -589902,6 +624182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589917,12 +624199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f24e3" }, { @@ -589950,6 +624233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -589965,12 +624250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "120736" } ], @@ -590017,6 +624303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590055,12 +624343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -590087,6 +624376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590102,12 +624393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b413df" }, { @@ -590135,6 +624427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590150,12 +624444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -590183,6 +624478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590198,12 +624495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66b07b" }, { @@ -590231,6 +624529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590246,12 +624546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -590279,6 +624580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590294,12 +624597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -590327,6 +624631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590342,12 +624648,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "574dae" }, { @@ -590375,6 +624682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590390,12 +624699,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99bf87" }, { @@ -590423,6 +624733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590438,12 +624750,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -590471,6 +624784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590486,12 +624801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c958cc" }, { @@ -590519,6 +624835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590534,12 +624852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -590567,6 +624886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590582,12 +624903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -590615,6 +624937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590630,12 +624954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd162" }, { @@ -590663,6 +624988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590678,12 +625005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -590711,6 +625039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590726,12 +625056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -590759,6 +625090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590774,12 +625107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -590807,6 +625141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590822,12 +625158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ceeb1" }, { @@ -590855,6 +625192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590870,12 +625209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -590903,6 +625243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590918,12 +625260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -590951,6 +625294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -590966,12 +625311,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "953a77" }, { @@ -590999,6 +625345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591014,12 +625362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c7c45" }, { @@ -591047,6 +625396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591062,12 +625413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23b849" }, { @@ -591095,6 +625447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591110,12 +625464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" } ], @@ -591146,6 +625501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591161,12 +625518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a9f9a" }, { @@ -591194,6 +625552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591209,12 +625569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4146bf" }, { @@ -591242,6 +625603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591257,12 +625620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a78d38" }, { @@ -591290,6 +625654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591305,12 +625671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f58ed" }, { @@ -591338,6 +625705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591353,12 +625722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ba29a" }, { @@ -591386,6 +625756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591407,12 +625779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -591439,6 +625812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591454,12 +625829,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e26f60" }, { @@ -591487,6 +625863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591502,12 +625880,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fbc07" }, { @@ -591535,6 +625914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591550,12 +625931,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be354d" }, { @@ -591583,6 +625965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591598,12 +625982,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6779fe" }, { @@ -591631,6 +626016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591646,12 +626033,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ac93f" } ], @@ -591682,6 +626070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591697,12 +626087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d71f11" }, { @@ -591730,6 +626121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591748,12 +626141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -591780,6 +626174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591795,12 +626191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1c002" }, { @@ -591828,6 +626225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591843,12 +626242,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ea038" } ], @@ -591879,6 +626279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591897,12 +626299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -591929,6 +626332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591944,12 +626349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "463cbd" }, { @@ -591977,6 +626383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -591992,12 +626400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad9989" } ], @@ -592028,6 +626437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592043,12 +626454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1e599" }, { @@ -592076,6 +626488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592084,9 +626498,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -592113,6 +626527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592131,9 +626547,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b1aca" }, { @@ -592161,6 +626577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592179,9 +626597,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4681" }, { @@ -592209,6 +626627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592227,9 +626647,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3d96a" }, { @@ -592257,6 +626677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592275,9 +626697,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a1506" }, { @@ -592305,6 +626727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592323,9 +626747,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d6103" }, { @@ -592353,6 +626777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592371,9 +626797,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc8bbb" }, { @@ -592401,6 +626827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592419,9 +626847,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc8bbb" }, { @@ -592449,6 +626877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592467,9 +626897,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff5fa7" }, { @@ -592497,6 +626927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592515,9 +626947,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80b748" }, { @@ -592545,6 +626977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592563,9 +626997,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5142c" }, { @@ -592593,6 +627027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592611,9 +627047,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "669eed" }, { @@ -592641,6 +627077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592659,9 +627097,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b72a7" }, { @@ -592689,6 +627127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592707,9 +627147,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ab38b" }, { @@ -592737,6 +627177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592755,9 +627197,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b644d2" }, { @@ -592785,6 +627227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592803,9 +627247,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d4467" } ], @@ -592836,6 +627280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592844,9 +627290,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -592873,6 +627319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592891,9 +627339,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d0979c" }, { @@ -592921,6 +627369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592939,9 +627389,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e31821" }, { @@ -592969,6 +627419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -592987,9 +627439,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3d96a" }, { @@ -593017,6 +627469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593035,9 +627489,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a1506" }, { @@ -593065,6 +627519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593083,9 +627539,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d6103" }, { @@ -593113,6 +627569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593131,9 +627589,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc8bbb" }, { @@ -593161,6 +627619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593179,9 +627639,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc8bbb" }, { @@ -593209,6 +627669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593227,9 +627689,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c74ff" }, { @@ -593257,6 +627719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593275,9 +627739,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "afdf72" }, { @@ -593305,6 +627769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593323,9 +627789,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b35a43" }, { @@ -593353,6 +627819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593371,9 +627839,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc2e48" }, { @@ -593401,6 +627869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593419,9 +627889,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79296d" }, { @@ -593449,6 +627919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593467,9 +627939,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13b3ff" }, { @@ -593497,6 +627969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593515,9 +627989,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a8592" }, { @@ -593545,6 +628019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593563,9 +628039,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14622d" } ], @@ -593596,6 +628072,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593611,12 +628089,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45facd", "States": { "13": { @@ -593644,6 +628123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593659,12 +628140,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ce342" }, "12": { @@ -593692,6 +628174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593707,12 +628191,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "537250" }, "11": { @@ -593740,6 +628225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593755,12 +628242,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e04c72" }, "10": { @@ -593788,6 +628276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593803,12 +628293,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "630d74" }, "9": { @@ -593836,6 +628327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593851,12 +628344,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9e4e9" }, "8": { @@ -593884,6 +628378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593899,12 +628395,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dec02a" }, "7": { @@ -593932,6 +628429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593947,12 +628446,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a81b44" }, "6": { @@ -593980,6 +628480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -593995,12 +628497,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "212aec" }, "5": { @@ -594028,6 +628531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594043,12 +628548,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6b49e" }, "4": { @@ -594076,6 +628582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594091,12 +628599,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7ed10" }, "3": { @@ -594124,6 +628633,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594139,12 +628650,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5e605" }, "2": { @@ -594172,6 +628684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594187,12 +628701,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8aff87" } } @@ -594228,6 +628743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594236,9 +628753,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -594265,6 +628782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594317,7 +628836,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", @@ -594325,7 +628845,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3693": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", @@ -594333,7 +628854,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3687": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", @@ -594341,12 +628863,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -594373,6 +628896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594388,12 +628913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "892799" }, { @@ -594421,6 +628947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594436,12 +628964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97fa36" }, { @@ -594469,6 +628998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594484,12 +629015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "892799" }, { @@ -594517,6 +629049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594532,12 +629066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99b040" }, { @@ -594565,6 +629100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594580,12 +629117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99b040" }, { @@ -594613,6 +629151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594628,12 +629168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99b040" }, { @@ -594661,6 +629202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594676,12 +629219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bec23e" }, { @@ -594709,6 +629253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594724,12 +629270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bec23e" }, { @@ -594757,6 +629304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594772,12 +629321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8cfe7" }, { @@ -594805,6 +629355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594820,12 +629372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8cfe7" }, { @@ -594853,6 +629406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594868,12 +629423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7dd13" }, { @@ -594901,6 +629457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594916,12 +629474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7dd13" }, { @@ -594949,6 +629508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -594964,12 +629525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2cc36" }, { @@ -594997,6 +629559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595012,12 +629576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44760d" }, { @@ -595045,6 +629610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595060,12 +629627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "263ac1" }, { @@ -595093,6 +629661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595108,12 +629678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5cae9" }, { @@ -595141,6 +629712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595156,12 +629729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7d884" }, { @@ -595189,6 +629763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595204,12 +629780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d14e41" }, { @@ -595237,6 +629814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595252,12 +629831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aac284" }, { @@ -595285,6 +629865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595300,12 +629882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435152" }, { @@ -595333,6 +629916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595348,12 +629933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "910e54" }, { @@ -595381,6 +629967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595396,12 +629984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a0ad2" }, { @@ -595429,6 +630018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595444,12 +630035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a7eac" }, { @@ -595477,6 +630069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595492,12 +630086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af7186" }, { @@ -595525,6 +630120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595540,12 +630137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e8ae3" }, { @@ -595573,6 +630171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595588,12 +630188,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ec90f" }, { @@ -595621,6 +630222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595636,12 +630239,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cb235" }, { @@ -595669,6 +630273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595684,12 +630290,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cb235" }, { @@ -595717,6 +630324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595732,12 +630341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cb235" }, { @@ -595765,6 +630375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595780,12 +630392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a89dbf" }, { @@ -595813,6 +630426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595828,12 +630443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30fc53" }, { @@ -595861,6 +630477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595876,12 +630494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f3e16" }, { @@ -595909,6 +630528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595924,12 +630545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "311eb1" }, { @@ -595957,6 +630579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -595972,12 +630596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a3ece" }, { @@ -596005,6 +630630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596020,12 +630647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8d84d" }, { @@ -596053,6 +630681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596068,12 +630698,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdb9a3" } ], @@ -596104,6 +630735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596160,7 +630793,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2760": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", @@ -596168,7 +630802,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2754": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", @@ -596176,7 +630811,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2755": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", @@ -596184,7 +630820,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2753": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", @@ -596192,12 +630829,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -596224,6 +630862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596239,12 +630879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "550697" }, { @@ -596272,6 +630913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596287,12 +630930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fe838" }, { @@ -596320,6 +630964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596335,12 +630981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6ed28" }, { @@ -596368,6 +631015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596383,12 +631032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "863f1a" }, { @@ -596416,6 +631066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596431,12 +631083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5bcc5d" }, { @@ -596464,6 +631117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596479,12 +631134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34b9e9" }, { @@ -596512,6 +631168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596527,12 +631185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2ad21" }, { @@ -596560,6 +631219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596575,12 +631236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06bdb3" }, { @@ -596608,6 +631270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596623,12 +631287,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2b8fc" }, { @@ -596656,6 +631321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596671,12 +631338,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55d8f1" }, { @@ -596704,6 +631372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596719,12 +631389,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64b0a5" }, { @@ -596752,6 +631423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596767,12 +631440,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1042cb" }, { @@ -596800,6 +631474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596815,12 +631491,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62d69d" }, { @@ -596848,6 +631525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596863,12 +631542,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9471f2" }, { @@ -596896,6 +631576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596911,12 +631593,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d3a3b" }, { @@ -596944,6 +631627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -596959,12 +631644,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13d3f3" }, { @@ -596992,6 +631678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597007,12 +631695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "71e37c" }, { @@ -597040,6 +631729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597055,12 +631746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f896e" }, { @@ -597088,6 +631780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597103,12 +631797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "962a85" }, { @@ -597136,6 +631831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597151,12 +631848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d6a42" }, { @@ -597184,6 +631882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597199,12 +631899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c0d7e" }, { @@ -597232,6 +631933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597247,12 +631950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f65ded" }, { @@ -597280,6 +631984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597295,12 +632001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d02d98" }, { @@ -597328,6 +632035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597343,12 +632052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de0939" }, { @@ -597376,6 +632086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597391,12 +632103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "801539" }, { @@ -597424,6 +632137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597439,12 +632154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad69c7" }, { @@ -597472,6 +632188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597487,12 +632205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "832e11" }, { @@ -597520,6 +632239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597535,12 +632256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fc433" }, { @@ -597568,6 +632290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597583,12 +632307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8767b5" }, { @@ -597616,6 +632341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597631,12 +632358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "716bb1" }, { @@ -597664,6 +632392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597679,12 +632409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84bbd0" }, { @@ -597712,6 +632443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597727,12 +632460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3088f" }, { @@ -597760,6 +632494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597775,12 +632511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "199d00" }, { @@ -597808,6 +632545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597823,12 +632562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9c83e" }, { @@ -597856,6 +632596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597871,12 +632613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b05f2" }, { @@ -597904,6 +632647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597919,12 +632664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca12dd" }, { @@ -597952,6 +632698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -597967,12 +632715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70fcce" }, { @@ -598000,6 +632749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598015,12 +632766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57bcb8" }, { @@ -598048,6 +632800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598063,12 +632817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e45a9" }, { @@ -598096,6 +632851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598111,12 +632868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac274f" } ], @@ -598147,6 +632905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598201,7 +632961,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2759": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", @@ -598209,7 +632970,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2757": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", @@ -598217,7 +632979,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2753": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", @@ -598225,7 +632988,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2754": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", @@ -598233,12 +632997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -598265,6 +633030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598280,12 +633047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5885f" }, { @@ -598313,6 +633081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598328,12 +633098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b521b" }, { @@ -598361,6 +633132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598376,12 +633149,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73138b" }, { @@ -598409,6 +633183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598424,12 +633200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91ea7c" }, { @@ -598457,6 +633234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598472,12 +633251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "669016" }, { @@ -598505,6 +633285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598520,12 +633302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "561923" }, { @@ -598553,6 +633336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598568,12 +633353,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c309da" }, { @@ -598601,6 +633387,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598616,12 +633404,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a9156" }, { @@ -598649,6 +633438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598664,12 +633455,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecc30a" }, { @@ -598697,6 +633489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598712,12 +633506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bfb2e" }, { @@ -598745,6 +633540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598760,12 +633557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e23b2" }, { @@ -598793,6 +633591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598808,12 +633608,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7725f0" }, { @@ -598841,6 +633642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598856,12 +633659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "867256" }, { @@ -598889,6 +633693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598904,12 +633710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e08f79" }, { @@ -598937,6 +633744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -598952,12 +633761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5bd251" }, { @@ -598985,6 +633795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599000,12 +633812,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "789bfc" }, { @@ -599033,6 +633846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599048,12 +633863,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a471d" }, { @@ -599081,6 +633897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599096,12 +633914,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13e568" }, { @@ -599129,6 +633948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599144,12 +633965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "300aee" }, { @@ -599177,6 +633999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599192,12 +634016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ac3ea" }, { @@ -599225,6 +634050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599240,12 +634067,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b538f8" }, { @@ -599273,6 +634101,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599288,12 +634118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7bea34" }, { @@ -599321,6 +634152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599336,12 +634169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2b8fc" }, { @@ -599369,6 +634203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599384,12 +634220,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09f034" }, { @@ -599417,6 +634254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599432,12 +634271,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f9bb1" }, { @@ -599465,6 +634305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599480,12 +634322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72ac0c" }, { @@ -599513,6 +634356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599528,12 +634373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c61d9" }, { @@ -599561,6 +634407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599576,12 +634424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bb83e" }, { @@ -599609,6 +634458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599624,12 +634475,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e281ec" }, { @@ -599657,6 +634509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599672,12 +634526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4142d6" }, { @@ -599705,6 +634560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599720,12 +634577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1abfba" }, { @@ -599753,6 +634611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599768,12 +634628,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1feabc" }, { @@ -599801,6 +634662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599816,12 +634679,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d01350" }, { @@ -599849,6 +634713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599864,12 +634730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c4183" }, { @@ -599897,6 +634764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599912,12 +634781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6adc7b" }, { @@ -599945,6 +634815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -599960,12 +634832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ba381" }, { @@ -599993,6 +634866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600008,12 +634883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f39695" }, { @@ -600041,6 +634917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600056,12 +634934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f087e3" } ], @@ -600092,6 +634971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600114,12 +634995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -600146,6 +635028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600161,12 +635045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0eb939" }, { @@ -600194,6 +635079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600209,12 +635096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7870f6" }, { @@ -600242,6 +635130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600257,12 +635147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "408a82" }, { @@ -600290,6 +635181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600305,12 +635198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "525275" }, { @@ -600338,6 +635232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600353,12 +635249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dac94" }, { @@ -600386,6 +635283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600401,12 +635300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3761ce" } ], @@ -600437,6 +635337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600460,12 +635362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -600492,6 +635395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600507,12 +635412,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4949ea" }, { @@ -600540,6 +635446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600555,12 +635463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8092b" }, { @@ -600588,6 +635497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600603,12 +635514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a558b5" }, { @@ -600636,6 +635548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600651,12 +635565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7c676" }, { @@ -600684,6 +635599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600699,12 +635616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "407e66" }, { @@ -600732,6 +635650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600747,12 +635667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64341a" }, { @@ -600780,6 +635701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600795,12 +635718,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fa642" } ], @@ -600831,6 +635755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600852,12 +635778,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -600884,6 +635811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600899,12 +635828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9136e" }, { @@ -600932,6 +635862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600947,12 +635879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d53c1" }, { @@ -600980,6 +635913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -600995,12 +635930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d32fa0" }, { @@ -601028,6 +635964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601043,12 +635981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa8c0e" }, { @@ -601076,6 +636015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601091,12 +636032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4c440" } ], @@ -601127,6 +636069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601148,12 +636092,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -601180,6 +636125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601195,12 +636142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a13d0" }, { @@ -601228,6 +636176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601243,12 +636193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb625" }, { @@ -601276,6 +636227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601291,12 +636244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81dc7a" }, { @@ -601324,6 +636278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601339,12 +636295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "976fd8" }, { @@ -601372,6 +636329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601387,12 +636346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab69b8" } ], @@ -601423,6 +636383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601443,12 +636405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -601475,6 +636438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601490,12 +636455,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47147f" }, { @@ -601523,6 +636489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601538,12 +636506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c04e0" }, { @@ -601571,6 +636540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601586,12 +636557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "278e46" }, { @@ -601619,6 +636591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601634,12 +636608,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e49187" } ], @@ -601670,6 +636645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601692,12 +636669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -601724,6 +636702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601739,12 +636719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef132d" }, { @@ -601772,6 +636753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601787,12 +636770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "717c42" }, { @@ -601820,6 +636804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601835,12 +636821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbcb9f" }, { @@ -601868,6 +636855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601883,12 +636872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43ba03" }, { @@ -601916,6 +636906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601931,12 +636923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f41b0" }, { @@ -601964,6 +636957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -601979,12 +636974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a350a" } ], @@ -602015,6 +637011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602035,12 +637033,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -602067,6 +637066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602082,12 +637083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7732b3" }, { @@ -602115,6 +637117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602130,12 +637134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e4752" }, { @@ -602163,6 +637168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602178,12 +637185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "10c2cb" }, { @@ -602211,6 +637219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602226,12 +637236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db1b65" } ], @@ -602262,6 +637273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602282,12 +637295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -602314,6 +637328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602329,12 +637345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "326f11" }, { @@ -602362,6 +637379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602377,12 +637396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c35966" }, { @@ -602410,6 +637430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602425,12 +637447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f2c2e" }, { @@ -602458,6 +637481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602473,12 +637498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "367d03" } ], @@ -602509,6 +637535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602528,12 +637556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -602560,6 +637589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602575,12 +637606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f798c8" }, { @@ -602608,6 +637640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602623,12 +637657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f92f1e" }, { @@ -602656,6 +637691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602671,12 +637708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1eb9b" } ], @@ -602707,6 +637745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602727,12 +637767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -602759,6 +637800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602774,12 +637817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "397fce" }, { @@ -602807,6 +637851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602822,12 +637868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f84e0e" }, { @@ -602855,6 +637902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602870,12 +637919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79968" }, { @@ -602903,6 +637953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602918,12 +637970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "092d86" } ], @@ -602954,6 +638007,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -602991,7 +638046,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2319": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", @@ -602999,7 +638055,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", @@ -603007,12 +638064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -603039,6 +638097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603054,12 +638114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46cad7" }, { @@ -603087,6 +638148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603102,12 +638165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d862a5" }, { @@ -603135,6 +638199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603150,12 +638216,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba8956" }, { @@ -603183,6 +638250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603198,12 +638267,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ef9c4" }, { @@ -603231,6 +638301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603246,12 +638318,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6480fa" }, { @@ -603279,6 +638352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603294,12 +638369,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cb46b" }, { @@ -603327,6 +638403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603342,12 +638420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "94ef8e" }, { @@ -603375,6 +638454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603390,12 +638471,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "060886" }, { @@ -603423,6 +638505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603438,12 +638522,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5616e" }, { @@ -603471,6 +638556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603486,12 +638573,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "327f3b" }, { @@ -603519,6 +638607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603534,12 +638624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b69ae" }, { @@ -603567,6 +638658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603582,12 +638675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "349eb6" }, { @@ -603615,6 +638709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603630,12 +638726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33990b" }, { @@ -603663,6 +638760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603678,12 +638777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9160a" }, { @@ -603711,6 +638811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603726,12 +638828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1bd9a" }, { @@ -603759,6 +638862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603774,12 +638879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0ffe2" }, { @@ -603807,6 +638913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603822,12 +638930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5483" }, { @@ -603855,6 +638964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603870,12 +638981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0699e7" }, { @@ -603903,6 +639015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603918,12 +639032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7fb9d" }, { @@ -603951,6 +639066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -603966,12 +639083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffedcd" }, { @@ -603999,6 +639117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604014,12 +639134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c24b98" } ], @@ -604050,6 +639171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604081,7 +639204,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2319": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", @@ -604089,7 +639213,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2320": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", @@ -604097,7 +639222,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", @@ -604105,12 +639231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -604137,6 +639264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604152,12 +639281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "845563" }, { @@ -604185,6 +639315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604200,12 +639332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eca18e" }, { @@ -604233,6 +639366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604248,12 +639383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05d5ef" }, { @@ -604281,6 +639417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604296,12 +639434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fe9f1" }, { @@ -604329,6 +639468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604344,12 +639485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7fb9d" }, { @@ -604377,6 +639519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604392,12 +639536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3f8c3" }, { @@ -604425,6 +639570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604440,12 +639587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1539ea" }, { @@ -604473,6 +639621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604488,12 +639638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc78d7" }, { @@ -604521,6 +639672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604536,12 +639689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a0759" }, { @@ -604569,6 +639723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604584,12 +639740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c31146" }, { @@ -604617,6 +639774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604632,12 +639791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68cfea" }, { @@ -604665,6 +639825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604680,12 +639842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b7c7c" }, { @@ -604713,6 +639876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604728,12 +639893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d5674" }, { @@ -604761,6 +639927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604776,12 +639944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96a76c" }, { @@ -604809,6 +639978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604824,12 +639995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35dcd2" } ], @@ -604860,6 +640032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604883,7 +640057,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", @@ -604891,12 +640066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -604923,6 +640099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604938,12 +640116,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a83e8" }, { @@ -604971,6 +640150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -604986,12 +640167,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d80c14" }, { @@ -605019,6 +640201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605034,12 +640218,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41d2da" }, { @@ -605067,6 +640252,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605082,12 +640269,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23b99c" }, { @@ -605115,6 +640303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605130,12 +640320,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4f8dc" }, { @@ -605163,6 +640354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605178,12 +640371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa1331" }, { @@ -605211,6 +640405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605226,12 +640422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2806a" } ], @@ -605262,6 +640459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605321,7 +640520,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3124": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", @@ -605329,7 +640529,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3129": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", @@ -605337,7 +640538,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3123": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", @@ -605345,7 +640547,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3125": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", @@ -605353,12 +640556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -605385,6 +640589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605400,12 +640606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4452d" }, { @@ -605433,6 +640640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605448,12 +640657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a81e3d" }, { @@ -605481,6 +640691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605496,12 +640708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f2790" }, { @@ -605529,6 +640742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605544,12 +640759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f2790" }, { @@ -605577,6 +640793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605592,12 +640810,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d21848" }, { @@ -605625,6 +640844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605640,12 +640861,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d21848" }, { @@ -605673,6 +640895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605688,12 +640912,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "292724" }, { @@ -605721,6 +640946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605736,12 +640963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "292724" }, { @@ -605769,6 +640997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605784,12 +641014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f6a54" }, { @@ -605817,6 +641048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605832,12 +641065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f6a54" }, { @@ -605865,6 +641099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605880,12 +641116,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "940982" }, { @@ -605913,6 +641150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605928,12 +641167,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "582874" }, { @@ -605961,6 +641201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -605976,12 +641218,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "582874" }, { @@ -606009,6 +641252,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606024,12 +641269,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "582874" }, { @@ -606057,6 +641303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606072,12 +641320,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "582874" }, { @@ -606105,6 +641354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606120,12 +641371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31bd61" }, { @@ -606153,6 +641405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606168,12 +641422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03d161" }, { @@ -606201,6 +641456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606216,12 +641473,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "367d1d" }, { @@ -606249,6 +641507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606264,12 +641524,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "723cb3" }, { @@ -606297,6 +641558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606312,12 +641575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bcd556" }, { @@ -606345,6 +641609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606360,12 +641626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3d507" }, { @@ -606393,6 +641660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606408,12 +641677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b8b0d" }, { @@ -606441,6 +641711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606456,12 +641728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6bad1" }, { @@ -606489,6 +641762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606504,12 +641779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e7c75" }, { @@ -606537,6 +641813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606552,12 +641830,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "763808" }, { @@ -606585,6 +641864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606600,12 +641881,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b9471" }, { @@ -606633,6 +641915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606648,12 +641932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9aba5" }, { @@ -606681,6 +641966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606696,12 +641983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c3cbf" }, { @@ -606729,6 +642017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606744,12 +642034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69cb27" }, { @@ -606777,6 +642068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606792,12 +642085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8be145" }, { @@ -606825,6 +642119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606840,12 +642136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43e32c" }, { @@ -606873,6 +642170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606888,12 +642187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a14df" }, { @@ -606921,6 +642221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606936,12 +642238,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2e22d" }, { @@ -606969,6 +642272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -606984,12 +642289,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea642f" }, { @@ -607017,6 +642323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607032,12 +642340,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a6ee0" }, { @@ -607065,6 +642374,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607080,12 +642391,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "105a09" }, { @@ -607113,6 +642425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607128,12 +642442,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abace6" }, { @@ -607161,6 +642476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607176,12 +642493,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90788e" }, { @@ -607209,6 +642527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607224,12 +642544,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "726d1d" }, { @@ -607257,6 +642578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607272,12 +642595,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d99735" }, { @@ -607305,6 +642629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607320,12 +642646,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73bccf" }, { @@ -607353,6 +642680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607368,12 +642697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2237f4" }, { @@ -607401,6 +642731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607416,12 +642748,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "976ab3" } ], @@ -607452,6 +642785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607506,7 +642841,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3126": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", @@ -607514,7 +642850,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3124": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", @@ -607522,7 +642859,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3123": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", @@ -607530,7 +642868,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3125": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", @@ -607538,12 +642877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -607570,6 +642910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607585,12 +642927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcf02a" }, { @@ -607618,6 +642961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607633,12 +642978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "397ce4" }, { @@ -607666,6 +643012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607681,12 +643029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bcd556" }, { @@ -607714,6 +643063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607729,12 +643080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa6a29" }, { @@ -607762,6 +643114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607777,12 +643131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d76c9f" }, { @@ -607810,6 +643165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607825,12 +643182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ccc01a" }, { @@ -607858,6 +643216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607873,12 +643233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "112a15" }, { @@ -607906,6 +643267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607921,12 +643284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdae8b" }, { @@ -607954,6 +643318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -607969,12 +643335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c2dfe" }, { @@ -608002,6 +643369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608017,12 +643386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e3b52" }, { @@ -608050,6 +643420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608065,12 +643437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ea4fd" }, { @@ -608098,6 +643471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608113,12 +643488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4da6c3" }, { @@ -608146,6 +643522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608161,12 +643539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "021478" }, { @@ -608194,6 +643573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608209,12 +643590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57cee5" }, { @@ -608242,6 +643624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608257,12 +643641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d43918" }, { @@ -608290,6 +643675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608305,12 +643692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "499347" }, { @@ -608338,6 +643726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608353,12 +643743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51bd26" }, { @@ -608386,6 +643777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608401,12 +643794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d47a01" }, { @@ -608434,6 +643828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608449,12 +643845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "817b5a" }, { @@ -608482,6 +643879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608497,12 +643896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f6a54" }, { @@ -608530,6 +643930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608545,12 +643947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e2ff5" }, { @@ -608578,6 +643981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608593,12 +643998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "024771" }, { @@ -608626,6 +644032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608641,12 +644049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38256e" }, { @@ -608674,6 +644083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608689,12 +644100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3da23" }, { @@ -608722,6 +644134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608737,12 +644151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9aa5ab" }, { @@ -608770,6 +644185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608785,12 +644202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abf303" }, { @@ -608818,6 +644236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608833,12 +644253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "28d66c" }, { @@ -608866,6 +644287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608881,12 +644304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "323982" }, { @@ -608914,6 +644338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608929,12 +644355,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cc16b" }, { @@ -608962,6 +644389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -608977,12 +644406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ed938" }, { @@ -609010,6 +644440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609025,12 +644457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22dea4" }, { @@ -609058,6 +644491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609073,12 +644508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf8c2e" }, { @@ -609106,6 +644542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609121,12 +644559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0de052" }, { @@ -609154,6 +644593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609169,12 +644610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91d5c3" }, { @@ -609202,6 +644644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609217,12 +644661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25ab0b" }, { @@ -609250,6 +644695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609265,12 +644712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e79173" }, { @@ -609298,6 +644746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609313,12 +644763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6fa34" }, { @@ -609346,6 +644797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609361,12 +644814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "faa49f" } ], @@ -609397,6 +644851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609421,7 +644877,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", @@ -609429,7 +644886,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3693": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", @@ -609437,12 +644895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -609469,6 +644928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609484,12 +644945,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c1b20" }, { @@ -609517,6 +644979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609532,12 +644996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af86ae" }, { @@ -609565,6 +645030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609580,12 +645047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be9d6c" }, { @@ -609613,6 +645081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609628,12 +645098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be9d6c" }, { @@ -609661,6 +645132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609676,12 +645149,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66378c" }, { @@ -609709,6 +645183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609724,12 +645200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a0ad6" }, { @@ -609757,6 +645234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609772,12 +645251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a21c5b" }, { @@ -609805,6 +645285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609820,12 +645302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f4d8a" } ], @@ -609856,6 +645339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609880,7 +645365,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3693": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", @@ -609888,7 +645374,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", @@ -609896,12 +645383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -609928,6 +645416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609943,12 +645433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a36f2f" }, { @@ -609976,6 +645467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -609991,12 +645484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3ec6a" }, { @@ -610024,6 +645518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610039,12 +645535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6582d7" }, { @@ -610072,6 +645569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610087,12 +645586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6582d7" }, { @@ -610120,6 +645620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610135,12 +645637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79a987" }, { @@ -610168,6 +645671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610183,12 +645688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17e686" }, { @@ -610216,6 +645722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610231,12 +645739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e39a9a" }, { @@ -610264,6 +645773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610279,12 +645790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f6167" } ], @@ -610315,6 +645827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610356,7 +645870,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3693": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", @@ -610364,7 +645879,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", @@ -610372,7 +645888,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "3687": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", @@ -610380,12 +645897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -610412,6 +645930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610427,12 +645947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a71412" }, { @@ -610460,6 +645981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610475,12 +645998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "735cdb" }, { @@ -610508,6 +646032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610523,12 +646049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a71412" }, { @@ -610556,6 +646083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610571,12 +646100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a47dba" }, { @@ -610604,6 +646134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610619,12 +646151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a47dba" }, { @@ -610652,6 +646185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610667,12 +646202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7dd13" }, { @@ -610700,6 +646236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610715,12 +646253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ccd9f0" }, { @@ -610748,6 +646287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610763,12 +646304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7dd13" }, { @@ -610796,6 +646338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610811,12 +646355,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7dd13" }, { @@ -610844,6 +646389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610859,12 +646406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ccd9f0" }, { @@ -610892,6 +646440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610907,12 +646457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8abcc4" }, { @@ -610940,6 +646491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -610955,12 +646508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7f5fa" }, { @@ -610988,6 +646542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611003,12 +646559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c898a0" }, { @@ -611036,6 +646593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611051,12 +646610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b568b8" }, { @@ -611084,6 +646644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611099,12 +646661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bed0da" }, { @@ -611132,6 +646695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611147,12 +646712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "441006" }, { @@ -611180,6 +646746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611195,12 +646763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9484e9" }, { @@ -611228,6 +646797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611243,12 +646814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a0ad2" }, { @@ -611276,6 +646848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611291,12 +646865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d2a8a" }, { @@ -611324,6 +646899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611339,12 +646916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9d97" }, { @@ -611372,6 +646950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611387,12 +646967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ed2ae" }, { @@ -611420,6 +647001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611435,12 +647018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92ee68" }, { @@ -611468,6 +647052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611483,12 +647069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db4b20" }, { @@ -611516,6 +647103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611531,12 +647120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b12183" }, { @@ -611564,6 +647154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611579,12 +647171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73d5ac" } ], @@ -611618,6 +647211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611626,9 +647221,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -611655,6 +647250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611676,12 +647273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -611708,6 +647306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611723,12 +647323,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a04f16" }, { @@ -611756,6 +647357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611771,12 +647374,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9542e8" }, { @@ -611804,6 +647408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611819,12 +647425,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "660874" }, { @@ -611852,6 +647459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611867,12 +647476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58402d" }, { @@ -611900,6 +647510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611915,12 +647527,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b107c" } ], @@ -611951,6 +647564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -611972,12 +647587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -612004,6 +647620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612019,12 +647637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c3d58" }, { @@ -612052,6 +647671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612067,12 +647688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ae819" }, { @@ -612100,6 +647722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612115,12 +647739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29e1ba" }, { @@ -612148,6 +647773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612163,12 +647790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51ea78" }, { @@ -612196,6 +647824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612211,12 +647841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2f948" } ], @@ -612247,6 +647878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612270,7 +647903,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2343": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -612278,12 +647912,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -612310,6 +647945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612325,12 +647962,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ec414" }, { @@ -612358,6 +647996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612373,12 +648013,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa161c" }, { @@ -612406,6 +648047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612421,12 +648064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "180783" }, { @@ -612454,6 +648098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612469,12 +648115,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "266843" }, { @@ -612502,6 +648149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612517,12 +648166,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f460e3" }, { @@ -612550,6 +648200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612565,12 +648217,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f8db4" }, { @@ -612598,6 +648251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612613,12 +648268,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "062575" } ], @@ -612649,6 +648305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612676,7 +648334,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2342": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -612684,7 +648343,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "123": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -612692,7 +648352,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "1299": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/", @@ -612700,12 +648361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -612732,6 +648394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612747,12 +648411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ecad5" }, { @@ -612780,6 +648445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612795,12 +648462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53458a" }, { @@ -612828,6 +648496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612843,12 +648513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfda2a" }, { @@ -612876,6 +648547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612891,12 +648564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1873c" }, { @@ -612924,6 +648598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612939,12 +648615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15b776" }, { @@ -612972,6 +648649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -612987,12 +648666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9eb622" }, { @@ -613020,6 +648700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613035,12 +648717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ec75c" }, { @@ -613068,6 +648751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613083,12 +648768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4df1b" }, { @@ -613116,6 +648802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613131,12 +648819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "227273" }, { @@ -613164,6 +648853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613179,12 +648870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "746983" }, { @@ -613212,6 +648904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613227,12 +648921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b9b1a" } ], @@ -613263,6 +648958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613285,7 +648982,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2343": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -613293,12 +648991,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -613325,6 +649024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613340,12 +649041,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3fe44" }, { @@ -613373,6 +649075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613388,12 +649092,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8e72f" }, { @@ -613421,6 +649126,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613436,12 +649143,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f5327" }, { @@ -613469,6 +649177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613484,12 +649194,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34788c" }, { @@ -613517,6 +649228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613532,12 +649245,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4f854" }, { @@ -613565,6 +649279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613580,12 +649296,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8fef" } ], @@ -613616,6 +649333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613638,12 +649357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -613670,6 +649390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613685,12 +649407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6a48e" }, { @@ -613718,6 +649441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613733,12 +649458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -613766,6 +649492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613781,12 +649509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89f4f6" }, { @@ -613814,6 +649543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613829,12 +649560,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04e5d3" }, { @@ -613862,6 +649594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613877,12 +649611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f4f54" }, { @@ -613910,6 +649645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613925,12 +649662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62cc1f" } ], @@ -613961,6 +649699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -613981,7 +649721,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2343": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -613989,12 +649730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -614021,6 +649763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614036,12 +649780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4b9d3" }, { @@ -614069,6 +649814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614084,12 +649831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a02c" }, { @@ -614117,6 +649865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614132,12 +649882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "571733" }, { @@ -614165,6 +649916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614180,12 +649933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ff419" } ], @@ -614216,6 +649970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614239,12 +649995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -614271,6 +650028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614286,12 +650045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7978f" }, { @@ -614319,6 +650079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614334,12 +650096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d217a" }, { @@ -614367,6 +650130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614382,12 +650147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16ec42" }, { @@ -614415,6 +650181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614430,12 +650198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dd1d9" }, { @@ -614463,6 +650232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614478,12 +650249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0cb5" }, { @@ -614511,6 +650283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614526,12 +650300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fbcc6" }, { @@ -614559,6 +650334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614574,12 +650351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7fd35" } ], @@ -614610,6 +650388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614631,7 +650411,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2342": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -614639,12 +650420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -614671,6 +650453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614686,12 +650470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "632986" }, { @@ -614719,6 +650504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614734,12 +650521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e5f0a" }, { @@ -614767,6 +650555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614782,12 +650572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8b917" }, { @@ -614815,6 +650606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614830,12 +650623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7d6b8" }, { @@ -614863,6 +650657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614878,12 +650674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5b1e" } ], @@ -614914,6 +650711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614935,12 +650734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -614967,6 +650767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -614982,12 +650784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3dc03" }, { @@ -615015,6 +650818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615030,12 +650835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c092e1" }, { @@ -615063,6 +650869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615078,12 +650886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a4bf1" }, { @@ -615111,6 +650920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615126,12 +650937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc2fb1" }, { @@ -615159,6 +650971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615174,12 +650988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a4c6c" } ], @@ -615210,6 +651025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615232,12 +651049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -615264,6 +651082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615279,12 +651099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b28aa" }, { @@ -615312,6 +651133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615327,12 +651150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -615360,6 +651184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615375,12 +651201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "906ef2" }, { @@ -615408,6 +651235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615423,12 +651252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61dec3" }, { @@ -615456,6 +651286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615471,12 +651303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a7539" }, { @@ -615504,6 +651337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615519,12 +651354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ef7c7" } ], @@ -615555,6 +651391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615575,7 +651413,8 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2601": { "FaceURL": "https://i.imgur.com/Kw5u56P.jpg", @@ -615583,12 +651422,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -615615,6 +651455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615630,12 +651472,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d207f8" }, { @@ -615663,6 +651506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615678,12 +651523,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae522c" }, { @@ -615711,6 +651557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615726,12 +651574,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3065a4" }, { @@ -615759,6 +651608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615774,12 +651625,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac5f51" } ], @@ -615810,6 +651662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615862,7 +651716,8 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2604": { "FaceURL": "https://i.imgur.com/4vUPeDS.jpg", @@ -615870,7 +651725,8 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2601": { "FaceURL": "https://i.imgur.com/Kw5u56P.jpg", @@ -615878,7 +651734,8 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2653": { "FaceURL": "https://i.imgur.com/Kw5u56P.jpg", @@ -615886,12 +651743,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -615918,6 +651776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615933,12 +651793,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ff610" }, { @@ -615966,6 +651827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -615981,12 +651844,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d2583" }, { @@ -616014,6 +651878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616029,12 +651895,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bcc344" }, { @@ -616062,6 +651929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616077,12 +651946,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9445f" }, { @@ -616110,6 +651980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616125,12 +651997,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35d4c5" }, { @@ -616158,6 +652031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616173,12 +652048,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9445f" }, { @@ -616206,6 +652082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616221,12 +652099,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbb723" }, { @@ -616254,6 +652133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616269,12 +652150,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abd75a" }, { @@ -616302,6 +652184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616317,12 +652201,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46f30b" }, { @@ -616350,6 +652235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616365,12 +652252,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bb510" }, { @@ -616398,6 +652286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616413,12 +652303,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4dfc1c" }, { @@ -616446,6 +652337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616461,12 +652354,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc5c21" }, { @@ -616494,6 +652388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616509,12 +652405,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eeff54" }, { @@ -616542,6 +652439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616557,12 +652456,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "512f93" }, { @@ -616590,6 +652490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616605,12 +652507,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "353475" }, { @@ -616638,6 +652541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616653,12 +652558,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b6d9c" }, { @@ -616686,6 +652592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616701,12 +652609,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e6245" }, { @@ -616734,6 +652643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616749,12 +652660,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "555dff" }, { @@ -616782,6 +652694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616797,12 +652711,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6d845" }, { @@ -616830,6 +652745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616845,12 +652762,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbfc9c" }, { @@ -616878,6 +652796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616893,12 +652813,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59695a" }, { @@ -616926,6 +652847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616941,12 +652864,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "623fb1" }, { @@ -616974,6 +652898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -616989,12 +652915,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5db6b7" }, { @@ -617022,6 +652949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617037,12 +652966,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f1430" }, { @@ -617070,6 +653000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617085,12 +653017,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7727b0" }, { @@ -617118,6 +653051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617133,12 +653068,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "594b02" }, { @@ -617166,6 +653102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617181,12 +653119,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89f177" }, { @@ -617214,6 +653153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617229,12 +653170,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f2934" }, { @@ -617262,6 +653204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617277,12 +653221,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebb16e" }, { @@ -617310,6 +653255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617325,12 +653272,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "716efa" }, { @@ -617358,6 +653306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617373,12 +653323,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0369d" }, { @@ -617406,6 +653357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617421,12 +653374,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f17c8" }, { @@ -617454,6 +653408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617469,12 +653425,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bc8a2" }, { @@ -617502,6 +653459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617517,12 +653476,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b22648" }, { @@ -617550,6 +653510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617565,12 +653527,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49a6b7" }, { @@ -617598,6 +653561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617613,12 +653578,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c631d" } ], @@ -617649,6 +653615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617657,9 +653625,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -617686,6 +653654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617737,12 +653707,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -617769,6 +653740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617784,12 +653757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1206b" }, { @@ -617817,6 +653791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617832,12 +653808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "766633" }, { @@ -617865,6 +653842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617880,12 +653859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be7bde" }, { @@ -617913,6 +653893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617928,12 +653910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d4479" }, { @@ -617961,6 +653944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -617976,12 +653961,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4f8c3" }, { @@ -618009,6 +653995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618024,12 +654012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e75e4c" }, { @@ -618057,6 +654046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618072,12 +654063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "082086" }, { @@ -618105,6 +654097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618120,12 +654114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "919da4" }, { @@ -618153,6 +654148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618168,12 +654165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "646c0e" }, { @@ -618201,6 +654199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618216,12 +654216,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1b639" }, { @@ -618249,6 +654250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618264,12 +654267,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e4387" }, { @@ -618297,6 +654301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618312,12 +654318,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae8867" }, { @@ -618345,6 +654352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618360,12 +654369,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd44d1" }, { @@ -618393,6 +654403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618408,12 +654420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50b857" }, { @@ -618441,6 +654454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618456,12 +654471,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "085f52" }, { @@ -618489,6 +654505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618504,12 +654522,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2de72d" }, { @@ -618537,6 +654556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618552,12 +654573,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1be04" }, { @@ -618585,6 +654607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618600,12 +654624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b12cf" }, { @@ -618633,6 +654658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618648,12 +654675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f639f9" }, { @@ -618681,6 +654709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618696,12 +654726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0bede" }, { @@ -618729,6 +654760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618744,12 +654777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d59e1" }, { @@ -618777,6 +654811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618792,12 +654828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef24b4" }, { @@ -618825,6 +654862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618840,12 +654879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c870e9" }, { @@ -618873,6 +654913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618888,12 +654930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cc0b2" }, { @@ -618921,6 +654964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618936,12 +654981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c8131" }, { @@ -618969,6 +655015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -618984,12 +655032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4e4d3" }, { @@ -619017,6 +655066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619032,12 +655083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7ca01" }, { @@ -619065,6 +655117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619080,12 +655134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34eda1" }, { @@ -619113,6 +655168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619128,12 +655185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eefdee" }, { @@ -619161,6 +655219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619176,12 +655236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05dbc3" }, { @@ -619209,6 +655270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619224,12 +655287,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd6405" }, { @@ -619257,6 +655321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619272,12 +655338,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2af87" }, { @@ -619305,6 +655372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619320,12 +655389,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7275cb" }, { @@ -619353,6 +655423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619368,12 +655440,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381f6" }, { @@ -619401,6 +655474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619416,12 +655491,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56b578" } ], @@ -619452,6 +655528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -619466,12 +655544,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {0,0,0,98}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,1.45},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1, y=1, z=1},\r\n font_size=350,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "2da146" }, { @@ -619499,6 +655578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -619513,12 +655594,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {0,0,0,98}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,1.45},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1, y=1, z=1},\r\n font_size=350,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "dd61f1" } ], @@ -619549,6 +655631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619609,12 +655693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -619641,6 +655726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619656,12 +655743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bed6a" }, { @@ -619689,6 +655777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619704,12 +655794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bed6a" }, { @@ -619737,6 +655828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619752,12 +655845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31e37e" }, { @@ -619785,6 +655879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619800,12 +655896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bed6a" }, { @@ -619833,6 +655930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619848,12 +655947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41e5c9" }, { @@ -619881,6 +655981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619896,12 +655998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dedf7d" }, { @@ -619929,6 +656032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619944,12 +656049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "470d38" }, { @@ -619977,6 +656083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -619992,12 +656100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8f268" }, { @@ -620025,6 +656134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620040,12 +656151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66f462" }, { @@ -620073,6 +656185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620088,12 +656202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dea5d3" }, { @@ -620121,6 +656236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620136,12 +656253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e32948" }, { @@ -620169,6 +656287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620184,12 +656304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "470a03" }, { @@ -620217,6 +656338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620232,12 +656355,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "621078" }, { @@ -620265,6 +656389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620280,12 +656406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9b607" }, { @@ -620313,6 +656440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620328,12 +656457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7faab" }, { @@ -620361,6 +656491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620376,12 +656508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "312d52" }, { @@ -620409,6 +656542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620424,12 +656559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0b1bb" }, { @@ -620457,6 +656593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620472,12 +656610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff0f15" }, { @@ -620505,6 +656644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620520,12 +656661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6edac" }, { @@ -620553,6 +656695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620568,12 +656712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fcf87" }, { @@ -620601,6 +656746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620616,12 +656763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b35444" }, { @@ -620649,6 +656797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620664,12 +656814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8399dd" }, { @@ -620697,6 +656848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620712,12 +656865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18494c" }, { @@ -620745,6 +656899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620760,12 +656916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b80a66" }, { @@ -620793,6 +656950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620808,12 +656967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2566f1" }, { @@ -620841,6 +657001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620856,12 +657018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bef41" }, { @@ -620889,6 +657052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620904,12 +657069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "896e92" }, { @@ -620937,6 +657103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -620952,12 +657120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "121209" }, { @@ -620985,6 +657154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621000,12 +657171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20f554" }, { @@ -621033,6 +657205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621048,12 +657222,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed1363" }, { @@ -621081,6 +657256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621096,12 +657273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dc722" }, { @@ -621129,6 +657307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621144,12 +657324,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fa9e0" }, { @@ -621177,6 +657358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621192,12 +657375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4440de" }, { @@ -621225,6 +657409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621240,12 +657426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f68fb" }, { @@ -621273,6 +657460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621288,12 +657477,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26dd46" }, { @@ -621321,6 +657511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621336,12 +657528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "707456" }, { @@ -621369,6 +657562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621384,12 +657579,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc553a" }, { @@ -621417,6 +657613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621432,12 +657630,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "caba36" }, { @@ -621465,6 +657664,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621480,12 +657681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "794903" }, { @@ -621513,6 +657715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621528,12 +657732,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "10c564" }, { @@ -621561,6 +657766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621576,12 +657783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef8642" }, { @@ -621609,6 +657817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621624,12 +657834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d1eec" }, { @@ -621657,6 +657868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621672,12 +657885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7347f2" }, { @@ -621705,6 +657919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621720,12 +657936,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9b3c5" } ], @@ -621756,6 +657973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621785,12 +658004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -621817,6 +658037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621832,12 +658054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c278f" }, { @@ -621865,6 +658088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621880,12 +658105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "198394" }, { @@ -621913,6 +658139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621928,12 +658156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cfc06" }, { @@ -621961,6 +658190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -621976,12 +658207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d00ab9" }, { @@ -622009,6 +658241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622024,12 +658258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f759d9" }, { @@ -622057,6 +658292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622072,12 +658309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f68247" }, { @@ -622105,6 +658343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622120,12 +658360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5cee7" }, { @@ -622153,6 +658394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622168,12 +658411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7216f5" }, { @@ -622201,6 +658445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622216,12 +658462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a0365" }, { @@ -622249,6 +658496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622264,12 +658513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2927d8" }, { @@ -622297,6 +658547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622312,12 +658564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89e433" }, { @@ -622345,6 +658598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622360,12 +658615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bbb1e" }, { @@ -622393,6 +658649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622408,12 +658666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d3b97" } ], @@ -622444,6 +658703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622473,12 +658734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -622505,6 +658767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622520,12 +658784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d682c" }, { @@ -622553,6 +658818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622568,12 +658835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe6b01" }, { @@ -622601,6 +658869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622616,12 +658886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "763f2b" }, { @@ -622649,6 +658920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622664,12 +658937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9989f2" }, { @@ -622697,6 +658971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622712,12 +658988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85007f" }, { @@ -622745,6 +659022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622760,12 +659039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af5d2c" }, { @@ -622793,6 +659073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622808,12 +659090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "894376" }, { @@ -622841,6 +659124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622856,12 +659141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0673f6" }, { @@ -622889,6 +659175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622904,12 +659192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b73a5" }, { @@ -622937,6 +659226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -622952,12 +659243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "178da9" }, { @@ -622985,6 +659277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623000,12 +659294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e2e37" }, { @@ -623033,6 +659328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623048,12 +659345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61410b" }, { @@ -623081,6 +659379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623096,12 +659396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1893f1" } ], @@ -623132,6 +659433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623156,12 +659459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -623188,6 +659492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623203,12 +659509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05d368" }, { @@ -623236,6 +659543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623251,12 +659560,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98a6eb" }, { @@ -623284,6 +659594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623299,12 +659611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "679548" }, { @@ -623332,6 +659645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623347,12 +659662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58ab68" }, { @@ -623380,6 +659696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623395,12 +659713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab80bf" }, { @@ -623428,6 +659747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623443,12 +659764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab80bf" }, { @@ -623476,6 +659798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623491,12 +659815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97335d" }, { @@ -623524,6 +659849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623539,12 +659866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f1f3c" } ], @@ -623575,6 +659903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623627,12 +659957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -623659,6 +659990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623674,12 +660007,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22aed2" }, { @@ -623707,6 +660041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623722,12 +660058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1461d8" }, { @@ -623755,6 +660092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623770,12 +660109,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93c195" }, { @@ -623803,6 +660143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623818,12 +660160,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "677b10" }, { @@ -623851,6 +660194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623866,12 +660211,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03fa5a" }, { @@ -623899,6 +660245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623914,12 +660262,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "71244a" }, { @@ -623947,6 +660296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -623962,12 +660313,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fee93" }, { @@ -623995,6 +660347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624010,12 +660364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ce1b4" }, { @@ -624043,6 +660398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624058,12 +660415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e64c28" }, { @@ -624091,6 +660449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624106,12 +660466,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "737ecd" }, { @@ -624139,6 +660500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624154,12 +660517,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18f1d9" }, { @@ -624187,6 +660551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624202,12 +660568,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72603b" }, { @@ -624235,6 +660602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624250,12 +660619,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a2616" }, { @@ -624283,6 +660653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624298,12 +660670,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11e31d" }, { @@ -624331,6 +660704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624346,12 +660721,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3a79d" }, { @@ -624379,6 +660755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624394,12 +660772,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72cf4d" }, { @@ -624427,6 +660806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624442,12 +660823,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cec33" }, { @@ -624475,6 +660857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624490,12 +660874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5d586" }, { @@ -624523,6 +660908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624538,12 +660925,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd7bd2" }, { @@ -624571,6 +660959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624586,12 +660976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8d52b" }, { @@ -624619,6 +661010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624634,12 +661027,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c097d8" }, { @@ -624667,6 +661061,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624682,12 +661078,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a17423" }, { @@ -624715,6 +661112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624730,12 +661129,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3c531" }, { @@ -624763,6 +661163,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624778,12 +661180,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f06df7" }, { @@ -624811,6 +661214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624826,12 +661231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bfd8f6" }, { @@ -624859,6 +661265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624874,12 +661282,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4a174" }, { @@ -624907,6 +661316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624922,12 +661333,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fce07" }, { @@ -624955,6 +661367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -624970,12 +661384,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67b662" }, { @@ -625003,6 +661418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625018,12 +661435,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c26773" }, { @@ -625051,6 +661469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625066,12 +661486,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d43edb" }, { @@ -625099,6 +661520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625114,12 +661537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdadde" }, { @@ -625147,6 +661571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625162,12 +661588,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f3fa1" }, { @@ -625195,6 +661622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625210,12 +661639,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a92fa6" }, { @@ -625243,6 +661673,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625258,12 +661690,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c988f8" }, { @@ -625291,6 +661724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625306,12 +661741,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e6717" }, { @@ -625339,6 +661775,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625354,12 +661792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd8c43" } ], @@ -625390,6 +661829,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625446,12 +661887,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -625478,6 +661920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625493,12 +661937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "891282" }, { @@ -625526,6 +661971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625541,12 +661988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6cd01" }, { @@ -625574,6 +662022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625589,12 +662039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6e2b8" }, { @@ -625622,6 +662073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625637,12 +662090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "776222" }, { @@ -625670,6 +662124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625685,12 +662141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e417e8" }, { @@ -625718,6 +662175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625733,12 +662192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd17ff" }, { @@ -625766,6 +662226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625781,12 +662243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e24635" }, { @@ -625814,6 +662277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625829,12 +662294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d1b30" }, { @@ -625862,6 +662328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625877,12 +662345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af5c41" }, { @@ -625910,6 +662379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625925,12 +662396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c92d8" }, { @@ -625958,6 +662430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -625973,12 +662447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbfaec" }, { @@ -626006,6 +662481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626021,12 +662498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1568bc" }, { @@ -626054,6 +662532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626069,12 +662549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d27333" }, { @@ -626102,6 +662583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626117,12 +662600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "054826" }, { @@ -626150,6 +662634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626165,12 +662651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8b7a2" }, { @@ -626198,6 +662685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626213,12 +662702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a31dd" }, { @@ -626246,6 +662736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626261,12 +662753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "926c99" }, { @@ -626294,6 +662787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626309,12 +662804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f9aaf" }, { @@ -626342,6 +662838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626357,12 +662855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3757b7" }, { @@ -626390,6 +662889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626405,12 +662906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "28ebe1" }, { @@ -626438,6 +662940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626453,12 +662957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c21ad7" }, { @@ -626486,6 +662991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626501,12 +663008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14f8f1" }, { @@ -626534,6 +663042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626549,12 +663059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21cd56" }, { @@ -626582,6 +663093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626597,12 +663110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1588b6" }, { @@ -626630,6 +663144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626645,12 +663161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7edfb0" }, { @@ -626678,6 +663195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626693,12 +663212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34409b" }, { @@ -626726,6 +663246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626741,12 +663263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e59778" }, { @@ -626774,6 +663297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626789,12 +663314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ee0f0" }, { @@ -626822,6 +663348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626837,12 +663365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a69973" }, { @@ -626870,6 +663399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626885,12 +663416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "adcbb0" }, { @@ -626918,6 +663450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626933,12 +663467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7b446" }, { @@ -626966,6 +663501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -626981,12 +663518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "586028" }, { @@ -627014,6 +663552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627029,12 +663569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ffd6d" }, { @@ -627062,6 +663603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627077,12 +663620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "029812" }, { @@ -627110,6 +663654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627125,12 +663671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6d241" }, { @@ -627158,6 +663705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627173,12 +663722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2806c" }, { @@ -627206,6 +663756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627221,12 +663773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35fe2f" }, { @@ -627254,6 +663807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627269,12 +663824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3d027" }, { @@ -627302,6 +663858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627317,12 +663875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0dc453" }, { @@ -627350,6 +663909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627365,12 +663926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c4c60" } ], @@ -627401,6 +663963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627432,12 +663996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -627464,6 +664029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627479,12 +664046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2be806" }, { @@ -627512,6 +664080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627527,12 +664097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43dc89" }, { @@ -627560,6 +664131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627575,12 +664148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbe6e8" }, { @@ -627608,6 +664182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627623,12 +664199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70904c" }, { @@ -627656,6 +664233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627671,12 +664250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da2655" }, { @@ -627704,6 +664284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627719,12 +664301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58bf8d" }, { @@ -627752,6 +664335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627767,12 +664352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6b3fc" }, { @@ -627800,6 +664386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627815,12 +664403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df4a7" }, { @@ -627848,6 +664437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627863,12 +664454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5f222" }, { @@ -627896,6 +664488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627911,12 +664505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89593e" }, { @@ -627944,6 +664539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -627959,12 +664556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a9acd" }, { @@ -627992,6 +664590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628007,12 +664607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87937f" }, { @@ -628040,6 +664641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628055,12 +664658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5a713" }, { @@ -628088,6 +664692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628103,12 +664709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2376d1" }, { @@ -628136,6 +664743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628151,12 +664760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "964bf2" } ], @@ -628187,6 +664797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628214,7 +664826,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "1298": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/", @@ -628222,12 +664835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -628254,6 +664868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628269,12 +664885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17871b" }, { @@ -628302,6 +664919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628317,12 +664936,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73d855" }, { @@ -628350,6 +664970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628365,12 +664987,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b9dbf" }, { @@ -628398,6 +665021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628413,12 +665038,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ada4f" }, { @@ -628446,6 +665072,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628461,12 +665089,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "54ef29" }, { @@ -628494,6 +665123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628509,12 +665140,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79390e" }, { @@ -628542,6 +665174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628557,12 +665191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "487d1f" }, { @@ -628590,6 +665225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628605,12 +665242,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b77109" }, { @@ -628638,6 +665276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628653,12 +665293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a2bf1" }, { @@ -628686,6 +665327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628701,12 +665344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f7d9a" }, { @@ -628734,6 +665378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628749,12 +665395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f1614" } ], @@ -628788,6 +665435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628796,9 +665445,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -628825,6 +665474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628847,12 +665498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -628879,6 +665531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628894,12 +665548,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ccfdd" }, { @@ -628927,6 +665582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628942,12 +665599,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fac08" }, { @@ -628975,6 +665633,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -628990,12 +665650,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4ebc7" }, { @@ -629023,6 +665684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629038,12 +665701,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5296" }, { @@ -629071,6 +665735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629086,12 +665752,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b74e5" }, { @@ -629119,6 +665786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629134,12 +665803,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f5a02" } ], @@ -629170,6 +665840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629190,12 +665862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -629222,6 +665895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629237,12 +665912,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d32e4" }, { @@ -629270,6 +665946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629285,12 +665963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9349fd" }, { @@ -629318,6 +665997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629333,12 +666014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ae587" }, { @@ -629366,6 +666048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629381,12 +666065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "459f5a" } ], @@ -629417,6 +666102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629439,12 +666126,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -629471,6 +666159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629486,12 +666176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a6d8c" }, { @@ -629519,6 +666210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629534,12 +666227,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6af6b" }, { @@ -629567,6 +666261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629582,12 +666278,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -629615,6 +666312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629630,12 +666329,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -629663,6 +666363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629678,12 +666380,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afc45" }, { @@ -629711,6 +666414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629726,12 +666431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afc45" } ], @@ -629762,6 +666468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629784,12 +666492,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -629816,6 +666525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629831,12 +666542,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e20141" }, { @@ -629864,6 +666576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629879,12 +666593,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "522968" }, { @@ -629912,6 +666627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629927,12 +666644,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bf1f8" }, { @@ -629960,6 +666678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -629975,12 +666695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" }, { @@ -630008,6 +666729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630023,12 +666746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcaaad" }, { @@ -630056,6 +666780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630071,12 +666797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" } ], @@ -630107,6 +666834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630129,12 +666858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -630161,6 +666891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630176,12 +666908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c189a5" }, { @@ -630209,6 +666942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630224,12 +666959,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74b258" }, { @@ -630257,6 +666993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630272,12 +667010,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce7b8" }, { @@ -630305,6 +667044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630320,12 +667061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40c629" }, { @@ -630353,6 +667095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630368,12 +667112,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "006497" }, { @@ -630401,6 +667146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630416,12 +667163,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "068703" } ], @@ -630452,6 +667200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630471,12 +667221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -630503,6 +667254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630518,12 +667271,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9dc22" }, { @@ -630551,6 +667305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630566,12 +667322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d46d72" }, { @@ -630599,6 +667356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630614,12 +667373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c7c3" } ], @@ -630650,6 +667410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630672,12 +667434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -630704,6 +667467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630719,12 +667484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "837dc0" }, { @@ -630752,6 +667518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630767,12 +667535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5a670" }, { @@ -630800,6 +667569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630815,12 +667586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a13701" }, { @@ -630848,6 +667620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630863,12 +667637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42b8dc" }, { @@ -630896,6 +667671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630911,12 +667688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec66a0" }, { @@ -630944,6 +667722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -630959,12 +667739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bea40" } ], @@ -630995,6 +667776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631015,12 +667798,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -631047,6 +667831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631062,12 +667848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60d096" }, { @@ -631095,6 +667882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631110,12 +667899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e7c00" }, { @@ -631143,6 +667933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631158,12 +667950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b323c1" }, { @@ -631191,6 +667984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631206,12 +668001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b323c1" } ], @@ -631242,6 +668038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631261,12 +668059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -631293,6 +668092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631308,12 +668109,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70009a" }, { @@ -631341,6 +668143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631356,12 +668160,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c023fe" }, { @@ -631389,6 +668194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631404,12 +668211,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c321d" } ], @@ -631440,6 +668248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631492,7 +668302,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2319": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/", @@ -631500,7 +668311,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -631508,7 +668320,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2326": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -631516,12 +668329,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -631548,6 +668362,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631563,12 +668379,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1fe02" }, { @@ -631596,6 +668413,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631611,12 +668430,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c5c4" }, { @@ -631644,6 +668464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631659,12 +668481,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -631692,6 +668515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631707,12 +668532,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -631740,6 +668566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631755,12 +668583,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -631788,6 +668617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631803,12 +668634,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fcde7" }, { @@ -631836,6 +668668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631851,12 +668685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -631884,6 +668719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631899,12 +668736,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bf800" }, { @@ -631932,6 +668770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631947,12 +668787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -631980,6 +668821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -631995,12 +668838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -632028,6 +668872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632043,12 +668889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -632076,6 +668923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632091,12 +668940,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4475b1" }, { @@ -632124,6 +668974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632139,12 +668991,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5276ed" }, { @@ -632172,6 +669025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632187,12 +669042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -632220,6 +669076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632235,12 +669093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -632268,6 +669127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632283,12 +669144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1622d3" }, { @@ -632316,6 +669178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632331,12 +669195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01030c" }, { @@ -632364,6 +669229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632379,12 +669246,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a53069" }, { @@ -632412,6 +669280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632427,12 +669297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "309dcd" }, { @@ -632460,6 +669331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632475,12 +669348,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f897e5" }, { @@ -632508,6 +669382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632523,12 +669399,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -632556,6 +669433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632571,12 +669450,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea3b91" }, { @@ -632604,6 +669484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632619,12 +669501,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -632652,6 +669535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632667,12 +669552,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79295e" }, { @@ -632700,6 +669586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632715,12 +669603,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "468c5f" }, { @@ -632748,6 +669637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632763,12 +669654,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ccd8f5" }, { @@ -632796,6 +669688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632811,12 +669705,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82360a" }, { @@ -632844,6 +669739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632859,12 +669756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "629941" }, { @@ -632892,6 +669790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632907,12 +669807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90cf9" }, { @@ -632940,6 +669841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -632955,12 +669858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "649b4f" }, { @@ -632988,6 +669892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633003,12 +669909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09f32d" }, { @@ -633036,6 +669943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633051,12 +669960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99d2b8" }, { @@ -633084,6 +669994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633099,12 +670011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1397c" }, { @@ -633132,6 +670045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633147,12 +670062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09a5e0" }, { @@ -633180,6 +670096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633195,12 +670113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -633228,6 +670147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633243,12 +670164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" } ], @@ -633279,6 +670201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633333,7 +670257,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2319": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/", @@ -633341,7 +670266,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -633349,12 +670275,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -633381,6 +670308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633396,12 +670325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -633429,6 +670359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633444,12 +670376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0fa86" }, { @@ -633477,6 +670410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633492,12 +670427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -633525,6 +670461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633540,12 +670478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -633573,6 +670512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633588,12 +670529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f76046" }, { @@ -633621,6 +670563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633636,12 +670580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -633669,6 +670614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633684,12 +670631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -633717,6 +670665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633732,12 +670682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e6d15" }, { @@ -633765,6 +670716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633780,12 +670733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -633813,6 +670767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633828,12 +670784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "617504" }, { @@ -633861,6 +670818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633876,12 +670835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -633909,6 +670869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633924,12 +670886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f3d21" }, { @@ -633957,6 +670920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -633972,12 +670937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79421c" }, { @@ -634005,6 +670971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634020,12 +670988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e75ba8" }, { @@ -634053,6 +671022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634068,12 +671039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a231c" }, { @@ -634101,6 +671073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634116,12 +671090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -634149,6 +671124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634164,12 +671141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -634197,6 +671175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634212,12 +671192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7ee02" }, { @@ -634245,6 +671226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634260,12 +671243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "106f19" }, { @@ -634293,6 +671277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634308,12 +671294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -634341,6 +671328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634356,12 +671345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2651e" }, { @@ -634389,6 +671379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634404,12 +671396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -634437,6 +671430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634452,12 +671447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69eae5" }, { @@ -634485,6 +671481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634500,12 +671498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -634533,6 +671532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634548,12 +671549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "014bd6" }, { @@ -634581,6 +671583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634596,12 +671600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -634629,6 +671634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634644,12 +671651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -634677,6 +671685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634692,12 +671702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e572ec" }, { @@ -634725,6 +671736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634740,12 +671753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -634773,6 +671787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634788,12 +671804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3f8a4" }, { @@ -634821,6 +671838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634836,12 +671855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8228d2" }, { @@ -634869,6 +671889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634884,12 +671906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60178d" }, { @@ -634917,6 +671940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634932,12 +671957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98981e" }, { @@ -634965,6 +671991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -634980,12 +672008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6103fa" }, { @@ -635013,6 +672042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635028,12 +672059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "374aae" }, { @@ -635061,6 +672093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635076,12 +672110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92b2ed" }, { @@ -635109,6 +672144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635124,12 +672161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca41f2" }, { @@ -635157,6 +672195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635172,12 +672212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1163a0" } ], @@ -635208,6 +672249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635260,7 +672303,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2319": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/", @@ -635268,7 +672312,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -635276,7 +672321,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2325": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -635284,12 +672330,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -635316,6 +672363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635331,12 +672380,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -635364,6 +672414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635379,12 +672431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7485f9" }, { @@ -635412,6 +672465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635427,12 +672482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4f060" }, { @@ -635460,6 +672516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635475,12 +672533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "836888" }, { @@ -635508,6 +672567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635523,12 +672584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18dba0" }, { @@ -635556,6 +672618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635571,12 +672635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecffec" }, { @@ -635604,6 +672669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635619,12 +672686,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69d084" }, { @@ -635652,6 +672720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635667,12 +672737,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6dd53" }, { @@ -635700,6 +672771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635715,12 +672788,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6feaea" }, { @@ -635748,6 +672822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635763,12 +672839,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f4458" }, { @@ -635796,6 +672873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635811,12 +672890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be97e0" }, { @@ -635844,6 +672924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635859,12 +672941,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c3204" }, { @@ -635892,6 +672975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635907,12 +672992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8c2bf" }, { @@ -635940,6 +673026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -635955,12 +673043,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec9c97" }, { @@ -635988,6 +673077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636003,12 +673094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f99335" }, { @@ -636036,6 +673128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636051,12 +673145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "405a46" }, { @@ -636084,6 +673179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636099,12 +673196,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bcab3" }, { @@ -636132,6 +673230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636147,12 +673247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1237c" }, { @@ -636180,6 +673281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636195,12 +673298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3151e" }, { @@ -636228,6 +673332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636243,12 +673349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30c7a6" }, { @@ -636276,6 +673383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636291,12 +673400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5efda5" }, { @@ -636324,6 +673434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636339,12 +673451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e3d00" }, { @@ -636372,6 +673485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636387,12 +673502,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66b81f" }, { @@ -636420,6 +673536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636435,12 +673553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29170f" }, { @@ -636468,6 +673587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636483,12 +673604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b08255" }, { @@ -636516,6 +673638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636531,12 +673655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fb3fc" }, { @@ -636564,6 +673689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636579,12 +673706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c7f4a" }, { @@ -636612,6 +673740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636627,12 +673757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80cf41" }, { @@ -636660,6 +673791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636675,12 +673808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5ce90" }, { @@ -636708,6 +673842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636723,12 +673859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -636756,6 +673893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636771,12 +673910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "571edb" }, { @@ -636804,6 +673944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636819,12 +673961,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "850fd2" }, { @@ -636852,6 +673995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636867,12 +674012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78351c" }, { @@ -636900,6 +674046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636915,12 +674063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0437b7" }, { @@ -636948,6 +674097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -636963,12 +674114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64d9ff" }, { @@ -636996,6 +674148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637011,12 +674165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24144d" } ], @@ -637047,6 +674202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637099,7 +674256,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2320": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/", @@ -637107,7 +674265,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -637115,12 +674274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -637147,6 +674307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637162,12 +674324,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b71468" }, { @@ -637195,6 +674358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637210,12 +674375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf3597" }, { @@ -637243,6 +674409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637258,12 +674426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3dc93f" }, { @@ -637291,6 +674460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637306,12 +674477,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0308c" }, { @@ -637339,6 +674511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637354,12 +674528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a874d" }, { @@ -637387,6 +674562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637402,12 +674579,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33902b" }, { @@ -637435,6 +674613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637450,12 +674630,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6c60" }, { @@ -637483,6 +674664,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637498,12 +674681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9cf86" }, { @@ -637531,6 +674715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637546,12 +674732,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b7d78" }, { @@ -637579,6 +674766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637594,12 +674783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cc0d7" }, { @@ -637627,6 +674817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637642,12 +674834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e66648" }, { @@ -637675,6 +674868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637690,12 +674885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd1c0a" }, { @@ -637723,6 +674919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637738,12 +674936,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -637771,6 +674970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637786,12 +674987,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bab65" }, { @@ -637819,6 +675021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637834,12 +675038,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1acf71" }, { @@ -637867,6 +675072,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637882,12 +675089,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "728ae0" }, { @@ -637915,6 +675123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637930,12 +675140,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dcf73" }, { @@ -637963,6 +675174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -637978,12 +675191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "589ff6" }, { @@ -638011,6 +675225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638026,12 +675242,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9897f" }, { @@ -638059,6 +675276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638074,12 +675293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b37d1d" }, { @@ -638107,6 +675327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638122,12 +675344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "416548" }, { @@ -638155,6 +675378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638170,12 +675395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e35136" }, { @@ -638203,6 +675429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638218,12 +675446,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6a875" }, { @@ -638251,6 +675480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638266,12 +675497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "189f42" }, { @@ -638299,6 +675531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638314,12 +675548,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "576595" }, { @@ -638347,6 +675582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638362,12 +675599,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcc1bf" }, { @@ -638395,6 +675633,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638410,12 +675650,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f99530" }, { @@ -638443,6 +675684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638458,12 +675701,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b42f4b" }, { @@ -638491,6 +675735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638506,12 +675752,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08b672" }, { @@ -638539,6 +675786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638554,12 +675803,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f4366" }, { @@ -638587,6 +675837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638602,12 +675854,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "200091" }, { @@ -638635,6 +675888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638650,12 +675905,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38bfee" }, { @@ -638683,6 +675939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638698,12 +675956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -638731,6 +675990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638746,12 +676007,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87b92e" }, { @@ -638779,6 +676041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638794,12 +676058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a6817" }, { @@ -638827,6 +676092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638842,12 +676109,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" } ], @@ -638878,6 +676146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -638932,7 +676202,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2322": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -638940,7 +676211,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2319": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/", @@ -638948,7 +676220,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -638956,12 +676229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -638988,6 +676262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639003,12 +676279,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f903e" }, { @@ -639036,6 +676313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639051,12 +676330,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7bba1d" }, { @@ -639084,6 +676364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639099,12 +676381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f903e" }, { @@ -639132,6 +676415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639147,12 +676432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "febed7" }, { @@ -639180,6 +676466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639195,12 +676483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "573722" }, { @@ -639228,6 +676517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639243,12 +676534,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f719ae" }, { @@ -639276,6 +676568,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639291,12 +676585,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf1ccc" }, { @@ -639324,6 +676619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639339,12 +676636,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8845b" }, { @@ -639372,6 +676670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639387,12 +676687,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf1ccc" }, { @@ -639420,6 +676721,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639435,12 +676738,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "151647" }, { @@ -639468,6 +676772,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639483,12 +676789,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bba9fa" }, { @@ -639516,6 +676823,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639531,12 +676840,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "151647" }, { @@ -639564,6 +676874,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639579,12 +676891,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a37e3d" }, { @@ -639612,6 +676925,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639627,12 +676942,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75bda2" }, { @@ -639660,6 +676976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639675,12 +676993,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bb7ff" }, { @@ -639708,6 +677027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639723,12 +677044,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38cc9a" }, { @@ -639756,6 +677078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639771,12 +677095,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0a6a4" }, { @@ -639804,6 +677129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639819,12 +677146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -639852,6 +677180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639867,12 +677197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b7fad" }, { @@ -639900,6 +677231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639915,12 +677248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "191fba" }, { @@ -639948,6 +677282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -639963,12 +677299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -639996,6 +677333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640011,12 +677350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "065c64" }, { @@ -640044,6 +677384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640059,12 +677401,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79ea7b" }, { @@ -640092,6 +677435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640107,12 +677452,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1af959" }, { @@ -640140,6 +677486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640155,12 +677503,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78e730" }, { @@ -640188,6 +677537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640203,12 +677554,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -640236,6 +677588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640251,12 +677605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -640284,6 +677639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640299,12 +677656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf452a" }, { @@ -640332,6 +677690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640347,12 +677707,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -640380,6 +677741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640395,12 +677758,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -640428,6 +677792,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640443,12 +677809,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09a07b" }, { @@ -640476,6 +677843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640491,12 +677860,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "402117" }, { @@ -640524,6 +677894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640539,12 +677911,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be1a27" }, { @@ -640572,6 +677945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640587,12 +677962,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "136abe" }, { @@ -640620,6 +677996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640635,12 +678013,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -640668,6 +678047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640683,12 +678064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90b52d" }, { @@ -640716,6 +678098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640731,12 +678115,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -640764,6 +678149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640779,12 +678166,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" } ], @@ -640815,6 +678203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640863,7 +678253,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2323": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -640871,7 +678262,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2324": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -640879,7 +678271,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2320": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/", @@ -640887,7 +678280,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -640895,12 +678289,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -640927,6 +678322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640942,12 +678339,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bec6ce" }, { @@ -640975,6 +678373,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -640990,12 +678390,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "829090" }, { @@ -641023,6 +678424,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641038,12 +678441,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77144e" }, { @@ -641071,6 +678475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641086,12 +678492,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42def5" }, { @@ -641119,6 +678526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641134,12 +678543,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77144e" }, { @@ -641167,6 +678577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641182,12 +678594,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d4b6a" }, { @@ -641215,6 +678628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641230,12 +678645,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "596a2f" }, { @@ -641263,6 +678679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641278,12 +678696,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d4b6a" }, { @@ -641311,6 +678730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641326,12 +678747,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d30a1" }, { @@ -641359,6 +678781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641374,12 +678798,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f295d9" }, { @@ -641407,6 +678832,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641422,12 +678849,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46185e" }, { @@ -641455,6 +678883,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641470,12 +678900,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb8243" }, { @@ -641503,6 +678934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641518,12 +678951,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d81228" }, { @@ -641551,6 +678985,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641566,12 +679002,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55844c" }, { @@ -641599,6 +679036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641614,12 +679053,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b352f8" }, { @@ -641647,6 +679087,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641662,12 +679104,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cf5d5" }, { @@ -641695,6 +679138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641710,12 +679155,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -641743,6 +679189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641758,12 +679206,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6a72" }, { @@ -641791,6 +679240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641806,12 +679257,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40f79d" }, { @@ -641839,6 +679291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641854,12 +679308,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -641887,6 +679342,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641902,12 +679359,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -641935,6 +679393,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641950,12 +679410,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7a098" }, { @@ -641983,6 +679444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -641998,12 +679461,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffd0fb" }, { @@ -642031,6 +679495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642046,12 +679512,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -642079,6 +679546,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642094,12 +679563,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -642127,6 +679597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642142,12 +679614,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -642175,6 +679648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642190,12 +679665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "452df1" }, { @@ -642223,6 +679699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642238,12 +679716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -642271,6 +679750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642286,12 +679767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -642319,6 +679801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642334,12 +679818,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25a10f" }, { @@ -642367,6 +679852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642382,12 +679869,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -642415,6 +679903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642430,12 +679920,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" } ], @@ -642466,6 +679957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642507,7 +680000,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2320": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/", @@ -642515,7 +680009,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -642523,12 +680018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -642555,6 +680051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642570,12 +680068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62736c" }, { @@ -642603,6 +680102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642618,12 +680119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de32ec" }, { @@ -642651,6 +680153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642666,12 +680170,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7ccce" }, { @@ -642699,6 +680204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642714,12 +680221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "824d07" }, { @@ -642747,6 +680255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642762,12 +680272,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bac668" }, { @@ -642795,6 +680306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642810,12 +680323,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "560b08" }, { @@ -642843,6 +680357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642858,12 +680374,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6a957" }, { @@ -642891,6 +680408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642906,12 +680425,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce986e" }, { @@ -642939,6 +680459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -642954,12 +680476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1145d" }, { @@ -642987,6 +680510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643002,12 +680527,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -643035,6 +680561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643050,12 +680578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -643083,6 +680612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643098,12 +680629,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "981fa3" }, { @@ -643131,6 +680663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643146,12 +680680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cce10d" }, { @@ -643179,6 +680714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643194,12 +680731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3c25b" }, { @@ -643227,6 +680765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643242,12 +680782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c605d3" }, { @@ -643275,6 +680816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643290,12 +680833,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b6478" }, { @@ -643323,6 +680867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643338,12 +680884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f003bd" }, { @@ -643371,6 +680918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643386,12 +680935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fd6d0" }, { @@ -643419,6 +680969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643434,12 +680986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f2034" }, { @@ -643467,6 +681020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643482,12 +681037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b6382" }, { @@ -643515,6 +681071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643530,12 +681088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ecefb" }, { @@ -643563,6 +681122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643578,12 +681139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -643611,6 +681173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643626,12 +681190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "798037" }, { @@ -643659,6 +681224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643674,12 +681241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70d1f2" }, { @@ -643707,6 +681275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643722,12 +681292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd2d33" } ], @@ -643758,6 +681329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643794,7 +681367,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2323": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -643802,7 +681376,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2320": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/", @@ -643810,7 +681385,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -643818,12 +681394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -643850,6 +681427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643865,12 +681444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e35aa" }, { @@ -643898,6 +681478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643913,12 +681495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6720ef" }, { @@ -643946,6 +681529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -643961,12 +681546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e83ec9" }, { @@ -643994,6 +681580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644009,12 +681597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b75450" }, { @@ -644042,6 +681631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644057,12 +681648,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0797a9" }, { @@ -644090,6 +681682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644105,12 +681699,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5134e0" }, { @@ -644138,6 +681733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644153,12 +681750,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -644186,6 +681784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644201,12 +681801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c1254" }, { @@ -644234,6 +681835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644249,12 +681852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37e3f9" }, { @@ -644282,6 +681886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644297,12 +681903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e4d11" }, { @@ -644330,6 +681937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644345,12 +681954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67a96b" }, { @@ -644378,6 +681988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644393,12 +682005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "592384" }, { @@ -644426,6 +682039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644441,12 +682056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c5a28" }, { @@ -644474,6 +682090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644489,12 +682107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4f850" }, { @@ -644522,6 +682141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644537,12 +682158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e25bf" }, { @@ -644570,6 +682192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644585,12 +682209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "94060e" }, { @@ -644618,6 +682243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644633,12 +682260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eeaa39" }, { @@ -644666,6 +682294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644681,12 +682311,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62cc79" }, { @@ -644714,6 +682345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644729,12 +682362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d122dd" }, { @@ -644762,6 +682396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644777,12 +682413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" } ], @@ -644813,6 +682450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644821,9 +682460,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -644850,6 +682489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644872,12 +682513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -644904,6 +682546,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644919,12 +682563,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3effb8" }, { @@ -644952,6 +682597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -644967,12 +682614,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd93e2" }, { @@ -645000,6 +682648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645015,12 +682665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a92ef8" }, { @@ -645048,6 +682699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645063,12 +682716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "613256" }, { @@ -645096,6 +682750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645111,12 +682767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca4b6d" }, { @@ -645144,6 +682801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645159,12 +682818,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" } ], @@ -645195,6 +682855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645214,12 +682876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -645246,6 +682909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645261,12 +682926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -645294,6 +682960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645309,12 +682977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc41a5" }, { @@ -645342,6 +683011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645357,12 +683028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" } ], @@ -645393,6 +683065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645415,12 +683089,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -645447,6 +683122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645462,12 +683139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2789ff" }, { @@ -645495,6 +683173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645510,12 +683190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2d075" }, { @@ -645543,6 +683224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645558,12 +683241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6340b" }, { @@ -645591,6 +683275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645606,12 +683292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4bbb4" }, { @@ -645639,6 +683326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645654,12 +683343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -645687,6 +683377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645702,12 +683394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9d501" } ], @@ -645738,6 +683431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645758,12 +683453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -645790,6 +683486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645805,12 +683503,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48ff80" }, { @@ -645838,6 +683537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645853,12 +683554,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3c0d0" }, { @@ -645886,6 +683588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645901,12 +683605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -645934,6 +683639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -645949,12 +683656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7161b9" } ], @@ -645985,6 +683693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646008,12 +683718,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -646040,6 +683751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646055,12 +683768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "947597" }, { @@ -646088,6 +683802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646103,12 +683819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6cb3f1" }, { @@ -646136,6 +683853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646151,12 +683870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e7b73" }, { @@ -646184,6 +683904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646199,12 +683921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d3af5" }, { @@ -646232,6 +683955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646247,12 +683972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -646280,6 +684006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646295,12 +684023,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a0545" }, { @@ -646328,6 +684057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646343,12 +684074,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "040fdc" } ], @@ -646379,6 +684111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646401,7 +684135,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -646409,12 +684144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -646441,6 +684177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646456,12 +684194,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -646489,6 +684228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646504,12 +684245,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -646537,6 +684279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646552,12 +684296,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6582c" }, { @@ -646585,6 +684330,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646600,12 +684347,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -646633,6 +684381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646648,12 +684398,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60d758" }, { @@ -646681,6 +684432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646696,12 +684449,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" } ], @@ -646732,6 +684486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646754,7 +684510,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -646762,12 +684519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -646794,6 +684552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646809,12 +684569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -646842,6 +684603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646857,12 +684620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c14c8b" }, { @@ -646890,6 +684654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646905,12 +684671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2a55" }, { @@ -646938,6 +684705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -646953,12 +684722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81920c" }, { @@ -646986,6 +684756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647001,12 +684773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14b1cb" }, { @@ -647034,6 +684807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647049,12 +684824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" } ], @@ -647085,6 +684861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647106,7 +684884,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -647114,12 +684893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -647146,6 +684926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647161,12 +684943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -647194,6 +684977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647209,12 +684994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -647242,6 +685028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647257,12 +685045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -647290,6 +685079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647305,12 +685096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9be74" }, { @@ -647338,6 +685130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647353,12 +685147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" } ], @@ -647389,6 +685184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647414,7 +685211,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -647422,12 +685220,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -647454,6 +685253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647469,12 +685270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -647502,6 +685304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647517,12 +685321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1f80b" }, { @@ -647550,6 +685355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647565,12 +685372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -647598,6 +685406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647613,12 +685423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -647646,6 +685457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647661,12 +685474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -647694,6 +685508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647709,12 +685525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -647742,6 +685559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647757,12 +685576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -647790,6 +685610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647805,12 +685627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "432812" }, { @@ -647838,6 +685661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647853,12 +685678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" } ], @@ -647889,6 +685715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647911,7 +685739,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2330": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -647919,7 +685748,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -647927,12 +685757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -647959,6 +685790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -647974,12 +685807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -648007,6 +685841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648022,12 +685858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -648055,6 +685892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648070,12 +685909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -648103,6 +685943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648118,12 +685960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df05b4" }, { @@ -648151,6 +685994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648166,12 +686011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6bc1a" }, { @@ -648199,6 +686045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648214,12 +686062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" } ], @@ -648250,6 +686099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648273,7 +686124,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -648281,12 +686133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -648313,6 +686166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648328,12 +686183,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75df15" }, { @@ -648361,6 +686217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648376,12 +686234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -648409,6 +686268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648424,12 +686285,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20fcda" }, { @@ -648457,6 +686319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648472,12 +686336,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abc0cb" }, { @@ -648505,6 +686370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648520,12 +686387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -648553,6 +686421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648568,12 +686438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0973f5" }, { @@ -648601,6 +686472,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648616,12 +686489,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" } ], @@ -648652,6 +686526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648677,7 +686553,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2331": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/", @@ -648685,7 +686562,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -648693,7 +686571,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2330": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -648701,12 +686580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -648733,6 +686613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648748,12 +686630,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c4a8d" }, { @@ -648781,6 +686664,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648796,12 +686681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd9f85" }, { @@ -648829,6 +686715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648844,12 +686732,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2400" }, { @@ -648877,6 +686766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648892,12 +686783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51f4e4" }, { @@ -648925,6 +686817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648940,12 +686834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2135bf" }, { @@ -648973,6 +686868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -648988,12 +686885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b13af3" }, { @@ -649021,6 +686919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649036,12 +686936,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -649069,6 +686970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649084,12 +686987,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3456b6" }, { @@ -649117,6 +687021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649132,12 +687038,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" } ], @@ -649168,6 +687075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649191,7 +687100,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -649199,7 +687109,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2330": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/", @@ -649207,12 +687118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -649239,6 +687151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649254,12 +687168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5987af" }, { @@ -649287,6 +687202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649302,12 +687219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bece69" }, { @@ -649335,6 +687253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649350,12 +687270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" }, { @@ -649383,6 +687304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649398,12 +687321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "788b0d" }, { @@ -649431,6 +687355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649446,12 +687372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51aa68" }, { @@ -649479,6 +687406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649494,12 +687423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36921c" }, { @@ -649527,6 +687457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649542,12 +687474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93a42f" } ], @@ -649584,6 +687517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649592,9 +687527,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -649621,6 +687556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649629,9 +687566,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -649658,6 +687595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649680,12 +687619,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -649712,6 +687652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649727,12 +687669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a97e94" }, { @@ -649760,6 +687703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649775,12 +687720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64803b" }, { @@ -649808,6 +687754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649823,12 +687771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff3b62" }, { @@ -649856,6 +687805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649871,12 +687822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91d7bc" }, { @@ -649904,6 +687856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649919,12 +687873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -649952,6 +687907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -649967,12 +687924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4edfe1" } ], @@ -650003,6 +687961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650023,7 +687983,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -650031,12 +687992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -650063,6 +688025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650078,12 +688042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -650111,6 +688076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650126,12 +688093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2aa77" }, { @@ -650159,6 +688127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650174,12 +688144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd38a5" }, { @@ -650207,6 +688178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650222,12 +688195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" } ], @@ -650258,6 +688232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650281,7 +688257,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -650289,12 +688266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -650321,6 +688299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650336,12 +688316,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57f732" }, { @@ -650369,6 +688350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650384,12 +688367,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a8299" }, { @@ -650417,6 +688401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650432,12 +688418,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -650465,6 +688452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650480,12 +688469,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "849ccd" }, { @@ -650513,6 +688503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650528,12 +688520,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcf6ea" }, { @@ -650561,6 +688554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650576,12 +688571,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6109e" }, { @@ -650609,6 +688605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650624,12 +688622,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" } ], @@ -650660,6 +688659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650683,7 +688684,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -650691,12 +688693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -650723,6 +688726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650738,12 +688743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c7e59" }, { @@ -650771,6 +688777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650786,12 +688794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5babb2" }, { @@ -650819,6 +688828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650834,12 +688845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -650867,6 +688879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650882,12 +688896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "157a1f" }, { @@ -650915,6 +688930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650930,12 +688947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d87e6" }, { @@ -650963,6 +688981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -650978,12 +688998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -651011,6 +689032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651026,12 +689049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96f250" } ], @@ -651062,6 +689086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651085,7 +689111,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -651093,7 +689120,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/", @@ -651101,7 +689129,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2332": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/", @@ -651109,12 +689138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -651141,6 +689171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651156,12 +689188,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21ca4f" }, { @@ -651189,6 +689222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651204,12 +689239,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64ffb0" }, { @@ -651237,6 +689273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651252,12 +689290,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "905f69" }, { @@ -651285,6 +689324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651300,12 +689341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34abd4" }, { @@ -651333,6 +689375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651348,12 +689392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d6e00" }, { @@ -651381,6 +689426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651396,12 +689443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6f731" }, { @@ -651429,6 +689477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651444,12 +689494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" } ], @@ -651480,6 +689531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651506,7 +689559,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -651514,12 +689568,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -651546,6 +689601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651561,12 +689618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f80a44" }, { @@ -651594,6 +689652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651609,12 +689669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f2757" }, { @@ -651642,6 +689703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651657,12 +689720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f24e67" }, { @@ -651690,6 +689754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651705,12 +689771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2abe4e" }, { @@ -651738,6 +689805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651753,12 +689822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "018fc4" }, { @@ -651786,6 +689856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651801,12 +689873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01ce7b" }, { @@ -651834,6 +689907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651849,12 +689924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac7ca2" }, { @@ -651882,6 +689958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651897,12 +689975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15cd93" }, { @@ -651930,6 +690009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651945,12 +690026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "733391" }, { @@ -651978,6 +690060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -651993,12 +690077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" } ], @@ -652029,6 +690114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652052,7 +690139,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -652060,12 +690148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -652092,6 +690181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652107,12 +690198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fd2b9" }, { @@ -652140,6 +690232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652155,12 +690249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a1f34" }, { @@ -652188,6 +690283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652203,12 +690300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a8dac" }, { @@ -652236,6 +690334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652251,12 +690351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c2292" }, { @@ -652284,6 +690385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652299,12 +690402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fab08a" }, { @@ -652332,6 +690436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652347,12 +690453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8825e" }, { @@ -652380,6 +690487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652395,12 +690504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" } ], @@ -652431,6 +690541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652453,7 +690565,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -652461,12 +690574,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -652493,6 +690607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652508,12 +690624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f7ecc" }, { @@ -652541,6 +690658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652556,12 +690675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a06a3b" }, { @@ -652589,6 +690709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652604,12 +690726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -652637,6 +690760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652652,12 +690777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1bd40" }, { @@ -652685,6 +690811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652700,12 +690828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "caeb2f" }, { @@ -652733,6 +690862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652748,12 +690879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" } ], @@ -652784,6 +690916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652808,7 +690942,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/", @@ -652816,7 +690951,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -652824,12 +690960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -652856,6 +690993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652871,12 +691010,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -652904,6 +691044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652919,12 +691061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -652952,6 +691095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -652967,12 +691112,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -653000,6 +691146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653015,12 +691163,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -653048,6 +691197,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653063,12 +691214,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -653096,6 +691248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653111,12 +691265,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0686cc" }, { @@ -653144,6 +691299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653159,12 +691316,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed6504" }, { @@ -653192,6 +691350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653207,12 +691367,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a5705" } ], @@ -653243,6 +691404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653262,12 +691425,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -653294,6 +691458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653309,12 +691475,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -653342,6 +691509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653357,12 +691526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6d9b2" }, { @@ -653390,6 +691560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653405,12 +691577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" } ], @@ -653441,6 +691614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653459,12 +691634,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -653491,6 +691667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653506,12 +691684,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -653539,6 +691718,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653554,12 +691735,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "662570" } ], @@ -653590,6 +691772,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653610,12 +691794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -653642,6 +691827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653657,12 +691844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e8e0b" }, { @@ -653690,6 +691878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653705,12 +691895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8e5f7" }, { @@ -653738,6 +691929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653753,12 +691946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -653786,6 +691980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653801,12 +691997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fa82b" } ], @@ -653837,6 +692034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653860,12 +692059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -653892,6 +692092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653907,12 +692109,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dd094" }, { @@ -653940,6 +692143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -653955,12 +692160,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f855c" }, { @@ -653988,6 +692194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654003,12 +692211,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dd094" }, { @@ -654036,6 +692245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654051,12 +692262,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -654084,6 +692296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654099,12 +692313,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac1417" }, { @@ -654132,6 +692347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654147,12 +692364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8596b" }, { @@ -654180,6 +692398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654195,12 +692415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27658e" } ], @@ -654231,6 +692452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654251,12 +692474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -654283,6 +692507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654298,12 +692524,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -654331,6 +692558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654346,12 +692575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c4d15" }, { @@ -654379,6 +692609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654394,12 +692626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b01c1a" }, { @@ -654427,6 +692660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654442,12 +692677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9e3e2" } ], @@ -654481,6 +692717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654489,9 +692727,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -654518,6 +692756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654533,12 +692773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66197b" } ], @@ -654569,6 +692810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654591,12 +692834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -654623,6 +692867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654638,12 +692884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -654671,6 +692918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654686,12 +692935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb0b3" }, { @@ -654719,6 +692969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654734,12 +692986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -654767,6 +693020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654782,12 +693037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -654815,6 +693071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654830,12 +693088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42d459" }, { @@ -654863,6 +693122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654878,12 +693139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -654914,6 +693176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654936,12 +693200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -654968,6 +693233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -654983,12 +693250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e44036" }, { @@ -655016,6 +693284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655031,12 +693301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbe20d" }, { @@ -655064,6 +693335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655079,12 +693352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b9792" }, { @@ -655112,6 +693386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655127,12 +693403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76139c" }, { @@ -655160,6 +693437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655175,12 +693454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -655208,6 +693488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655223,12 +693505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c2f4a" } ], @@ -655259,6 +693542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655279,12 +693564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -655311,6 +693597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655326,12 +693614,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36342a" }, { @@ -655359,6 +693648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655374,12 +693665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebb8db" }, { @@ -655407,6 +693699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655422,12 +693716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -655455,6 +693750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655470,12 +693767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -655506,6 +693804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655527,12 +693827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -655559,6 +693860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655574,12 +693877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60ef9e" }, { @@ -655607,6 +693911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655622,12 +693928,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40e9d0" }, { @@ -655655,6 +693962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655670,12 +693979,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -655703,6 +694013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655718,12 +694030,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61c583" }, { @@ -655751,6 +694064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655766,12 +694081,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -655802,6 +694118,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655824,12 +694142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -655856,6 +694175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655871,12 +694192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8cc8c" }, { @@ -655904,6 +694226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655919,12 +694243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d6b4c" }, { @@ -655952,6 +694277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -655967,12 +694294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8cc8c" }, { @@ -656000,6 +694328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656015,12 +694345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -656048,6 +694379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656063,12 +694396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64281b" }, { @@ -656096,6 +694430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656111,12 +694447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -656147,6 +694484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656169,12 +694508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -656201,6 +694541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656216,12 +694558,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef7cab" }, { @@ -656249,6 +694592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656264,12 +694609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "651a9e" }, { @@ -656297,6 +694643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656312,12 +694660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c53c4a" }, { @@ -656345,6 +694694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656360,12 +694711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "077019" }, { @@ -656393,6 +694745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656408,12 +694762,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -656441,6 +694796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656456,12 +694813,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e80a5" } ], @@ -656492,6 +694850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656514,12 +694874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -656546,6 +694907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656561,12 +694924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb489f" }, { @@ -656594,6 +694958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656609,12 +694975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5da81c" }, { @@ -656642,6 +695009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656657,12 +695026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b2e99" }, { @@ -656690,6 +695060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656705,12 +695077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5bca1" }, { @@ -656738,6 +695111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656753,12 +695128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -656786,6 +695162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656801,12 +695179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -656837,6 +695216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656859,12 +695240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -656891,6 +695273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656906,12 +695290,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d6b0f" }, { @@ -656939,6 +695324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -656954,12 +695341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db1aee" }, { @@ -656987,6 +695375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657002,12 +695392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "851dc1" }, { @@ -657035,6 +695426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657050,12 +695443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8906a9" }, { @@ -657083,6 +695477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657098,12 +695494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -657131,6 +695528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657146,12 +695545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d91086" } ], @@ -657182,6 +695582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657201,12 +695603,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -657233,6 +695636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657248,12 +695653,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "919fa0" }, { @@ -657281,6 +695687,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657296,12 +695704,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -657329,6 +695738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657344,12 +695755,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b1dd5" } ], @@ -657380,6 +695792,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657432,7 +695846,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -657440,7 +695855,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/", @@ -657448,12 +695864,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -657480,6 +695897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657495,12 +695914,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8e111" }, { @@ -657528,6 +695948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657543,12 +695965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bf115" }, { @@ -657576,6 +695999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657591,12 +696016,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8e111" }, { @@ -657624,6 +696050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657639,12 +696067,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bed20e" }, { @@ -657672,6 +696101,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657687,12 +696118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d22809" }, { @@ -657720,6 +696152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657735,12 +696169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -657768,6 +696203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657783,12 +696220,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab9229" }, { @@ -657816,6 +696254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657831,12 +696271,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -657864,6 +696305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657879,12 +696322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04fae6" }, { @@ -657912,6 +696356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657927,12 +696373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f9f0a" }, { @@ -657960,6 +696407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -657975,12 +696424,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -658008,6 +696458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658023,12 +696475,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "224e79" }, { @@ -658056,6 +696509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658071,12 +696526,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "816c6e" }, { @@ -658104,6 +696560,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658119,12 +696577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a817e8" }, { @@ -658152,6 +696611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658167,12 +696628,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c704c2" }, { @@ -658200,6 +696662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658215,12 +696679,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c0430" }, { @@ -658248,6 +696713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658263,12 +696730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ccf98" }, { @@ -658296,6 +696764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658311,12 +696781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8100cf" }, { @@ -658344,6 +696815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658359,12 +696832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b1dac" }, { @@ -658392,6 +696866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658407,12 +696883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -658440,6 +696917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658455,12 +696934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "788a8c" }, { @@ -658488,6 +696968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658503,12 +696985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -658536,6 +697019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658551,12 +697036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -658584,6 +697070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658599,12 +697087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -658632,6 +697121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658647,12 +697138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8985b" }, { @@ -658680,6 +697172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658695,12 +697189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -658728,6 +697223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658743,12 +697240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8662fa" }, { @@ -658776,6 +697274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658791,12 +697291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36ab3e" }, { @@ -658824,6 +697325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658839,12 +697342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ff26a" }, { @@ -658872,6 +697376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658887,12 +697393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85ddfb" }, { @@ -658920,6 +697427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658935,12 +697444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -658968,6 +697478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -658983,12 +697495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3bf03" }, { @@ -659016,6 +697529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659031,12 +697546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "930050" }, { @@ -659064,6 +697580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659079,12 +697597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19793c" }, { @@ -659112,6 +697631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659127,12 +697648,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -659160,6 +697682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659175,12 +697699,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" } ], @@ -659211,6 +697736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659259,7 +697786,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -659267,7 +697795,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/", @@ -659275,12 +697804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -659307,6 +697837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659322,12 +697854,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3e2e4" }, { @@ -659355,6 +697888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659370,12 +697905,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b6ae2" }, { @@ -659403,6 +697939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659418,12 +697956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3e2e4" }, { @@ -659451,6 +697990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659466,12 +698007,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -659499,6 +698041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659514,12 +698058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "52824c" }, { @@ -659547,6 +698092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659562,12 +698109,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -659595,6 +698143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659610,12 +698160,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -659643,6 +698194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659658,12 +698211,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ec8cc" }, { @@ -659691,6 +698245,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659706,12 +698262,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -659739,6 +698296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659754,12 +698313,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -659787,6 +698347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659802,12 +698364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -659835,6 +698398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659850,12 +698415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f3d39" }, { @@ -659883,6 +698449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659898,12 +698466,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -659931,6 +698500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659946,12 +698517,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "becc3c" }, { @@ -659979,6 +698551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -659994,12 +698568,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66af3c" }, { @@ -660027,6 +698602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660042,12 +698619,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -660075,6 +698653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660090,12 +698670,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d2043" }, { @@ -660123,6 +698704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660138,12 +698721,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49a3cd" }, { @@ -660171,6 +698755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660186,12 +698772,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7239aa" }, { @@ -660219,6 +698806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660234,12 +698823,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d05756" }, { @@ -660267,6 +698857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660282,12 +698874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -660315,6 +698908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660330,12 +698925,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5b919" }, { @@ -660363,6 +698959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660378,12 +698976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3ae26" }, { @@ -660411,6 +699010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660426,12 +699027,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -660459,6 +699061,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660474,12 +699078,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "881e29" }, { @@ -660507,6 +699112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660522,12 +699129,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "905f01" }, { @@ -660555,6 +699163,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660570,12 +699180,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65d096" }, { @@ -660603,6 +699214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660618,12 +699231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "950fcf" }, { @@ -660651,6 +699265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660666,12 +699282,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -660699,6 +699316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660714,12 +699333,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5d928" }, { @@ -660747,6 +699367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660762,12 +699384,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -660795,6 +699418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660810,12 +699435,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" } ], @@ -660846,6 +699472,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660900,7 +699528,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2339": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/", @@ -660908,7 +699537,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/", @@ -660916,7 +699546,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/", @@ -660924,12 +699555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -660956,6 +699588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -660971,12 +699605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -661004,6 +699639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661019,12 +699656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "653ad0" }, { @@ -661052,6 +699690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661067,12 +699707,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -661100,6 +699741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661115,12 +699758,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "174be7" }, { @@ -661148,6 +699792,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661163,12 +699809,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -661196,6 +699843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661211,12 +699860,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36006f" }, { @@ -661244,6 +699894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661259,12 +699911,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -661292,6 +699945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661307,12 +699962,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -661340,6 +699996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661355,12 +700013,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97a21e" }, { @@ -661388,6 +700047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661403,12 +700064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -661436,6 +700098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661451,12 +700115,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -661484,6 +700149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661499,12 +700166,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3799cd" }, { @@ -661532,6 +700200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661547,12 +700217,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "092c6d" }, { @@ -661580,6 +700251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661595,12 +700268,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "092c6d" }, { @@ -661628,6 +700302,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661643,12 +700319,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "092c6d" }, { @@ -661676,6 +700353,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661691,12 +700370,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "092c6d" }, { @@ -661724,6 +700404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661739,12 +700421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66919a" }, { @@ -661772,6 +700455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661787,12 +700472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be5eb9" }, { @@ -661820,6 +700506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661835,12 +700523,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66919a" }, { @@ -661868,6 +700557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661883,12 +700574,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66919a" }, { @@ -661916,6 +700608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661931,12 +700625,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7310f8" }, { @@ -661964,6 +700659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -661979,12 +700676,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7dd31" }, { @@ -662012,6 +700710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662027,12 +700727,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1e332" }, { @@ -662060,6 +700761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662075,12 +700778,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42e1b7" }, { @@ -662108,6 +700812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662123,12 +700829,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "995fe7" }, { @@ -662156,6 +700863,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662171,12 +700880,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -662204,6 +700914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662219,12 +700931,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04861e" }, { @@ -662252,6 +700965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662267,12 +700982,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05b0dd" }, { @@ -662300,6 +701016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662315,12 +701033,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c50379" }, { @@ -662348,6 +701067,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662363,12 +701084,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e58475" }, { @@ -662396,6 +701118,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662411,12 +701135,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac4427" }, { @@ -662444,6 +701169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662459,12 +701186,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -662492,6 +701220,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662507,12 +701237,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ccc8ee" }, { @@ -662540,6 +701271,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662555,12 +701288,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -662588,6 +701322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662603,12 +701339,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e27853" }, { @@ -662636,6 +701373,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662651,12 +701390,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fed4b" }, { @@ -662684,6 +701424,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662699,12 +701441,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -662732,6 +701475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662747,12 +701492,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" } ], @@ -662783,6 +701529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662837,7 +701585,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -662845,7 +701594,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2338": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -662853,7 +701603,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2335": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/", @@ -662861,7 +701612,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/", @@ -662869,12 +701621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -662901,6 +701654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662916,12 +701671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "830622" }, { @@ -662949,6 +701705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -662964,12 +701722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c9b2a" }, { @@ -662997,6 +701756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663012,12 +701773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "830622" }, { @@ -663045,6 +701807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663060,12 +701824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfd751" }, { @@ -663093,6 +701858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663108,12 +701875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26556a" }, { @@ -663141,6 +701909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663156,12 +701926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfd751" }, { @@ -663189,6 +701960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663204,12 +701977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e0f1" }, { @@ -663237,6 +702011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663252,12 +702028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b8170" }, { @@ -663285,6 +702062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663300,12 +702079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -663333,6 +702113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663348,12 +702130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e13f3" }, { @@ -663381,6 +702164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663396,12 +702181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -663429,6 +702215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663444,12 +702232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95f4d1" }, { @@ -663477,6 +702266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663492,12 +702283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -663525,6 +702317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663540,12 +702334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f96ed0" }, { @@ -663573,6 +702368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663588,12 +702385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f14dce" }, { @@ -663621,6 +702419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663636,12 +702436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6714b2" }, { @@ -663669,6 +702470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663684,12 +702487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -663717,6 +702521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663732,12 +702538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49f43a" }, { @@ -663765,6 +702572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663780,12 +702589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb0272" }, { @@ -663813,6 +702623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663828,12 +702640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce3bcc" }, { @@ -663861,6 +702674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663876,12 +702691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0f3d" }, { @@ -663909,6 +702725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663924,12 +702742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159555" }, { @@ -663957,6 +702776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -663972,12 +702793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a909a" }, { @@ -664005,6 +702827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664020,12 +702844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8579aa" }, { @@ -664053,6 +702878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664068,12 +702895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -664101,6 +702929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664116,12 +702946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "943aea" }, { @@ -664149,6 +702980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664164,12 +702997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c4849" }, { @@ -664197,6 +703031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664212,12 +703048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2559b7" }, { @@ -664245,6 +703082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664260,12 +703099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19ce2b" }, { @@ -664293,6 +703133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664308,12 +703150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f3193" }, { @@ -664341,6 +703184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664356,12 +703201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -664389,6 +703235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664404,12 +703252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -664437,6 +703286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664452,12 +703303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "960a29" }, { @@ -664485,6 +703337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664500,12 +703354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -664533,6 +703388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664548,12 +703405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6286f9" }, { @@ -664581,6 +703439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664596,12 +703456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f5a49" }, { @@ -664629,6 +703490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664644,12 +703507,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abf877" }, { @@ -664677,6 +703541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664692,12 +703558,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" } ], @@ -664728,6 +703595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664780,7 +703649,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2338": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -664788,7 +703658,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -664796,7 +703667,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2335": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/", @@ -664804,7 +703676,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/", @@ -664812,12 +703685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -664844,6 +703718,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664859,12 +703735,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "979865" }, { @@ -664892,6 +703769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664907,12 +703786,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f3a8e" }, { @@ -664940,6 +703820,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -664955,12 +703837,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -664988,6 +703871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665003,12 +703888,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7a9ae" }, { @@ -665036,6 +703922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665051,12 +703939,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b21462" }, { @@ -665084,6 +703973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665099,12 +703990,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66a478" }, { @@ -665132,6 +704024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665147,12 +704041,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b21462" }, { @@ -665180,6 +704075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665195,12 +704092,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -665228,6 +704126,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665243,12 +704143,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "761e27" }, { @@ -665276,6 +704177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665291,12 +704194,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02547a" }, { @@ -665324,6 +704228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665339,12 +704245,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49f43a" }, { @@ -665372,6 +704279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665387,12 +704296,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bc20d" }, { @@ -665420,6 +704330,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665435,12 +704347,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49f43a" }, { @@ -665468,6 +704381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665483,12 +704398,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0707" }, { @@ -665516,6 +704432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665531,12 +704449,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb943f" }, { @@ -665564,6 +704483,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665579,12 +704500,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0707" }, { @@ -665612,6 +704534,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665627,12 +704551,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0707" }, { @@ -665660,6 +704585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665675,12 +704602,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03d617" }, { @@ -665708,6 +704636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665723,12 +704653,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d60b80" }, { @@ -665756,6 +704687,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665771,12 +704704,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -665804,6 +704738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665819,12 +704755,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62eb90" }, { @@ -665852,6 +704789,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665867,12 +704806,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "464528" }, { @@ -665900,6 +704840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665915,12 +704857,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cfca4" }, { @@ -665948,6 +704891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -665963,12 +704908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0794a4" }, { @@ -665996,6 +704942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666011,12 +704959,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3f902" }, { @@ -666044,6 +704993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666059,12 +705010,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3a321" }, { @@ -666092,6 +705044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666107,12 +705061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c93d4" }, { @@ -666140,6 +705095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666155,12 +705112,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -666188,6 +705146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666203,12 +705163,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d207eb" }, { @@ -666236,6 +705197,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666251,12 +705214,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -666284,6 +705248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666299,12 +705265,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad8e9f" }, { @@ -666332,6 +705299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666347,12 +705316,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22da82" }, { @@ -666380,6 +705350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666395,12 +705367,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44ad52" }, { @@ -666428,6 +705401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666443,12 +705418,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "54c524" }, { @@ -666476,6 +705452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666491,12 +705469,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -666524,6 +705503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666539,12 +705520,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" } ], @@ -666575,6 +705557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666625,7 +705609,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -666633,7 +705618,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2337": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -666641,7 +705627,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2335": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/", @@ -666649,7 +705636,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/", @@ -666657,12 +705645,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -666689,6 +705678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666704,12 +705695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f4382" }, { @@ -666737,6 +705729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666752,12 +705746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe4557" }, { @@ -666785,6 +705780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666800,12 +705797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf889d" }, { @@ -666833,6 +705831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666848,12 +705848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd9bc9" }, { @@ -666881,6 +705882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666896,12 +705899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee2862" }, { @@ -666929,6 +705933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666944,12 +705950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e2895" }, { @@ -666977,6 +705984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -666992,12 +706001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee2862" }, { @@ -667025,6 +706035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667040,12 +706052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c35c1" }, { @@ -667073,6 +706086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667088,12 +706103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "969c50" }, { @@ -667121,6 +706137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667136,12 +706154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -667169,6 +706188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667184,12 +706205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -667217,6 +706239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667232,12 +706256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d45f10" }, { @@ -667265,6 +706290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667280,12 +706307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40c516" }, { @@ -667313,6 +706341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667328,12 +706358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e88ba8" }, { @@ -667361,6 +706392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667376,12 +706409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b0c58" }, { @@ -667409,6 +706443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667424,12 +706460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3ffb6" }, { @@ -667457,6 +706494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667472,12 +706511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "563240" }, { @@ -667505,6 +706545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667520,12 +706562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63e894" }, { @@ -667553,6 +706596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667568,12 +706613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e872c5" }, { @@ -667601,6 +706647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667616,12 +706664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -667649,6 +706698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667664,12 +706715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3915f" }, { @@ -667697,6 +706749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667712,12 +706766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2eb25" }, { @@ -667745,6 +706800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667760,12 +706817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2eb7a1" }, { @@ -667793,6 +706851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667808,12 +706868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcb3e4" }, { @@ -667841,6 +706902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667856,12 +706919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -667889,6 +706953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667904,12 +706970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -667937,6 +707004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -667952,12 +707021,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aaceb4" }, { @@ -667985,6 +707055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668000,12 +707072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "588bec" }, { @@ -668033,6 +707106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668048,12 +707123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "726ac2" }, { @@ -668081,6 +707157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668096,12 +707174,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -668129,6 +707208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668144,12 +707225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70a774" }, { @@ -668177,6 +707259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668192,12 +707276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "742cea" }, { @@ -668225,6 +707310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668240,12 +707327,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -668273,6 +707361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668288,12 +707378,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" } ], @@ -668324,6 +707415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668363,7 +707456,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -668371,7 +707465,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2342": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -668379,7 +707474,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2335": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/", @@ -668387,7 +707483,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/", @@ -668395,12 +707492,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -668427,6 +707525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668442,12 +707542,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -668475,6 +707576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668490,12 +707593,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3b1ad" }, { @@ -668523,6 +707627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668538,12 +707644,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -668571,6 +707678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668586,12 +707695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41c162" }, { @@ -668619,6 +707729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668634,12 +707746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f03306" }, { @@ -668667,6 +707780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668682,12 +707797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8359a3" }, { @@ -668715,6 +707831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668730,12 +707848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -668763,6 +707882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668778,12 +707899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce6ce6" }, { @@ -668811,6 +707933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668826,12 +707950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc63df" }, { @@ -668859,6 +707984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668874,12 +708001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -668907,6 +708035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668922,12 +708052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "911f8c" }, { @@ -668955,6 +708086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -668970,12 +708103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -669003,6 +708137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669018,12 +708154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -669051,6 +708188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669066,12 +708205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -669099,6 +708239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669114,12 +708256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -669147,6 +708290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669162,12 +708307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "145366" }, { @@ -669195,6 +708341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669210,12 +708358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fdc9d7" }, { @@ -669243,6 +708392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669258,12 +708409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f8d84" }, { @@ -669291,6 +708443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669306,12 +708460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -669339,6 +708494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669354,12 +708511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d9d42" }, { @@ -669387,6 +708545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669402,12 +708562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f53012" }, { @@ -669435,6 +708596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669450,12 +708613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -669483,6 +708647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669498,12 +708664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" } ], @@ -669534,6 +708701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669571,7 +708740,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2341": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -669579,7 +708749,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2340": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -669587,7 +708758,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -669595,7 +708767,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2335": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/", @@ -669603,7 +708776,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/", @@ -669611,12 +708785,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -669643,6 +708818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669658,12 +708835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42806b" }, { @@ -669691,6 +708869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669706,12 +708886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "52e361" }, { @@ -669739,6 +708920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669754,12 +708937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21eb76" }, { @@ -669787,6 +708971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669802,12 +708988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c7371" }, { @@ -669835,6 +709022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669850,12 +709039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "685c14" }, { @@ -669883,6 +709073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669898,12 +709090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -669931,6 +709124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669946,12 +709141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c567d" }, { @@ -669979,6 +709175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -669994,12 +709192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -670027,6 +709226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670042,12 +709243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -670075,6 +709277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670090,12 +709294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -670123,6 +709328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670138,12 +709345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -670171,6 +709379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670186,12 +709396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -670219,6 +709430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670234,12 +709447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -670267,6 +709481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670282,12 +709498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4541f6" }, { @@ -670315,6 +709532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670330,12 +709549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae9906" }, { @@ -670363,6 +709583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670378,12 +709600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7ee8a" }, { @@ -670411,6 +709634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670426,12 +709651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -670459,6 +709685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670474,12 +709702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -670507,6 +709736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670522,12 +709753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1cd6b" }, { @@ -670555,6 +709787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670570,12 +709804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" }, { @@ -670603,6 +709838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670618,12 +709855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" } ], @@ -670657,6 +709895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670665,9 +709905,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -670694,6 +709934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670702,9 +709944,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -670731,6 +709973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670753,12 +709997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -670785,6 +710030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670800,12 +710047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b7c88" }, { @@ -670833,6 +710081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670848,12 +710098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62b6cd" }, { @@ -670881,6 +710132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670896,12 +710149,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53b9cb" }, { @@ -670929,6 +710183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670944,12 +710200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -670977,6 +710234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -670992,12 +710251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0abaca" }, { @@ -671025,6 +710285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671040,12 +710302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -671076,6 +710339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671107,7 +710372,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2323": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/", @@ -671115,7 +710381,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2324": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -671123,7 +710390,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2321": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -671131,12 +710399,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -671163,6 +710432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671178,12 +710449,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "891dd5" }, { @@ -671211,6 +710483,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671226,12 +710500,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -671259,6 +710534,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671274,12 +710551,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b29f35" }, { @@ -671307,6 +710585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671322,12 +710602,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "832d7e" }, { @@ -671355,6 +710636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671370,12 +710653,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -671403,6 +710687,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671418,12 +710704,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -671451,6 +710738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671466,12 +710755,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -671499,6 +710789,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671514,12 +710806,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -671547,6 +710840,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671562,12 +710857,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -671595,6 +710891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671610,12 +710908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -671643,6 +710942,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671658,12 +710959,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -671691,6 +710993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671706,12 +711010,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -671739,6 +711044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671754,12 +711061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -671787,6 +711095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671802,12 +711112,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fba792" }, { @@ -671835,6 +711146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671850,12 +711163,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5229a9" } ], @@ -671886,6 +711200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671910,7 +711226,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2323": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/", @@ -671918,7 +711235,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2321": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -671926,12 +711244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -671958,6 +711277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -671973,12 +711294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef3cf9" }, { @@ -672006,6 +711328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672021,12 +711345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "912e54" }, { @@ -672054,6 +711379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672069,12 +711396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86b480" }, { @@ -672102,6 +711430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672117,12 +711447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cedb0a" }, { @@ -672150,6 +711481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672165,12 +711498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86faac" }, { @@ -672198,6 +711532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672213,12 +711549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -672246,6 +711583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672261,12 +711600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a22908" }, { @@ -672294,6 +711634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672309,12 +711651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "250d52" } ], @@ -672345,6 +711688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672368,7 +711713,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2323": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/", @@ -672376,7 +711722,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2321": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -672384,12 +711731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -672416,6 +711764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672431,12 +711781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -672464,6 +711815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672479,12 +711832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98c183" }, { @@ -672512,6 +711866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672527,12 +711883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b4a5f" }, { @@ -672560,6 +711917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672575,12 +711934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b6b06" }, { @@ -672608,6 +711968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672623,12 +711985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fa651" }, { @@ -672656,6 +712019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672671,12 +712036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0223a4" }, { @@ -672704,6 +712070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672719,12 +712087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c15c8a" } ], @@ -672755,6 +712124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672774,12 +712145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -672806,6 +712178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672821,12 +712195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f6d5c" }, { @@ -672854,6 +712229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672869,12 +712246,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33870a" }, { @@ -672902,6 +712280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672917,12 +712297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -672953,6 +712334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -672976,12 +712359,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -673008,6 +712392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673023,12 +712409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b4ef3" }, { @@ -673056,6 +712443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673071,12 +712460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa916a" }, { @@ -673104,6 +712494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673119,12 +712511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b4ef3" }, { @@ -673152,6 +712545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673167,12 +712562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cadd49" }, { @@ -673200,6 +712596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673215,12 +712613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -673248,6 +712647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673263,12 +712664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d726b" }, { @@ -673296,6 +712698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673311,12 +712715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -673350,6 +712755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673382,7 +712789,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2318": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -673390,7 +712798,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2323": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/", @@ -673398,7 +712807,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2324": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -673406,7 +712816,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2321": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -673414,12 +712825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -673446,6 +712858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673461,12 +712875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -673494,6 +712909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673509,12 +712926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cab587" }, { @@ -673542,6 +712960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673557,12 +712977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af188b" }, { @@ -673590,6 +713011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673605,12 +713028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -673638,6 +713062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673653,12 +713079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -673686,6 +713113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673701,12 +713130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -673734,6 +713164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673749,12 +713181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -673782,6 +713215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673797,12 +713232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -673830,6 +713266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673845,12 +713283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -673878,6 +713317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673893,12 +713334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -673926,6 +713368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673941,12 +713385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -673974,6 +713419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -673989,12 +713436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -674022,6 +713470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674037,12 +713487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -674070,6 +713521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674085,12 +713538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -674118,6 +713572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674133,12 +713589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -674166,6 +713623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674181,12 +713640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "254c1f" } ], @@ -674217,6 +713677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674253,7 +713715,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2323": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/", @@ -674261,7 +713724,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2324": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -674269,7 +713733,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2321": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -674277,12 +713742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -674309,6 +713775,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674324,12 +713792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "057d5f" }, { @@ -674357,6 +713826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674372,12 +713843,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ceae2" }, { @@ -674405,6 +713877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674420,12 +713894,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -674453,6 +713928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674468,12 +713945,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8fcf" }, { @@ -674501,6 +713979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674516,12 +713996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfaf" }, { @@ -674549,6 +714030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674564,12 +714047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -674597,6 +714081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674612,12 +714098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -674645,6 +714132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674660,12 +714149,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -674693,6 +714183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674708,12 +714200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1aa7cb" }, { @@ -674741,6 +714234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674756,12 +714251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -674789,6 +714285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674804,12 +714302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -674837,6 +714336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674852,12 +714353,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fac63b" }, { @@ -674885,6 +714387,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674900,12 +714404,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "076b61" }, { @@ -674933,6 +714438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674948,12 +714455,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -674981,6 +714489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -674996,12 +714506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -675029,6 +714540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675044,12 +714557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -675077,6 +714591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675092,12 +714608,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f859a4" }, { @@ -675125,6 +714642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675140,12 +714659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -675173,6 +714693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675188,12 +714710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c19e2" }, { @@ -675221,6 +714744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675236,12 +714761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a22908" } ], @@ -675272,6 +714798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675306,7 +714834,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2323": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/", @@ -675314,7 +714843,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2324": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -675322,7 +714852,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2321": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -675330,12 +714861,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -675362,6 +714894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675377,12 +714911,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "085cc8" }, { @@ -675410,6 +714945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675425,12 +714962,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e472" }, { @@ -675458,6 +714996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675473,12 +715013,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -675506,6 +715047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675521,12 +715064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "372a95" }, { @@ -675554,6 +715098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675569,12 +715115,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8e04b" }, { @@ -675602,6 +715149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675617,12 +715166,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09c961" }, { @@ -675650,6 +715200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675665,12 +715217,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47ac26" }, { @@ -675698,6 +715251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675713,12 +715268,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "861e20" }, { @@ -675746,6 +715302,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675761,12 +715319,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90029" }, { @@ -675794,6 +715353,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675809,12 +715370,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -675842,6 +715404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675857,12 +715421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -675890,6 +715455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675905,12 +715472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac3a7b" }, { @@ -675938,6 +715506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -675953,12 +715523,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed5537" }, { @@ -675986,6 +715557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676001,12 +715574,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a57395" }, { @@ -676034,6 +715608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676049,12 +715625,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76e312" }, { @@ -676082,6 +715659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676097,12 +715676,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -676130,6 +715710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676145,12 +715727,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e352ec" }, { @@ -676178,6 +715761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676193,12 +715778,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a22908" } ], @@ -676229,6 +715815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676250,12 +715838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -676282,6 +715871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676297,12 +715888,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -676330,6 +715922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676345,12 +715939,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec86a2" }, { @@ -676378,6 +715973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676393,12 +715990,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad2df0" }, { @@ -676426,6 +716024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676441,12 +716041,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a12fd2" }, { @@ -676474,6 +716075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676489,12 +716092,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -676525,6 +716129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676544,12 +716150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -676576,6 +716183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676591,12 +716200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -676624,6 +716234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676639,12 +716251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2cf85" }, { @@ -676672,6 +716285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676687,12 +716302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -676723,6 +716339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676746,12 +716364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -676778,6 +716397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676793,12 +716414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -676826,6 +716448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676841,12 +716465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "272ea4" }, { @@ -676874,6 +716499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676889,12 +716516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -676922,6 +716550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676937,12 +716567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99efa0" }, { @@ -676970,6 +716601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -676985,12 +716618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" }, { @@ -677018,6 +716652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677033,12 +716669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30bb55" }, { @@ -677066,6 +716703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677081,12 +716720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" } ], @@ -677117,6 +716757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677140,12 +716782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -677172,6 +716815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677187,12 +716832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -677220,6 +716866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677235,12 +716883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -677268,6 +716917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677283,12 +716934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -677316,6 +716968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677331,12 +716985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -677364,6 +717019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677379,12 +717036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -677412,6 +717070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677427,12 +717087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -677460,6 +717121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677475,12 +717138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -677511,6 +717175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677530,12 +717196,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -677562,6 +717229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677577,12 +717246,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -677610,6 +717280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677625,12 +717297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -677658,6 +717331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677673,12 +717348,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" } ], @@ -677709,6 +717385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677729,12 +717407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -677761,6 +717440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677776,12 +717457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -677809,6 +717491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677824,12 +717508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -677857,6 +717542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677872,12 +717559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -677905,6 +717593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677920,12 +717610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" } ], @@ -677956,6 +717647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -677978,12 +717671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -678010,6 +717704,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678025,12 +717721,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d63054" }, { @@ -678058,6 +717755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678073,12 +717772,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b347d1" }, { @@ -678106,6 +717806,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678121,12 +717823,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36612" }, { @@ -678154,6 +717857,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678169,12 +717874,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50fdc5" }, { @@ -678202,6 +717908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678217,12 +717925,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4911f2" }, { @@ -678250,6 +717959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678265,12 +717976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -678301,6 +718013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678321,12 +718035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -678353,6 +718068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678368,12 +718085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e04da" }, { @@ -678401,6 +718119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678416,12 +718136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d0c1c" }, { @@ -678449,6 +718170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678464,12 +718187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -678497,6 +718221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678512,12 +718238,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b75b70" } ], @@ -678548,6 +718275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678566,12 +718295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -678598,6 +718328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678613,12 +718345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -678646,6 +718379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678661,12 +718396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4904d0" } ], @@ -678697,6 +718433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678717,12 +718455,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -678749,6 +718488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678764,12 +718505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cf636" }, { @@ -678797,6 +718539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678812,12 +718556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a845" }, { @@ -678845,6 +718590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678860,12 +718607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -678893,6 +718641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678908,12 +718658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc5fa" } ], @@ -678944,6 +718695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -678964,12 +718717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -678996,6 +718750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679011,12 +718767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad01d5" }, { @@ -679044,6 +718801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679059,12 +718818,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e4b6f" }, { @@ -679092,6 +718852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679107,12 +718869,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -679140,6 +718903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679155,12 +718920,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c04b5" } ], @@ -679191,6 +718957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679211,12 +718979,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -679243,6 +719012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679258,12 +719029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4ae63" }, { @@ -679291,6 +719063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679306,12 +719080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f2e83" }, { @@ -679339,6 +719114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679354,12 +719131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4ae63" }, { @@ -679387,6 +719165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679402,12 +719182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -679438,6 +719219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679458,12 +719241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -679490,6 +719274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679505,12 +719291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "796db7" }, { @@ -679538,6 +719325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679553,12 +719342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47ed9e" }, { @@ -679586,6 +719376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679601,12 +719393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -679634,6 +719427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679649,12 +719444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfd69a" } ], @@ -679691,6 +719487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679719,9 +719517,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"059ccf\":{\"lock\":false,\"pos\":{\"x\":53.2285,\"y\":1.3572,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":270.002,\"z\":0.0168}},\"06ea61\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3692,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9705,\"z\":0.0168}},\"0d33ae\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3626,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":270.0068,\"z\":0.0168}},\"121a7c\":{\"lock\":false,\"pos\":{\"x\":44.5134,\"y\":1.3534,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":270.0321,\"z\":0.0168}},\"13dd9b\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3628,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"167af1\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3685,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.9702,\"z\":0.0168}},\"1d35ce\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3666,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":270.0081,\"z\":0.0168}},\"280592\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3592,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":270.03,\"z\":0.0168}},\"462616\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3665,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":269.9705,\"z\":0.0168}},\"478876\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3633,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.9727,\"z\":0.0168}},\"4826e4\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3678,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":270.0567,\"z\":0.0168}},\"494ff4\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3567,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":270.0347,\"z\":0.0168}},\"4aa750\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3621,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":270.0216,\"z\":0.0168}},\"506474\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3619,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":270.0148,\"z\":0.0168}},\"59fbb3\":{\"lock\":false,\"pos\":{\"x\":53.2306,\"y\":1.3579,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":270.002,\"z\":0.0168}},\"5a3ae9\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3581,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9847,\"z\":0.0168}},\"5b4be9\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3653,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9686,\"z\":0.0168}},\"5e5a25\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3614,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9546,\"z\":0.0168}},\"652ea3\":{\"lock\":false,\"pos\":{\"x\":44.4975,\"y\":1.3527,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":270.0226,\"z\":0.0168}},\"6d6fc2\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3612,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":270.0121,\"z\":0.0168}},\"7602b0\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3601,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9875,\"z\":0.0168}},\"7ba744\":{\"lock\":false,\"pos\":{\"x\":44.5132,\"y\":1.354,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9744,\"z\":0.0168}},\"7bf464\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3635,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":270.0058,\"z\":0.0168}},\"7f09f4\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3585,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":270.0198,\"z\":0.0168}},\"819e30\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3648,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":269.9773,\"z\":0.0168}},\"8b361c\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3599,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":270.0167,\"z\":0.0168}},\"970a14\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3673,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":270.0449,\"z\":0.0168}},\"976f22\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3639,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":270.007,\"z\":0.0168}},\"9b9856\":{\"lock\":false,\"pos\":{\"x\":53.2128,\"y\":1.3559,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":269.9965,\"z\":0.0168}},\"9eb1c4\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3594,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":270.0381,\"z\":0.0168}},\"9ede82\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3588,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9705,\"z\":0.0168}},\"a17fe6\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3554,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":270.0363,\"z\":0.0168}},\"a5e7d0\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.366,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":270.0021,\"z\":0.0168}},\"b1aa47\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3606,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":270.0178,\"z\":0.0168}},\"b79b02\":{\"lock\":false,\"pos\":{\"x\":53.2126,\"y\":1.3552,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":269.9989,\"z\":0.0168}},\"b9c097\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3671,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":270.0324,\"z\":0.0168}},\"bc7341\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3651,\"z\":76.2904},\"rot\":{\"x\":0.0208,\"y\":270.0189,\"z\":0.0168}},\"bce072\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3698,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":270.0151,\"z\":0.0168}},\"c5450e\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3574,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"ced615\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3565,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":270.0305,\"z\":0.0168}},\"d8aee7\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3561,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":270.0034,\"z\":0.0168}},\"dbe602\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3608,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9942,\"z\":0.0168}},\"deb334\":{\"lock\":false,\"pos\":{\"x\":44.5154,\"y\":1.3547,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":270.0254,\"z\":0.0168}},\"df66c1\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3658,\"z\":78.5904},\"rot\":{\"x\":0.0208,\"y\":270.0155,\"z\":0.0168}},\"e5c4f1\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3646,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":270.0033,\"z\":0.0168}},\"ec7a58\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.368,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":269.9896,\"z\":0.0168}},\"f39096\":{\"lock\":false,\"pos\":{\"x\":44.4974,\"y\":1.352,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":270.0396,\"z\":0.0168}},\"f550ac\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3666,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":270.0128,\"z\":0.0168}},\"fe7433\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3641,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -679748,6 +719546,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679763,12 +719563,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce072" }, { @@ -679796,6 +719597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679811,12 +719614,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06ea61" }, { @@ -679844,6 +719648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679859,12 +719665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "167af1" }, { @@ -679892,6 +719699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679907,12 +719716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4826e4" }, { @@ -679940,6 +719750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -679955,12 +719767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9c097" }, { @@ -679988,6 +719801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680003,12 +719818,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "462616" }, { @@ -680036,6 +719852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680051,12 +719869,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df66c1" }, { @@ -680084,6 +719903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680099,12 +719920,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc7341" }, { @@ -680132,6 +719954,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680147,12 +719971,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "478876" }, { @@ -680180,6 +720005,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680195,12 +720022,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "976f22" }, { @@ -680228,6 +720056,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680243,12 +720073,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5c4f1" }, { @@ -680276,6 +720107,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680291,12 +720124,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b4be9" }, { @@ -680324,6 +720158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680339,12 +720175,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5e7d0" }, { @@ -680372,6 +720209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680387,12 +720226,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d35ce" }, { @@ -680420,6 +720260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680435,12 +720277,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "970a14" }, { @@ -680468,6 +720311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680483,12 +720328,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec7a58" }, { @@ -680516,6 +720362,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680531,12 +720379,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f550ac" }, { @@ -680564,6 +720413,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680579,12 +720430,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d33ae" }, { @@ -680612,6 +720464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680627,12 +720481,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "506474" }, { @@ -680660,6 +720515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680675,12 +720532,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d6fc2" }, { @@ -680708,6 +720566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680723,12 +720583,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1aa47" }, { @@ -680756,6 +720617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680771,12 +720634,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b361c" }, { @@ -680804,6 +720668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680819,12 +720685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "280592" }, { @@ -680852,6 +720719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680867,12 +720736,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f09f4" }, { @@ -680900,6 +720770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680915,12 +720787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59fbb3" }, { @@ -680948,6 +720821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -680963,12 +720838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "059ccf" }, { @@ -680996,6 +720872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681011,12 +720889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ced615" }, { @@ -681044,6 +720923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681059,12 +720940,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b9856" }, { @@ -681092,6 +720974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681107,12 +720991,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "652ea3" }, { @@ -681140,6 +721025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681155,12 +721042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "121a7c" }, { @@ -681188,6 +721076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681203,12 +721093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ba744" }, { @@ -681236,6 +721127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681251,12 +721144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "deb334" }, { @@ -681284,6 +721178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681299,12 +721195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a17fe6" }, { @@ -681332,6 +721229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681347,12 +721246,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8aee7" }, { @@ -681380,6 +721280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681395,12 +721297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "494ff4" }, { @@ -681428,6 +721331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681443,12 +721348,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5450e" }, { @@ -681476,6 +721382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681491,12 +721399,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a3ae9" }, { @@ -681524,6 +721433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681539,12 +721450,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ede82" }, { @@ -681572,6 +721484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681587,12 +721501,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9eb1c4" }, { @@ -681620,6 +721535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681635,12 +721552,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7602b0" }, { @@ -681668,6 +721586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681683,12 +721603,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dbe602" }, { @@ -681716,6 +721637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681731,12 +721654,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e5a25" }, { @@ -681764,6 +721688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681779,12 +721705,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4aa750" }, { @@ -681812,6 +721739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681827,12 +721756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13dd9b" }, { @@ -681860,6 +721790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681875,12 +721807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7bf464" }, { @@ -681908,6 +721841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681923,12 +721858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe7433" }, { @@ -681956,6 +721892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -681971,12 +721909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "819e30" }, { @@ -682004,6 +721943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682019,12 +721960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f39096" }, { @@ -682052,6 +721994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682067,12 +722011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b79b02" }, { @@ -682100,6 +722045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682128,9 +722075,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"059ccf\":{\"lock\":false,\"pos\":{\"x\":53.2285,\"y\":1.3572,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":270.002,\"z\":0.0168}},\"06ea61\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3692,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9705,\"z\":0.0168}},\"0d33ae\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3626,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":270.0068,\"z\":0.0168}},\"121a7c\":{\"lock\":false,\"pos\":{\"x\":44.5134,\"y\":1.3534,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":270.0321,\"z\":0.0168}},\"13dd9b\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3628,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"167af1\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3685,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.9702,\"z\":0.0168}},\"1d35ce\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3666,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":270.0081,\"z\":0.0168}},\"280592\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3592,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":270.03,\"z\":0.0168}},\"462616\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3665,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":269.9705,\"z\":0.0168}},\"478876\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3633,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.9727,\"z\":0.0168}},\"4826e4\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3678,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":270.0567,\"z\":0.0168}},\"494ff4\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3567,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":270.0347,\"z\":0.0168}},\"4aa750\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3621,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":270.0216,\"z\":0.0168}},\"506474\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3619,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":270.0148,\"z\":0.0168}},\"59fbb3\":{\"lock\":false,\"pos\":{\"x\":53.2306,\"y\":1.3579,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":270.002,\"z\":0.0168}},\"5a3ae9\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3581,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9847,\"z\":0.0168}},\"5b4be9\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3653,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9686,\"z\":0.0168}},\"5e5a25\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3614,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9546,\"z\":0.0168}},\"652ea3\":{\"lock\":false,\"pos\":{\"x\":44.4975,\"y\":1.3527,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":270.0226,\"z\":0.0168}},\"6d6fc2\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3612,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":270.0121,\"z\":0.0168}},\"7602b0\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3601,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9875,\"z\":0.0168}},\"7ba744\":{\"lock\":false,\"pos\":{\"x\":44.5132,\"y\":1.354,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9744,\"z\":0.0168}},\"7bf464\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3635,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":270.0058,\"z\":0.0168}},\"7f09f4\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3585,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":270.0198,\"z\":0.0168}},\"819e30\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3648,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":269.9773,\"z\":0.0168}},\"8b361c\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3599,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":270.0167,\"z\":0.0168}},\"970a14\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3673,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":270.0449,\"z\":0.0168}},\"976f22\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3639,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":270.007,\"z\":0.0168}},\"9b9856\":{\"lock\":false,\"pos\":{\"x\":53.2128,\"y\":1.3559,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":269.9965,\"z\":0.0168}},\"9eb1c4\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3594,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":270.0381,\"z\":0.0168}},\"9ede82\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3588,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9705,\"z\":0.0168}},\"a17fe6\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3554,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":270.0363,\"z\":0.0168}},\"a5e7d0\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.366,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":270.0021,\"z\":0.0168}},\"b1aa47\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3606,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":270.0178,\"z\":0.0168}},\"b79b02\":{\"lock\":false,\"pos\":{\"x\":53.2126,\"y\":1.3552,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":269.9989,\"z\":0.0168}},\"b9c097\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3671,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":270.0324,\"z\":0.0168}},\"bc7341\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3651,\"z\":76.2904},\"rot\":{\"x\":0.0208,\"y\":270.0189,\"z\":0.0168}},\"bce072\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3698,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":270.0151,\"z\":0.0168}},\"c5450e\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3574,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"ced615\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3565,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":270.0305,\"z\":0.0168}},\"d8aee7\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3561,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":270.0034,\"z\":0.0168}},\"dbe602\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3608,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9942,\"z\":0.0168}},\"deb334\":{\"lock\":false,\"pos\":{\"x\":44.5154,\"y\":1.3547,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":270.0254,\"z\":0.0168}},\"df66c1\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3658,\"z\":78.5904},\"rot\":{\"x\":0.0208,\"y\":270.0155,\"z\":0.0168}},\"e5c4f1\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3646,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":270.0033,\"z\":0.0168}},\"ec7a58\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.368,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":269.9896,\"z\":0.0168}},\"f39096\":{\"lock\":false,\"pos\":{\"x\":44.4974,\"y\":1.352,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":270.0396,\"z\":0.0168}},\"f550ac\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3666,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":270.0128,\"z\":0.0168}},\"fe7433\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3641,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -682157,6 +722104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682172,12 +722121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce072" }, { @@ -682205,6 +722155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682220,12 +722172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06ea61" }, { @@ -682253,6 +722206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682268,12 +722223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "167af1" }, { @@ -682301,6 +722257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682316,12 +722274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4826e4" }, { @@ -682349,6 +722308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682364,12 +722325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9c097" }, { @@ -682397,6 +722359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682412,12 +722376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "462616" }, { @@ -682445,6 +722410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682460,12 +722427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df66c1" }, { @@ -682493,6 +722461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682508,12 +722478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc7341" }, { @@ -682541,6 +722512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682556,12 +722529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "478876" }, { @@ -682589,6 +722563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682604,12 +722580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "976f22" }, { @@ -682637,6 +722614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682652,12 +722631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5c4f1" }, { @@ -682685,6 +722665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682700,12 +722682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b4be9" }, { @@ -682733,6 +722716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682748,12 +722733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5e7d0" }, { @@ -682781,6 +722767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682796,12 +722784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d35ce" }, { @@ -682829,6 +722818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682844,12 +722835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "970a14" }, { @@ -682877,6 +722869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682892,12 +722886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec7a58" }, { @@ -682925,6 +722920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682940,12 +722937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f550ac" }, { @@ -682973,6 +722971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -682988,12 +722988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d33ae" }, { @@ -683021,6 +723022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683036,12 +723039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "506474" }, { @@ -683069,6 +723073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683084,12 +723090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d6fc2" }, { @@ -683117,6 +723124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683132,12 +723141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1aa47" }, { @@ -683165,6 +723175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683180,12 +723192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b361c" }, { @@ -683213,6 +723226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683228,12 +723243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "280592" }, { @@ -683261,6 +723277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683276,12 +723294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f09f4" }, { @@ -683309,6 +723328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683324,12 +723345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59fbb3" }, { @@ -683357,6 +723379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683372,12 +723396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "059ccf" }, { @@ -683405,6 +723430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683420,12 +723447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ced615" }, { @@ -683453,6 +723481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683468,12 +723498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b9856" }, { @@ -683501,6 +723532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683516,12 +723549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "652ea3" }, { @@ -683549,6 +723583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683564,12 +723600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "121a7c" }, { @@ -683597,6 +723634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683612,12 +723651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ba744" }, { @@ -683645,6 +723685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683660,12 +723702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "deb334" }, { @@ -683693,6 +723736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683708,12 +723753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a17fe6" }, { @@ -683741,6 +723787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683756,12 +723804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8aee7" }, { @@ -683789,6 +723838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683804,12 +723855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "494ff4" }, { @@ -683837,6 +723889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683852,12 +723906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5450e" }, { @@ -683885,6 +723940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683900,12 +723957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a3ae9" }, { @@ -683933,6 +723991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683948,12 +724008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ede82" }, { @@ -683981,6 +724042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -683996,12 +724059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9eb1c4" }, { @@ -684029,6 +724093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684044,12 +724110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7602b0" }, { @@ -684077,6 +724144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684092,12 +724161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dbe602" }, { @@ -684125,6 +724195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684140,12 +724212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e5a25" }, { @@ -684173,6 +724246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684188,12 +724263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4aa750" }, { @@ -684221,6 +724297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684236,12 +724314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13dd9b" }, { @@ -684269,6 +724348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684284,12 +724365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7bf464" }, { @@ -684317,6 +724399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684332,12 +724416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe7433" }, { @@ -684365,6 +724450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684380,12 +724467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "819e30" }, { @@ -684413,6 +724501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684428,12 +724518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f39096" }, { @@ -684461,6 +724552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684476,12 +724569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b79b02" } ], @@ -684515,6 +724609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684543,9 +724639,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0a7642\":{\"lock\":false,\"pos\":{\"x\":44.5134,\"y\":1.3534,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"z\":0.0168}},\"0da344\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3639,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9898,\"z\":0.0168}},\"184380\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3671,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":270.0088,\"z\":0.0168}},\"19507d\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3666,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"195b7f\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.368,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":270.0284,\"z\":0.0168}},\"22c65b\":{\"lock\":false,\"pos\":{\"x\":53.2127,\"y\":1.3552,\"z\":48.7356},\"rot\":{\"x\":0.0207,\"y\":270.3718,\"z\":0.0169}},\"273797\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3567,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":269.9684,\"z\":0.0168}},\"293e8d\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3635,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"45a012\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3621,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"460cb8\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3601,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9691,\"z\":0.0168}},\"4f6ede\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3628,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9669,\"z\":0.0168}},\"55ce00\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3673,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"591f6f\":{\"lock\":false,\"pos\":{\"x\":44.4977,\"y\":1.352,\"z\":48.7551},\"rot\":{\"x\":0.0206,\"y\":270.705,\"z\":0.017}},\"5fa99a\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3592,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"60acf8\":{\"lock\":false,\"pos\":{\"x\":53.2285,\"y\":1.3572,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"660d08\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3648,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"6aa477\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3633,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"6d3fdf\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3619,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"724c85\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3626,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":270.0287,\"z\":0.0168}},\"7646d6\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3612,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":270.0287,\"z\":0.0168}},\"7b6fd8\":{\"lock\":false,\"pos\":{\"x\":53.2306,\"y\":1.3579,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":270.0318,\"z\":0.0168}},\"7dc5e1\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3692,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":270.0121,\"z\":0.0168}},\"7dce77\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3594,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"826897\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3561,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"82ee35\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3554,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":269.9781,\"z\":0.0168}},\"840b3d\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3628,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"8475cc\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3653,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":270.0285,\"z\":0.0168}},\"86cf73\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3698,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9736,\"z\":0.0168}},\"88cd33\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3678,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":270.0122,\"z\":0.0168}},\"8a25a0\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.366,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":270.0291,\"z\":0.0168}},\"8b7da2\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3608,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"9eeca1\":{\"lock\":false,\"pos\":{\"x\":53.2047,\"y\":1.3558,\"z\":51.0014},\"rot\":{\"x\":0.0206,\"y\":270.6674,\"z\":0.017}},\"a88e8d\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3658,\"z\":78.5904},\"rot\":{\"x\":0.0208,\"y\":270.0151,\"z\":0.0168}},\"af4c03\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3585,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":270.0279,\"z\":0.0168}},\"b2fedd\":{\"lock\":false,\"pos\":{\"x\":44.4915,\"y\":1.3527,\"z\":51.0176},\"rot\":{\"x\":0.0208,\"y\":270.1117,\"z\":0.0168}},\"b58038\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3646,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"b789ac\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3685,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":270.0117,\"z\":0.0168}},\"bd34f2\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3581,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"bf3261\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3606,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":270.0314,\"z\":0.0168}},\"c634a0\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3665,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":270.0118,\"z\":0.0168}},\"ca17b8\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3565,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"ca8448\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3641,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"cc23ea\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3599,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":270.0282,\"z\":0.0168}},\"ce4f97\":{\"lock\":false,\"pos\":{\"x\":44.5132,\"y\":1.354,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"db2e8d\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3574,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9694,\"z\":0.0168}},\"e29603\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3614,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"e4c7c9\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3635,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":269.9691,\"z\":0.0168}},\"ea9ad0\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3651,\"z\":76.2904},\"rot\":{\"x\":0.0208,\"y\":270.0159,\"z\":0.0168}},\"f2f912\":{\"lock\":false,\"pos\":{\"x\":44.5154,\"y\":1.3547,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"f8d22e\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3588,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -684572,6 +724668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684587,12 +724685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86cf73" }, { @@ -684620,6 +724719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684635,12 +724736,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dc5e1" }, { @@ -684668,6 +724770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684683,12 +724787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b789ac" }, { @@ -684716,6 +724821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684731,12 +724838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88cd33" }, { @@ -684764,6 +724872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684779,12 +724889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "184380" }, { @@ -684812,6 +724923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684827,12 +724940,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c634a0" }, { @@ -684860,6 +724974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684875,12 +724991,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88e8d" }, { @@ -684908,6 +725025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684923,12 +725042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea9ad0" }, { @@ -684956,6 +725076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -684971,12 +725093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6aa477" }, { @@ -685004,6 +725127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685019,12 +725144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0da344" }, { @@ -685052,6 +725178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685067,12 +725195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b58038" }, { @@ -685100,6 +725229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685115,12 +725246,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8475cc" }, { @@ -685148,6 +725280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685163,12 +725297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a25a0" }, { @@ -685196,6 +725331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685211,12 +725348,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19507d" }, { @@ -685244,6 +725382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685259,12 +725399,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55ce00" }, { @@ -685292,6 +725433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685307,12 +725450,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "195b7f" }, { @@ -685340,6 +725484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685355,12 +725501,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "724c85" }, { @@ -685388,6 +725535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685403,12 +725552,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d3fdf" }, { @@ -685436,6 +725586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685451,12 +725603,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7646d6" }, { @@ -685484,6 +725637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685499,12 +725654,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf3261" }, { @@ -685532,6 +725688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685547,12 +725705,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc23ea" }, { @@ -685580,6 +725739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685595,12 +725756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fa99a" }, { @@ -685628,6 +725790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685643,12 +725807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af4c03" }, { @@ -685676,6 +725841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685691,12 +725858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b6fd8" }, { @@ -685724,6 +725892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685739,12 +725909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60acf8" }, { @@ -685772,6 +725943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685787,12 +725960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca17b8" }, { @@ -685820,6 +725994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685835,12 +726011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9eeca1" }, { @@ -685868,6 +726045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685883,12 +726062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22c65b" }, { @@ -685916,6 +726096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685931,12 +726113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "591f6f" }, { @@ -685964,6 +726147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -685979,12 +726164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2fedd" }, { @@ -686012,6 +726198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686027,12 +726215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a7642" }, { @@ -686060,6 +726249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686075,12 +726266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce4f97" }, { @@ -686108,6 +726300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686123,12 +726317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2f912" }, { @@ -686156,6 +726351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686171,12 +726368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82ee35" }, { @@ -686204,6 +726402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686219,12 +726419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "826897" }, { @@ -686252,6 +726453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686267,12 +726470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "273797" }, { @@ -686300,6 +726504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686315,12 +726521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db2e8d" }, { @@ -686348,6 +726555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686363,12 +726572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd34f2" }, { @@ -686396,6 +726606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686411,12 +726623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8d22e" }, { @@ -686444,6 +726657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686459,12 +726674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dce77" }, { @@ -686492,6 +726708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686507,12 +726725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "460cb8" }, { @@ -686540,6 +726759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686555,12 +726776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b7da2" }, { @@ -686588,6 +726810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686603,12 +726827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e29603" }, { @@ -686636,6 +726861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686651,12 +726878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45a012" }, { @@ -686684,6 +726912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686699,12 +726929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "840b3d" }, { @@ -686732,6 +726963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686747,12 +726980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4c7c9" }, { @@ -686780,6 +727014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686795,12 +727031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca8448" }, { @@ -686828,6 +727065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686843,12 +727082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "660d08" }, { @@ -686876,6 +727116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686891,12 +727133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "293e8d" }, { @@ -686924,6 +727167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -686939,12 +727184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f6ede" }, { @@ -686972,6 +727218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687000,9 +727248,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0a7642\":{\"lock\":false,\"pos\":{\"x\":44.5134,\"y\":1.3534,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"z\":0.0168}},\"0da344\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3639,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9898,\"z\":0.0168}},\"184380\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3671,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":270.0088,\"z\":0.0168}},\"19507d\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3666,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"195b7f\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.368,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":270.0284,\"z\":0.0168}},\"22c65b\":{\"lock\":false,\"pos\":{\"x\":53.2127,\"y\":1.3552,\"z\":48.7356},\"rot\":{\"x\":0.0207,\"y\":270.3718,\"z\":0.0169}},\"273797\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3567,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":269.9684,\"z\":0.0168}},\"293e8d\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3635,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"45a012\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3621,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"460cb8\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3601,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9691,\"z\":0.0168}},\"4f6ede\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3628,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9669,\"z\":0.0168}},\"55ce00\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3673,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"591f6f\":{\"lock\":false,\"pos\":{\"x\":44.4977,\"y\":1.352,\"z\":48.7551},\"rot\":{\"x\":0.0206,\"y\":270.705,\"z\":0.017}},\"5fa99a\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3592,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"60acf8\":{\"lock\":false,\"pos\":{\"x\":53.2285,\"y\":1.3572,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"660d08\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3648,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"6aa477\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3633,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"6d3fdf\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3619,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"724c85\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3626,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":270.0287,\"z\":0.0168}},\"7646d6\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3612,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":270.0287,\"z\":0.0168}},\"7b6fd8\":{\"lock\":false,\"pos\":{\"x\":53.2306,\"y\":1.3579,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":270.0318,\"z\":0.0168}},\"7dc5e1\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3692,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":270.0121,\"z\":0.0168}},\"7dce77\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3594,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"826897\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3561,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"82ee35\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3554,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":269.9781,\"z\":0.0168}},\"840b3d\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3628,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"8475cc\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3653,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":270.0285,\"z\":0.0168}},\"86cf73\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3698,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9736,\"z\":0.0168}},\"88cd33\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3678,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":270.0122,\"z\":0.0168}},\"8a25a0\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.366,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":270.0291,\"z\":0.0168}},\"8b7da2\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3608,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"9eeca1\":{\"lock\":false,\"pos\":{\"x\":53.2047,\"y\":1.3558,\"z\":51.0014},\"rot\":{\"x\":0.0206,\"y\":270.6674,\"z\":0.017}},\"a88e8d\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3658,\"z\":78.5904},\"rot\":{\"x\":0.0208,\"y\":270.0151,\"z\":0.0168}},\"af4c03\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3585,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":270.0279,\"z\":0.0168}},\"b2fedd\":{\"lock\":false,\"pos\":{\"x\":44.4915,\"y\":1.3527,\"z\":51.0176},\"rot\":{\"x\":0.0208,\"y\":270.1117,\"z\":0.0168}},\"b58038\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3646,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"b789ac\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3685,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":270.0117,\"z\":0.0168}},\"bd34f2\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3581,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"bf3261\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3606,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":270.0314,\"z\":0.0168}},\"c634a0\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3665,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":270.0118,\"z\":0.0168}},\"ca17b8\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3565,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"ca8448\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3641,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"cc23ea\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3599,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":270.0282,\"z\":0.0168}},\"ce4f97\":{\"lock\":false,\"pos\":{\"x\":44.5132,\"y\":1.354,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"db2e8d\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3574,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9694,\"z\":0.0168}},\"e29603\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3614,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"e4c7c9\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3635,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":269.9691,\"z\":0.0168}},\"ea9ad0\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3651,\"z\":76.2904},\"rot\":{\"x\":0.0208,\"y\":270.0159,\"z\":0.0168}},\"f2f912\":{\"lock\":false,\"pos\":{\"x\":44.5154,\"y\":1.3547,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"f8d22e\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3588,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -687029,6 +727277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687044,12 +727294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86cf73" }, { @@ -687077,6 +727328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687092,12 +727345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dc5e1" }, { @@ -687125,6 +727379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687140,12 +727396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b789ac" }, { @@ -687173,6 +727430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687188,12 +727447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88cd33" }, { @@ -687221,6 +727481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687236,12 +727498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "184380" }, { @@ -687269,6 +727532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687284,12 +727549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c634a0" }, { @@ -687317,6 +727583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687332,12 +727600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88e8d" }, { @@ -687365,6 +727634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687380,12 +727651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea9ad0" }, { @@ -687413,6 +727685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687428,12 +727702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6aa477" }, { @@ -687461,6 +727736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687476,12 +727753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0da344" }, { @@ -687509,6 +727787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687524,12 +727804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b58038" }, { @@ -687557,6 +727838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687572,12 +727855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8475cc" }, { @@ -687605,6 +727889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687620,12 +727906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a25a0" }, { @@ -687653,6 +727940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687668,12 +727957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19507d" }, { @@ -687701,6 +727991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687716,12 +728008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55ce00" }, { @@ -687749,6 +728042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687764,12 +728059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "195b7f" }, { @@ -687797,6 +728093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687812,12 +728110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "724c85" }, { @@ -687845,6 +728144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687860,12 +728161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d3fdf" }, { @@ -687893,6 +728195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687908,12 +728212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7646d6" }, { @@ -687941,6 +728246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -687956,12 +728263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf3261" }, { @@ -687989,6 +728297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688004,12 +728314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc23ea" }, { @@ -688037,6 +728348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688052,12 +728365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fa99a" }, { @@ -688085,6 +728399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688100,12 +728416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af4c03" }, { @@ -688133,6 +728450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688148,12 +728467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b6fd8" }, { @@ -688181,6 +728501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688196,12 +728518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60acf8" }, { @@ -688229,6 +728552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688244,12 +728569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca17b8" }, { @@ -688277,6 +728603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688292,12 +728620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9eeca1" }, { @@ -688325,6 +728654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688340,12 +728671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22c65b" }, { @@ -688373,6 +728705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688388,12 +728722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "591f6f" }, { @@ -688421,6 +728756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688436,12 +728773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2fedd" }, { @@ -688469,6 +728807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688484,12 +728824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a7642" }, { @@ -688517,6 +728858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688532,12 +728875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce4f97" }, { @@ -688565,6 +728909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688580,12 +728926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2f912" }, { @@ -688613,6 +728960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688628,12 +728977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82ee35" }, { @@ -688661,6 +729011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688676,12 +729028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "826897" }, { @@ -688709,6 +729062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688724,12 +729079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "273797" }, { @@ -688757,6 +729113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688772,12 +729130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db2e8d" }, { @@ -688805,6 +729164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688820,12 +729181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd34f2" }, { @@ -688853,6 +729215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688868,12 +729232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8d22e" }, { @@ -688901,6 +729266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688916,12 +729283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dce77" }, { @@ -688949,6 +729317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -688964,12 +729334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "460cb8" }, { @@ -688997,6 +729368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689012,12 +729385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b7da2" }, { @@ -689045,6 +729419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689060,12 +729436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e29603" }, { @@ -689093,6 +729470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689108,12 +729487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45a012" }, { @@ -689141,6 +729521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689156,12 +729538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "840b3d" }, { @@ -689189,6 +729572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689204,12 +729589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4c7c9" }, { @@ -689237,6 +729623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689252,12 +729640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca8448" }, { @@ -689285,6 +729674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689300,12 +729691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "660d08" }, { @@ -689333,6 +729725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689348,12 +729742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "293e8d" }, { @@ -689381,6 +729776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689396,12 +729793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f6ede" } ], @@ -689435,6 +729833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689463,9 +729863,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"00ade1\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3646,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"03bb19\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3671,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9711,\"z\":0.0168}},\"05125c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3601,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"05660e\":{\"lock\":false,\"pos\":{\"x\":53.2128,\"y\":1.3559,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":269.9914,\"z\":0.0168}},\"070246\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3653,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9875,\"z\":0.0168}},\"088c27\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3619,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":270.0107,\"z\":0.0168}},\"176d57\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3561,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":269.98,\"z\":0.0168}},\"1c353d\":{\"lock\":false,\"pos\":{\"x\":44.4974,\"y\":1.352,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.9771,\"z\":0.0168}},\"2239d4\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3635,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":269.9784,\"z\":0.0168}},\"244e5d\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3692,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9683,\"z\":0.0168}},\"338973\":{\"lock\":false,\"pos\":{\"x\":53.2126,\"y\":1.3552,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":269.9877,\"z\":0.0168}},\"38217d\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3673,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"3d6f47\":{\"lock\":false,\"pos\":{\"x\":44.5154,\"y\":1.3547,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":269.9789,\"z\":0.0168}},\"4ee663\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3622,\"z\":87.8487},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"52f66c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3614,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9904,\"z\":0.0168}},\"560b32\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3641,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"5e0769\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3608,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"65a64f\":{\"lock\":false,\"pos\":{\"x\":53.2285,\"y\":1.3572,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":269.9911,\"z\":0.0168}},\"6d5337\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3626,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":269.9875,\"z\":0.0168}},\"70406e\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.368,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":269.9878,\"z\":0.0168}},\"73172c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3588,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"7973c0\":{\"lock\":false,\"pos\":{\"x\":44.5134,\"y\":1.3534,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"7b6e14\":{\"lock\":false,\"pos\":{\"x\":53.2306,\"y\":1.3579,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}},\"7d0ada\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3628,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9847,\"z\":0.0168}},\"7dfe08\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3567,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":269.9881,\"z\":0.0168}},\"889177\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3574,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"922850\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3554,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"92890f\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3581,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"94abd7\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3666,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":269.9841,\"z\":0.0168}},\"9902a8\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3594,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9784,\"z\":0.0168}},\"b3debc\":{\"lock\":false,\"pos\":{\"x\":44.4975,\"y\":1.3527,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"b57f33\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3565,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":269.9877,\"z\":0.0168}},\"b73951\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3615,\"z\":85.5487},\"rot\":{\"x\":0.0208,\"y\":269.9684,\"z\":0.0168}},\"ba1c85\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3685,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.9713,\"z\":0.0168}},\"bc0fb2\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3606,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}},\"bf4815\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.366,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":269.9877,\"z\":0.0168}},\"c03b59\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3599,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"cc7761\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3585,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":269.9807,\"z\":0.0168}},\"d5bad4\":{\"lock\":false,\"pos\":{\"x\":44.5132,\"y\":1.354,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"d83a35\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3666,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"d950d8\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3648,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":269.9785,\"z\":0.0168}},\"e13107\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3635,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"e4f8ba\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3612,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":269.9908,\"z\":0.0168}},\"e5d521\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3621,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"e7f376\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3678,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9648,\"z\":0.0168}},\"e957df\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3633,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.988,\"z\":0.0168}},\"f475ca\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3628,\"z\":85.5607},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"f6b017\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3592,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":269.981,\"z\":0.0168}},\"f8e2fb\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3639,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9909,\"z\":0.0168}},\"fb48a9\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3698,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9713,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -689492,6 +729892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689507,12 +729909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb48a9" }, { @@ -689540,6 +729943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689555,12 +729960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "244e5d" }, { @@ -689588,6 +729994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689603,12 +730011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba1c85" }, { @@ -689636,6 +730045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689651,12 +730062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7f376" }, { @@ -689684,6 +730096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689699,12 +730113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03bb19" }, { @@ -689732,6 +730147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689747,12 +730164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70406e" }, { @@ -689780,6 +730198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689795,12 +730215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "94abd7" }, { @@ -689828,6 +730249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689843,12 +730266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38217d" }, { @@ -689876,6 +730300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689891,12 +730317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "560b32" }, { @@ -689924,6 +730351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689939,12 +730368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d950d8" }, { @@ -689972,6 +730402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -689987,12 +730419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2239d4" }, { @@ -690020,6 +730453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690035,12 +730470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ee663" }, { @@ -690068,6 +730504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690083,12 +730521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d0ada" }, { @@ -690116,6 +730555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690131,12 +730572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e13107" }, { @@ -690164,6 +730606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690179,12 +730623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b73951" }, { @@ -690212,6 +730657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690227,12 +730674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5d521" }, { @@ -690260,6 +730708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690275,12 +730725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "52f66c" }, { @@ -690308,6 +730759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690323,12 +730776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f475ca" }, { @@ -690356,6 +730810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690371,12 +730827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf4815" }, { @@ -690404,6 +730861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690419,12 +730878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d83a35" }, { @@ -690452,6 +730912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690467,12 +730929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "070246" }, { @@ -690500,6 +730963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690515,12 +730980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00ade1" }, { @@ -690548,6 +731014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690563,12 +731031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8e2fb" }, { @@ -690596,6 +731065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690611,12 +731082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e957df" }, { @@ -690644,6 +731116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690659,12 +731133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d5337" }, { @@ -690692,6 +731167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690707,12 +731184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "088c27" }, { @@ -690740,6 +731218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690755,12 +731235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4f8ba" }, { @@ -690788,6 +731269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690803,12 +731286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc0fb2" }, { @@ -690836,6 +731320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690851,12 +731337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c03b59" }, { @@ -690884,6 +731371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690899,12 +731388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dfe08" }, { @@ -690932,6 +731422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690947,12 +731439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "889177" }, { @@ -690980,6 +731473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -690995,12 +731490,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92890f" }, { @@ -691028,6 +731524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691043,12 +731541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73172c" }, { @@ -691076,6 +731575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691091,12 +731592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9902a8" }, { @@ -691124,6 +731626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691139,12 +731643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05125c" }, { @@ -691172,6 +731677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691187,12 +731694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e0769" }, { @@ -691220,6 +731728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691235,12 +731745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "176d57" }, { @@ -691268,6 +731779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691283,12 +731796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "922850" }, { @@ -691316,6 +731830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691331,12 +731847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d6f47" }, { @@ -691364,6 +731881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691379,12 +731898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5bad4" }, { @@ -691412,6 +731932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691427,12 +731949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7973c0" }, { @@ -691460,6 +731983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691475,12 +732000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3debc" }, { @@ -691508,6 +732034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691523,12 +732051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c353d" }, { @@ -691556,6 +732085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691571,12 +732102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "338973" }, { @@ -691604,6 +732136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691619,12 +732153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05660e" }, { @@ -691652,6 +732187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691667,12 +732204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b57f33" }, { @@ -691700,6 +732238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691715,12 +732255,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65a64f" }, { @@ -691748,6 +732289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691763,12 +732306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b6e14" }, { @@ -691796,6 +732340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691811,12 +732357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc7761" }, { @@ -691844,6 +732391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691859,12 +732408,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6b017" }, { @@ -691892,6 +732442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691920,9 +732472,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"00ade1\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3646,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"03bb19\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3671,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9711,\"z\":0.0168}},\"05125c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3601,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"05660e\":{\"lock\":false,\"pos\":{\"x\":53.2128,\"y\":1.3559,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":269.9914,\"z\":0.0168}},\"070246\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3653,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9875,\"z\":0.0168}},\"088c27\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3619,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":270.0107,\"z\":0.0168}},\"176d57\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3561,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":269.98,\"z\":0.0168}},\"1c353d\":{\"lock\":false,\"pos\":{\"x\":44.4974,\"y\":1.352,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.9771,\"z\":0.0168}},\"2239d4\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3635,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":269.9784,\"z\":0.0168}},\"244e5d\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3692,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9683,\"z\":0.0168}},\"338973\":{\"lock\":false,\"pos\":{\"x\":53.2126,\"y\":1.3552,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":269.9877,\"z\":0.0168}},\"38217d\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3673,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"3d6f47\":{\"lock\":false,\"pos\":{\"x\":44.5154,\"y\":1.3547,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":269.9789,\"z\":0.0168}},\"4ee663\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3622,\"z\":87.8487},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"52f66c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3614,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9904,\"z\":0.0168}},\"560b32\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3641,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"5e0769\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3608,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"65a64f\":{\"lock\":false,\"pos\":{\"x\":53.2285,\"y\":1.3572,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":269.9911,\"z\":0.0168}},\"6d5337\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3626,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":269.9875,\"z\":0.0168}},\"70406e\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.368,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":269.9878,\"z\":0.0168}},\"73172c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3588,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"7973c0\":{\"lock\":false,\"pos\":{\"x\":44.5134,\"y\":1.3534,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"7b6e14\":{\"lock\":false,\"pos\":{\"x\":53.2306,\"y\":1.3579,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}},\"7d0ada\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3628,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9847,\"z\":0.0168}},\"7dfe08\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3567,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":269.9881,\"z\":0.0168}},\"889177\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3574,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"922850\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3554,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"92890f\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3581,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"94abd7\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3666,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":269.9841,\"z\":0.0168}},\"9902a8\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3594,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9784,\"z\":0.0168}},\"b3debc\":{\"lock\":false,\"pos\":{\"x\":44.4975,\"y\":1.3527,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"b57f33\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3565,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":269.9877,\"z\":0.0168}},\"b73951\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3615,\"z\":85.5487},\"rot\":{\"x\":0.0208,\"y\":269.9684,\"z\":0.0168}},\"ba1c85\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3685,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.9713,\"z\":0.0168}},\"bc0fb2\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3606,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}},\"bf4815\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.366,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":269.9877,\"z\":0.0168}},\"c03b59\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3599,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"cc7761\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3585,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":269.9807,\"z\":0.0168}},\"d5bad4\":{\"lock\":false,\"pos\":{\"x\":44.5132,\"y\":1.354,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"d83a35\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3666,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"d950d8\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3648,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":269.9785,\"z\":0.0168}},\"e13107\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3635,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"e4f8ba\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3612,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":269.9908,\"z\":0.0168}},\"e5d521\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3621,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"e7f376\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3678,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9648,\"z\":0.0168}},\"e957df\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3633,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.988,\"z\":0.0168}},\"f475ca\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3628,\"z\":85.5607},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"f6b017\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3592,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":269.981,\"z\":0.0168}},\"f8e2fb\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3639,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9909,\"z\":0.0168}},\"fb48a9\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3698,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9713,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -691949,6 +732501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -691964,12 +732518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb48a9" }, { @@ -691997,6 +732552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692012,12 +732569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "244e5d" }, { @@ -692045,6 +732603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692060,12 +732620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba1c85" }, { @@ -692093,6 +732654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692108,12 +732671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7f376" }, { @@ -692141,6 +732705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692156,12 +732722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03bb19" }, { @@ -692189,6 +732756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692204,12 +732773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70406e" }, { @@ -692237,6 +732807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692252,12 +732824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "94abd7" }, { @@ -692285,6 +732858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692300,12 +732875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38217d" }, { @@ -692333,6 +732909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692348,12 +732926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "560b32" }, { @@ -692381,6 +732960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692396,12 +732977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d950d8" }, { @@ -692429,6 +733011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692444,12 +733028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2239d4" }, { @@ -692477,6 +733062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692492,12 +733079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ee663" }, { @@ -692525,6 +733113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692540,12 +733130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d0ada" }, { @@ -692573,6 +733164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692588,12 +733181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e13107" }, { @@ -692621,6 +733215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692636,12 +733232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b73951" }, { @@ -692669,6 +733266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692684,12 +733283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5d521" }, { @@ -692717,6 +733317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692732,12 +733334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "52f66c" }, { @@ -692765,6 +733368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692780,12 +733385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f475ca" }, { @@ -692813,6 +733419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692828,12 +733436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf4815" }, { @@ -692861,6 +733470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692876,12 +733487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d83a35" }, { @@ -692909,6 +733521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692924,12 +733538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "070246" }, { @@ -692957,6 +733572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -692972,12 +733589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00ade1" }, { @@ -693005,6 +733623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693020,12 +733640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8e2fb" }, { @@ -693053,6 +733674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693068,12 +733691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e957df" }, { @@ -693101,6 +733725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693116,12 +733742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d5337" }, { @@ -693149,6 +733776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693164,12 +733793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "088c27" }, { @@ -693197,6 +733827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693212,12 +733844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4f8ba" }, { @@ -693245,6 +733878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693260,12 +733895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc0fb2" }, { @@ -693293,6 +733929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693308,12 +733946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c03b59" }, { @@ -693341,6 +733980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693356,12 +733997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dfe08" }, { @@ -693389,6 +734031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693404,12 +734048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "889177" }, { @@ -693437,6 +734082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693452,12 +734099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92890f" }, { @@ -693485,6 +734133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693500,12 +734150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73172c" }, { @@ -693533,6 +734184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693548,12 +734201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9902a8" }, { @@ -693581,6 +734235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693596,12 +734252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05125c" }, { @@ -693629,6 +734286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693644,12 +734303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e0769" }, { @@ -693677,6 +734337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693692,12 +734354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "176d57" }, { @@ -693725,6 +734388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693740,12 +734405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "922850" }, { @@ -693773,6 +734439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693788,12 +734456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d6f47" }, { @@ -693821,6 +734490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693836,12 +734507,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5bad4" }, { @@ -693869,6 +734541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693884,12 +734558,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7973c0" }, { @@ -693917,6 +734592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693932,12 +734609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3debc" }, { @@ -693965,6 +734643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -693980,12 +734660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c353d" }, { @@ -694013,6 +734694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694028,12 +734711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "338973" }, { @@ -694061,6 +734745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694076,12 +734762,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05660e" }, { @@ -694109,6 +734796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694124,12 +734813,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b57f33" }, { @@ -694157,6 +734847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694172,12 +734864,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65a64f" }, { @@ -694205,6 +734898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694220,12 +734915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b6e14" }, { @@ -694253,6 +734949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694268,12 +734966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc7761" }, { @@ -694301,6 +735000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694316,12 +735017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6b017" } ], @@ -694355,6 +735057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694383,9 +735087,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"00d05a\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3606,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":269.9677,\"z\":0.0168}},\"0ce7b8\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3685,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.971,\"z\":0.0168}},\"0e459d\":{\"lock\":false,\"pos\":{\"x\":44.5132,\"y\":1.354,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":270.0058,\"z\":0.0168}},\"247824\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3646,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":269.9681,\"z\":0.0168}},\"24a147\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3614,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":270.0308,\"z\":0.0168}},\"3120e7\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3567,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":270.0311,\"z\":0.0168}},\"348395\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3666,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":269.968,\"z\":0.0168}},\"4287c0\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3628,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":270.0308,\"z\":0.0168}},\"4abb47\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3588,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":270.0047,\"z\":0.0168}},\"4f33d5\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3592,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":270.0185,\"z\":0.0168}},\"4fe0b8\":{\"lock\":false,\"pos\":{\"x\":44.4974,\"y\":1.352,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.8976,\"z\":0.0167}},\"562eb1\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3639,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9697,\"z\":0.0168}},\"5792ab\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3554,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"5905a9\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3615,\"z\":85.5487},\"rot\":{\"x\":0.0208,\"y\":269.9805,\"z\":0.0168}},\"62db13\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.368,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":269.9674,\"z\":0.0168}},\"64fcdf\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3561,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"715974\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3601,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"74b8d4\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3619,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":269.9677,\"z\":0.0168}},\"7cf231\":{\"lock\":false,\"pos\":{\"x\":44.5137,\"y\":1.3641,\"z\":90.1039},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"7d133c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3608,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":270.0308,\"z\":0.0168}},\"8b39e9\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3628,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9865,\"z\":0.0168}},\"8bb57d\":{\"lock\":false,\"pos\":{\"x\":53.2306,\"y\":1.3579,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":269.9679,\"z\":0.0168}},\"916f1c\":{\"lock\":false,\"pos\":{\"x\":44.5154,\"y\":1.3547,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":270.006,\"z\":0.0168}},\"946958\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3678,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9708,\"z\":0.0168}},\"98aa6a\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3581,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"9bee5a\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3633,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.9697,\"z\":0.0168}},\"9f2514\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3698,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9707,\"z\":0.0168}},\"a26795\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3622,\"z\":87.8487},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"a268ef\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3673,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9697,\"z\":0.0168}},\"a82830\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3653,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9694,\"z\":0.0168}},\"b36f5e\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.366,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":269.968,\"z\":0.0168}},\"b6bccc\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3585,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":270.0016,\"z\":0.0168}},\"b7efb5\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3635,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":269.9703,\"z\":0.0168}},\"b83784\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3612,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":269.968,\"z\":0.0168}},\"c63ec7\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3621,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"d2776c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3635,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":270.0311,\"z\":0.0168}},\"dfc9b0\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3626,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":269.9695,\"z\":0.0168}},\"e0906c\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3692,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9708,\"z\":0.0168}},\"e16d74\":{\"lock\":false,\"pos\":{\"x\":44.4975,\"y\":1.3527,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":270.006,\"z\":0.0168}},\"e546c0\":{\"lock\":false,\"pos\":{\"x\":53.2285,\"y\":1.3572,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":269.9674,\"z\":0.0168}},\"e563d5\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3594,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"e792b0\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3565,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":269.9695,\"z\":0.0168}},\"eb8234\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3574,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"ebdac9\":{\"lock\":false,\"pos\":{\"x\":44.5134,\"y\":1.3534,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":270.0057,\"z\":0.0168}},\"ee51d8\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3599,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":270.0125,\"z\":0.0168}},\"f21135\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3671,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9708,\"z\":0.0168}},\"fee183\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3648,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -694412,6 +735116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694427,12 +735133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f2514" }, { @@ -694460,6 +735167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694475,12 +735184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0906c" }, { @@ -694508,6 +735218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694523,12 +735235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ce7b8" }, { @@ -694556,6 +735269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694571,12 +735286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "946958" }, { @@ -694604,6 +735320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694619,12 +735337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a82830" }, { @@ -694652,6 +735371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694667,12 +735388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f21135" }, { @@ -694700,6 +735422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694715,12 +735439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b36f5e" }, { @@ -694748,6 +735473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694763,12 +735490,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "348395" }, { @@ -694796,6 +735524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694811,12 +735541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a268ef" }, { @@ -694844,6 +735575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694859,12 +735592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62db13" }, { @@ -694892,6 +735626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694907,12 +735643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "247824" }, { @@ -694940,6 +735677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -694955,12 +735694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "562eb1" }, { @@ -694988,6 +735728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695003,12 +735745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfc9b0" }, { @@ -695036,6 +735779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695051,12 +735796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bee5a" }, { @@ -695084,6 +735830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695099,12 +735847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74b8d4" }, { @@ -695132,6 +735881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695147,12 +735898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00d05a" }, { @@ -695180,6 +735932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695195,12 +735949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b83784" }, { @@ -695228,6 +735983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695243,12 +736000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee51d8" }, { @@ -695276,6 +736034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695291,12 +736051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f33d5" }, { @@ -695324,6 +736085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695339,12 +736102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6bccc" }, { @@ -695372,6 +736136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695387,12 +736153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bb57d" }, { @@ -695420,6 +736187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695435,12 +736204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e546c0" }, { @@ -695468,6 +736238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695483,12 +736255,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e792b0" }, { @@ -695516,6 +736289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695531,12 +736306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fe0b8" }, { @@ -695564,6 +736340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695579,12 +736357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e16d74" }, { @@ -695612,6 +736391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695627,12 +736408,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebdac9" }, { @@ -695660,6 +736442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695675,12 +736459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e459d" }, { @@ -695708,6 +736493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695723,12 +736510,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "916f1c" }, { @@ -695756,6 +736544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695771,12 +736561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5792ab" }, { @@ -695804,6 +736595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695819,12 +736612,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64fcdf" }, { @@ -695852,6 +736646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695867,12 +736663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3120e7" }, { @@ -695900,6 +736697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695915,12 +736714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb8234" }, { @@ -695948,6 +736748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -695963,12 +736765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98aa6a" }, { @@ -695996,6 +736799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696011,12 +736816,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4abb47" }, { @@ -696044,6 +736850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696059,12 +736867,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e563d5" }, { @@ -696092,6 +736901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696107,12 +736918,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "715974" }, { @@ -696140,6 +736952,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696155,12 +736969,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d133c" }, { @@ -696188,6 +737003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696203,12 +737020,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24a147" }, { @@ -696236,6 +737054,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696251,12 +737071,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c63ec7" }, { @@ -696284,6 +737105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696299,12 +737122,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4287c0" }, { @@ -696332,6 +737156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696347,12 +737173,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2776c" }, { @@ -696380,6 +737207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696395,12 +737224,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fee183" }, { @@ -696428,6 +737258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696443,12 +737275,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cf231" }, { @@ -696476,6 +737309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696491,12 +737326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b39e9" }, { @@ -696524,6 +737360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696539,12 +737377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7efb5" }, { @@ -696572,6 +737411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696587,12 +737428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a26795" }, { @@ -696620,6 +737462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696635,12 +737479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5905a9" }, { @@ -696668,6 +737513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696696,9 +737543,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"00d05a\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3606,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":269.9677,\"z\":0.0168}},\"0ce7b8\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3685,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.971,\"z\":0.0168}},\"0e459d\":{\"lock\":false,\"pos\":{\"x\":44.5132,\"y\":1.354,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":270.0058,\"z\":0.0168}},\"247824\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3646,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":269.9681,\"z\":0.0168}},\"24a147\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3614,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":270.0308,\"z\":0.0168}},\"3120e7\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3567,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":270.0311,\"z\":0.0168}},\"348395\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3666,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":269.968,\"z\":0.0168}},\"4287c0\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3628,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":270.0308,\"z\":0.0168}},\"4abb47\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3588,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":270.0047,\"z\":0.0168}},\"4f33d5\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3592,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":270.0185,\"z\":0.0168}},\"4fe0b8\":{\"lock\":false,\"pos\":{\"x\":44.4974,\"y\":1.352,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.8976,\"z\":0.0167}},\"562eb1\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3639,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9697,\"z\":0.0168}},\"5792ab\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3554,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"5905a9\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3615,\"z\":85.5487},\"rot\":{\"x\":0.0208,\"y\":269.9805,\"z\":0.0168}},\"62db13\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.368,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":269.9674,\"z\":0.0168}},\"64fcdf\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3561,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"715974\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3601,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"74b8d4\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3619,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":269.9677,\"z\":0.0168}},\"7cf231\":{\"lock\":false,\"pos\":{\"x\":44.5137,\"y\":1.3641,\"z\":90.1039},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"7d133c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3608,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":270.0308,\"z\":0.0168}},\"8b39e9\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3628,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9865,\"z\":0.0168}},\"8bb57d\":{\"lock\":false,\"pos\":{\"x\":53.2306,\"y\":1.3579,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":269.9679,\"z\":0.0168}},\"916f1c\":{\"lock\":false,\"pos\":{\"x\":44.5154,\"y\":1.3547,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":270.006,\"z\":0.0168}},\"946958\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3678,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9708,\"z\":0.0168}},\"98aa6a\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3581,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"9bee5a\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3633,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.9697,\"z\":0.0168}},\"9f2514\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3698,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9707,\"z\":0.0168}},\"a26795\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3622,\"z\":87.8487},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"a268ef\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3673,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9697,\"z\":0.0168}},\"a82830\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3653,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9694,\"z\":0.0168}},\"b36f5e\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.366,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":269.968,\"z\":0.0168}},\"b6bccc\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3585,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":270.0016,\"z\":0.0168}},\"b7efb5\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3635,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":269.9703,\"z\":0.0168}},\"b83784\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3612,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":269.968,\"z\":0.0168}},\"c63ec7\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3621,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"d2776c\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3635,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":270.0311,\"z\":0.0168}},\"dfc9b0\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3626,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":269.9695,\"z\":0.0168}},\"e0906c\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3692,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9708,\"z\":0.0168}},\"e16d74\":{\"lock\":false,\"pos\":{\"x\":44.4975,\"y\":1.3527,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":270.006,\"z\":0.0168}},\"e546c0\":{\"lock\":false,\"pos\":{\"x\":53.2285,\"y\":1.3572,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":269.9674,\"z\":0.0168}},\"e563d5\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3594,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"e792b0\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3565,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":269.9695,\"z\":0.0168}},\"eb8234\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3574,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"ebdac9\":{\"lock\":false,\"pos\":{\"x\":44.5134,\"y\":1.3534,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":270.0057,\"z\":0.0168}},\"ee51d8\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3599,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":270.0125,\"z\":0.0168}},\"f21135\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3671,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9708,\"z\":0.0168}},\"fee183\":{\"lock\":false,\"pos\":{\"x\":44.5133,\"y\":1.3648,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -696725,6 +737572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696740,12 +737589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f2514" }, { @@ -696773,6 +737623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696788,12 +737640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0906c" }, { @@ -696821,6 +737674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696836,12 +737691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ce7b8" }, { @@ -696869,6 +737725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696884,12 +737742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "946958" }, { @@ -696917,6 +737776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696932,12 +737793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a82830" }, { @@ -696965,6 +737827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -696980,12 +737844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f21135" }, { @@ -697013,6 +737878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697028,12 +737895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b36f5e" }, { @@ -697061,6 +737929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697076,12 +737946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "348395" }, { @@ -697109,6 +737980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697124,12 +737997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a268ef" }, { @@ -697157,6 +738031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697172,12 +738048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62db13" }, { @@ -697205,6 +738082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697220,12 +738099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "247824" }, { @@ -697253,6 +738133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697268,12 +738150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "562eb1" }, { @@ -697301,6 +738184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697316,12 +738201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfc9b0" }, { @@ -697349,6 +738235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697364,12 +738252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bee5a" }, { @@ -697397,6 +738286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697412,12 +738303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74b8d4" }, { @@ -697445,6 +738337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697460,12 +738354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00d05a" }, { @@ -697493,6 +738388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697508,12 +738405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b83784" }, { @@ -697541,6 +738439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697556,12 +738456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee51d8" }, { @@ -697589,6 +738490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697604,12 +738507,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f33d5" }, { @@ -697637,6 +738541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697652,12 +738558,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6bccc" }, { @@ -697685,6 +738592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697700,12 +738609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bb57d" }, { @@ -697733,6 +738643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697748,12 +738660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e546c0" }, { @@ -697781,6 +738694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697796,12 +738711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e792b0" }, { @@ -697829,6 +738745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697844,12 +738762,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fe0b8" }, { @@ -697877,6 +738796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697892,12 +738813,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e16d74" }, { @@ -697925,6 +738847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697940,12 +738864,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebdac9" }, { @@ -697973,6 +738898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -697988,12 +738915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e459d" }, { @@ -698021,6 +738949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698036,12 +738966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "916f1c" }, { @@ -698069,6 +739000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698084,12 +739017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5792ab" }, { @@ -698117,6 +739051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698132,12 +739068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64fcdf" }, { @@ -698165,6 +739102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698180,12 +739119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3120e7" }, { @@ -698213,6 +739153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698228,12 +739170,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb8234" }, { @@ -698261,6 +739204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698276,12 +739221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98aa6a" }, { @@ -698309,6 +739255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698324,12 +739272,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4abb47" }, { @@ -698357,6 +739306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698372,12 +739323,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e563d5" }, { @@ -698405,6 +739357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698420,12 +739374,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "715974" }, { @@ -698453,6 +739408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698468,12 +739425,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d133c" }, { @@ -698501,6 +739459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698516,12 +739476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24a147" }, { @@ -698549,6 +739510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698564,12 +739527,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c63ec7" }, { @@ -698597,6 +739561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698612,12 +739578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4287c0" }, { @@ -698645,6 +739612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698660,12 +739629,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2776c" }, { @@ -698693,6 +739663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698708,12 +739680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fee183" }, { @@ -698741,6 +739714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698756,12 +739731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cf231" }, { @@ -698789,6 +739765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698804,12 +739782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b39e9" }, { @@ -698837,6 +739816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698852,12 +739833,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7efb5" }, { @@ -698885,6 +739867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698900,12 +739884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a26795" }, { @@ -698933,6 +739918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -698948,12 +739935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5905a9" } ], @@ -698987,6 +739975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699015,9 +740005,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"01a894\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3562,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":270.0117,\"z\":0.0168}},\"05c26b\":{\"lock\":false,\"pos\":{\"x\":19.2861,\"y\":1.3455,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":270.0318,\"z\":0.0168}},\"07bae2\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3503,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":270.0287,\"z\":0.0168}},\"097d2b\":{\"lock\":false,\"pos\":{\"x\":19.284,\"y\":1.3449,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"0f2742\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3536,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":270.0291,\"z\":0.0168}},\"105ebf\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3525,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":269.9694,\"z\":0.0168}},\"12a0ab\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3528,\"z\":76.2904},\"rot\":{\"x\":0.0208,\"y\":270.0159,\"z\":0.0168}},\"12f935\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3469,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"13b4ea\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3523,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"19537a\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3511,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":269.9691,\"z\":0.0168}},\"1cfcbe\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3541,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":270.0118,\"z\":0.0168}},\"21382f\":{\"lock\":false,\"pos\":{\"x\":19.2682,\"y\":1.3428,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":270.0312,\"z\":0.0168}},\"2ba495\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3535,\"z\":78.5904},\"rot\":{\"x\":0.0208,\"y\":270.0151,\"z\":0.0168}},\"2dc5e0\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3556,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":270.0284,\"z\":0.0168}},\"2f9f0f\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3509,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"3801f7\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3451,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9694,\"z\":0.0168}},\"40785e\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3505,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"4dc805\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3444,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":269.9684,\"z\":0.0168}},\"533260\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3516,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9898,\"z\":0.0168}},\"54afcb\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3471,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"56e3cc\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3575,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9736,\"z\":0.0168}},\"597950\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3548,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":270.0088,\"z\":0.0168}},\"5bfdde\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3482,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":270.0314,\"z\":0.0168}},\"5c070f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3498,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"60a283\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3476,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":270.0282,\"z\":0.0168}},\"676b1e\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3491,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"6d1f49\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3518,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"734a8a\":{\"lock\":false,\"pos\":{\"x\":10.5531,\"y\":1.3404,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"756ec4\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3431,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":269.9781,\"z\":0.0168}},\"80b9b7\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3496,\"z\":71.7415},\"rot\":{\"x\":0.0208,\"y\":270.029,\"z\":0.0168}},\"8dbe76\":{\"lock\":false,\"pos\":{\"x\":10.5709,\"y\":1.3424,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"925c25\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.353,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":270.0285,\"z\":0.0168}},\"96ab3f\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3555,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":270.0122,\"z\":0.0168}},\"9fedc2\":{\"lock\":false,\"pos\":{\"x\":10.5529,\"y\":1.3397,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"a48416\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3484,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"acdb71\":{\"lock\":false,\"pos\":{\"x\":19.2842,\"y\":1.3442,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"b26d91\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3512,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"b5d6e5\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3462,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":270.0279,\"z\":0.0168}},\"bb5684\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3464,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"bc008b\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3568,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":270.0121,\"z\":0.0168}},\"bd5974\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3505,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9669,\"z\":0.0168}},\"c02b12\":{\"lock\":false,\"pos\":{\"x\":10.5688,\"y\":1.3417,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"c2d22a\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3437,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"cac7d0\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.355,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"d4d676\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3489,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":270.0287,\"z\":0.0168}},\"dc2bff\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3478,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9691,\"z\":0.0168}},\"e367cc\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3543,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"eafd11\":{\"lock\":false,\"pos\":{\"x\":19.2683,\"y\":1.3435,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":270.0318,\"z\":0.0168}},\"ebdd78\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.341,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"z\":0.0168}},\"ed16f2\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3458,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -699044,6 +740034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699072,9 +740064,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"01a894\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3562,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":270.0117,\"z\":0.0168}},\"05c26b\":{\"lock\":false,\"pos\":{\"x\":19.2861,\"y\":1.3455,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":270.0318,\"z\":0.0168}},\"07bae2\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3503,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":270.0287,\"z\":0.0168}},\"097d2b\":{\"lock\":false,\"pos\":{\"x\":19.284,\"y\":1.3449,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"0f2742\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3536,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":270.0291,\"z\":0.0168}},\"105ebf\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3525,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":269.9694,\"z\":0.0168}},\"12a0ab\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3528,\"z\":76.2904},\"rot\":{\"x\":0.0208,\"y\":270.0159,\"z\":0.0168}},\"12f935\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3469,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"13b4ea\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3523,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"19537a\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3511,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":269.9691,\"z\":0.0168}},\"1cfcbe\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3541,\"z\":80.8904},\"rot\":{\"x\":0.0208,\"y\":270.0118,\"z\":0.0168}},\"21382f\":{\"lock\":false,\"pos\":{\"x\":19.2682,\"y\":1.3428,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":270.0312,\"z\":0.0168}},\"2ba495\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3535,\"z\":78.5904},\"rot\":{\"x\":0.0208,\"y\":270.0151,\"z\":0.0168}},\"2dc5e0\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3556,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":270.0284,\"z\":0.0168}},\"2f9f0f\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3509,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"3801f7\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3451,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9694,\"z\":0.0168}},\"40785e\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3505,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"4dc805\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3444,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":269.9684,\"z\":0.0168}},\"533260\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3516,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9898,\"z\":0.0168}},\"54afcb\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3471,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"56e3cc\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3575,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9736,\"z\":0.0168}},\"597950\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3548,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":270.0088,\"z\":0.0168}},\"5bfdde\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3482,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":270.0314,\"z\":0.0168}},\"5c070f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3498,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"60a283\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3476,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":270.0282,\"z\":0.0168}},\"676b1e\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3491,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"6d1f49\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3518,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"734a8a\":{\"lock\":false,\"pos\":{\"x\":10.5531,\"y\":1.3404,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"756ec4\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3431,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":269.9781,\"z\":0.0168}},\"80b9b7\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3496,\"z\":71.7415},\"rot\":{\"x\":0.0208,\"y\":270.029,\"z\":0.0168}},\"8dbe76\":{\"lock\":false,\"pos\":{\"x\":10.5709,\"y\":1.3424,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"925c25\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.353,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":270.0285,\"z\":0.0168}},\"96ab3f\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3555,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":270.0122,\"z\":0.0168}},\"9fedc2\":{\"lock\":false,\"pos\":{\"x\":10.5529,\"y\":1.3397,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"a48416\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3484,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"acdb71\":{\"lock\":false,\"pos\":{\"x\":19.2842,\"y\":1.3442,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"b26d91\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3512,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"b5d6e5\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3462,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":270.0279,\"z\":0.0168}},\"bb5684\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3464,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"bc008b\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3568,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":270.0121,\"z\":0.0168}},\"bd5974\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3505,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9669,\"z\":0.0168}},\"c02b12\":{\"lock\":false,\"pos\":{\"x\":10.5688,\"y\":1.3417,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"c2d22a\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3437,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}},\"cac7d0\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.355,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"d4d676\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3489,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":270.0287,\"z\":0.0168}},\"dc2bff\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3478,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9691,\"z\":0.0168}},\"e367cc\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3543,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"eafd11\":{\"lock\":false,\"pos\":{\"x\":19.2683,\"y\":1.3435,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":270.0318,\"z\":0.0168}},\"ebdd78\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.341,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"z\":0.0168}},\"ed16f2\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3458,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9693,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -699101,6 +740093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699116,12 +740110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e3cc" }, { @@ -699149,6 +740144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699164,12 +740161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc008b" }, { @@ -699197,6 +740195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699212,12 +740212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01a894" }, { @@ -699245,6 +740246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699260,12 +740263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96ab3f" }, { @@ -699293,6 +740297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699308,12 +740314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "597950" }, { @@ -699341,6 +740348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699356,12 +740365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cfcbe" }, { @@ -699389,6 +740399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699404,12 +740416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ba495" }, { @@ -699437,6 +740450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699452,12 +740467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12a0ab" }, { @@ -699485,6 +740501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699500,12 +740518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f9f0f" }, { @@ -699533,6 +740552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699548,12 +740569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "533260" }, { @@ -699581,6 +740603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699596,12 +740620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13b4ea" }, { @@ -699629,6 +740654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699644,12 +740671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "925c25" }, { @@ -699677,6 +740705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699692,12 +740722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f2742" }, { @@ -699725,6 +740756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699740,12 +740773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e367cc" }, { @@ -699773,6 +740807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699788,12 +740824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2dc5e0" }, { @@ -699821,6 +740858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699836,12 +740875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cac7d0" }, { @@ -699869,6 +740909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699884,12 +740926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07bae2" }, { @@ -699917,6 +740960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699932,12 +740977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80b9b7" }, { @@ -699965,6 +741011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -699980,12 +741028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4d676" }, { @@ -700013,6 +741062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700028,12 +741079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5bfdde" }, { @@ -700061,6 +741113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700076,12 +741130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60a283" }, { @@ -700109,6 +741164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700124,12 +741181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12f935" }, { @@ -700157,6 +741215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700172,12 +741232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5d6e5" }, { @@ -700205,6 +741266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700220,12 +741283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05c26b" }, { @@ -700253,6 +741317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700268,12 +741334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "097d2b" }, { @@ -700301,6 +741368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700316,12 +741385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acdb71" }, { @@ -700349,6 +741419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700364,12 +741436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eafd11" }, { @@ -700397,6 +741470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700412,12 +741487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21382f" }, { @@ -700445,6 +741521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700460,12 +741538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fedc2" }, { @@ -700493,6 +741572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700508,12 +741589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "734a8a" }, { @@ -700541,6 +741623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700556,12 +741640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebdd78" }, { @@ -700589,6 +741674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700604,12 +741691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c02b12" }, { @@ -700637,6 +741725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700652,12 +741742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dbe76" }, { @@ -700685,6 +741776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700700,12 +741793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "756ec4" }, { @@ -700733,6 +741827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700748,12 +741844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2d22a" }, { @@ -700781,6 +741878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700796,12 +741895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4dc805" }, { @@ -700829,6 +741929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700844,12 +741946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3801f7" }, { @@ -700877,6 +741980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700892,12 +741997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed16f2" }, { @@ -700925,6 +742031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700940,12 +742048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb5684" }, { @@ -700973,6 +742082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -700988,12 +742099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "54afcb" }, { @@ -701021,6 +742133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701036,12 +742150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc2bff" }, { @@ -701069,6 +742184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701084,12 +742201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a48416" }, { @@ -701117,6 +742235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701132,12 +742252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "676b1e" }, { @@ -701165,6 +742286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701180,12 +742303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c070f" }, { @@ -701213,6 +742337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701228,12 +742354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40785e" }, { @@ -701261,6 +742388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701276,12 +742405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19537a" }, { @@ -701309,6 +742439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701324,12 +742456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d1f49" }, { @@ -701357,6 +742490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701372,12 +742507,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "105ebf" }, { @@ -701405,6 +742541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701420,12 +742558,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b26d91" }, { @@ -701453,6 +742592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701468,12 +742609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd5974" } ], @@ -701504,6 +742646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701519,12 +742663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01a894" }, { @@ -701552,6 +742697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701567,12 +742714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05c26b" }, { @@ -701600,6 +742748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701615,12 +742765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07bae2" }, { @@ -701648,6 +742799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701663,12 +742816,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "097d2b" }, { @@ -701696,6 +742850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701711,12 +742867,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f2742" }, { @@ -701744,6 +742901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701759,12 +742918,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "105ebf" }, { @@ -701792,6 +742952,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701807,12 +742969,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12a0ab" }, { @@ -701840,6 +743003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701855,12 +743020,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12f935" }, { @@ -701888,6 +743054,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701903,12 +743071,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13b4ea" }, { @@ -701936,6 +743105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701951,12 +743122,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19537a" }, { @@ -701984,6 +743156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -701999,12 +743173,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cfcbe" }, { @@ -702032,6 +743207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702047,12 +743224,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21382f" }, { @@ -702080,6 +743258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702095,12 +743275,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ba495" }, { @@ -702128,6 +743309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702143,12 +743326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2dc5e0" }, { @@ -702176,6 +743360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702191,12 +743377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f9f0f" }, { @@ -702224,6 +743411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702239,12 +743428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3801f7" }, { @@ -702272,6 +743462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702287,12 +743479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40785e" }, { @@ -702320,6 +743513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702335,12 +743530,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4dc805" }, { @@ -702368,6 +743564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702383,12 +743581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "533260" }, { @@ -702416,6 +743615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702431,12 +743632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "54afcb" }, { @@ -702464,6 +743666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702479,12 +743683,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e3cc" }, { @@ -702512,6 +743717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702527,12 +743734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "597950" }, { @@ -702560,6 +743768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702575,12 +743785,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5bfdde" }, { @@ -702608,6 +743819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702623,12 +743836,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c070f" }, { @@ -702656,6 +743870,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702671,12 +743887,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60a283" }, { @@ -702704,6 +743921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702719,12 +743938,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "676b1e" }, { @@ -702752,6 +743972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702767,12 +743989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d1f49" }, { @@ -702800,6 +744023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702815,12 +744040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "734a8a" }, { @@ -702848,6 +744074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702863,12 +744091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "756ec4" }, { @@ -702896,6 +744125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702911,12 +744142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80b9b7" }, { @@ -702944,6 +744176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -702959,12 +744193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dbe76" }, { @@ -702992,6 +744227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703007,12 +744244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "925c25" }, { @@ -703040,6 +744278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703055,12 +744295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96ab3f" }, { @@ -703088,6 +744329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703103,12 +744346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fedc2" }, { @@ -703136,6 +744380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703151,12 +744397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a48416" }, { @@ -703184,6 +744431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703199,12 +744448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acdb71" }, { @@ -703232,6 +744482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703247,12 +744499,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b26d91" }, { @@ -703280,6 +744533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703295,12 +744550,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5d6e5" }, { @@ -703328,6 +744584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703343,12 +744601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb5684" }, { @@ -703376,6 +744635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703391,12 +744652,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc008b" }, { @@ -703424,6 +744686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703439,12 +744703,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd5974" }, { @@ -703472,6 +744737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703487,12 +744754,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c02b12" }, { @@ -703520,6 +744788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703535,12 +744805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2d22a" }, { @@ -703568,6 +744839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703583,12 +744856,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cac7d0" }, { @@ -703616,6 +744890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703631,12 +744907,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4d676" }, { @@ -703664,6 +744941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703679,12 +744958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc2bff" }, { @@ -703712,6 +744992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703727,12 +745009,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e367cc" }, { @@ -703760,6 +745043,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703775,12 +745060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eafd11" }, { @@ -703808,6 +745094,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703823,12 +745111,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebdd78" }, { @@ -703856,6 +745145,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703871,12 +745162,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed16f2" } ], @@ -703907,6 +745199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703935,9 +745229,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"085253\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3471,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9784,\"z\":0.0168}},\"09c43a\":{\"lock\":false,\"pos\":{\"x\":10.5531,\"y\":1.3404,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":269.9847,\"z\":0.0168}},\"0b358b\":{\"lock\":false,\"pos\":{\"x\":10.5709,\"y\":1.3424,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":269.9789,\"z\":0.0168}},\"13c10e\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3451,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"1ac667\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3496,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":270.0107,\"z\":0.0168}},\"1cda28\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3469,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":269.981,\"z\":0.0168}},\"260032\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3575,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9713,\"z\":0.0168}},\"36f1d1\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3489,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":269.9908,\"z\":0.0168}},\"3b40c2\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3458,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"4002c9\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3498,\"z\":87.8487},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"41ae5f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.341,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":269.9847,\"z\":0.0168}},\"4246e8\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3484,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"4407a2\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3478,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9788,\"z\":0.0168}},\"47b31a\":{\"lock\":false,\"pos\":{\"x\":10.5529,\"y\":1.3397,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.9772,\"z\":0.0168}},\"481e4f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3518,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"51fe45\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3482,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}},\"521086\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3505,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9847,\"z\":0.0168}},\"546840\":{\"lock\":false,\"pos\":{\"x\":19.2682,\"y\":1.3428,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":269.9877,\"z\":0.0168}},\"58e7ca\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3442,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":269.9878,\"z\":0.0168}},\"5caade\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3509,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.988,\"z\":0.0168}},\"5fc646\":{\"lock\":false,\"pos\":{\"x\":15.6184,\"y\":1.3543,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":269.9841,\"z\":0.0168}},\"6a63d1\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3562,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.9713,\"z\":0.0168}},\"6dc20a\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3492,\"z\":85.5487},\"rot\":{\"x\":0.0208,\"y\":269.9685,\"z\":0.0168}},\"70c61b\":{\"lock\":false,\"pos\":{\"x\":10.5688,\"y\":1.3417,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"740489\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3536,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":269.9877,\"z\":0.0168}},\"75060e\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3512,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"7665ef\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3555,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9649,\"z\":0.0168}},\"77923a\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3505,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"789e68\":{\"lock\":false,\"pos\":{\"x\":19.284,\"y\":1.3462,\"z\":60.2517},\"rot\":{\"x\":0.0208,\"y\":269.9807,\"z\":0.0168}},\"7b666c\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3503,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":269.9875,\"z\":0.0168}},\"7fe931\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3476,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"8c51fe\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3525,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":269.9785,\"z\":0.0168}},\"8e3919\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3523,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"969df2\":{\"lock\":false,\"pos\":{\"x\":19.284,\"y\":1.3449,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":269.9911,\"z\":0.0168}},\"9923e4\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3568,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9683,\"z\":0.0168}},\"a13df3\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3464,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"a7afe8\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3511,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":269.9783,\"z\":0.0168}},\"ac9ed8\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3431,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"acb267\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3444,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}},\"c7b43a\":{\"lock\":false,\"pos\":{\"x\":19.2861,\"y\":1.3455,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}},\"d954bb\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3543,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"d9605a\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.353,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9875,\"z\":0.0168}},\"e06830\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3556,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":269.9878,\"z\":0.0168}},\"e095ba\":{\"lock\":false,\"pos\":{\"x\":19.2683,\"y\":1.3435,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":269.9914,\"z\":0.0168}},\"e29c22\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3491,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9904,\"z\":0.0168}},\"e306f1\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3498,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"e4d33f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3437,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":269.98,\"z\":0.0168}},\"ebbf12\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.355,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"efb020\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3548,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9711,\"z\":0.0168}},\"fd5cfc\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3516,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9909,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -703964,6 +745258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -703979,12 +745275,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260032" }, { @@ -704012,6 +745309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704027,12 +745326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9923e4" }, { @@ -704060,6 +745360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704075,12 +745377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a63d1" }, { @@ -704108,6 +745411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704123,12 +745428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7665ef" }, { @@ -704156,6 +745462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704171,12 +745479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "efb020" }, { @@ -704204,6 +745513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704219,12 +745530,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e06830" }, { @@ -704252,6 +745564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704267,12 +745581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fc646" }, { @@ -704300,6 +745615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704315,12 +745632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebbf12" }, { @@ -704348,6 +745666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704363,12 +745683,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d954bb" }, { @@ -704396,6 +745717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704411,12 +745734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "740489" }, { @@ -704444,6 +745768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704459,12 +745785,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9605a" }, { @@ -704492,6 +745819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704507,12 +745836,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e3919" }, { @@ -704540,6 +745870,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704555,12 +745887,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd5cfc" }, { @@ -704588,6 +745921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704603,12 +745938,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5caade" }, { @@ -704636,6 +745972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704651,12 +745989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b666c" }, { @@ -704684,6 +746023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704699,12 +746040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ac667" }, { @@ -704732,6 +746074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704747,12 +746091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36f1d1" }, { @@ -704780,6 +746125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704795,12 +746142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51fe45" }, { @@ -704828,6 +746176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704843,12 +746193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fe931" }, { @@ -704876,6 +746227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704891,12 +746244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cda28" }, { @@ -704924,6 +746278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704939,12 +746295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "789e68" }, { @@ -704972,6 +746329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -704987,12 +746346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7b43a" }, { @@ -705020,6 +746380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705035,12 +746397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "969df2" }, { @@ -705068,6 +746431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705083,12 +746448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58e7ca" }, { @@ -705116,6 +746482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705131,12 +746499,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e095ba" }, { @@ -705164,6 +746533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705179,12 +746550,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "546840" }, { @@ -705212,6 +746584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705227,12 +746601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47b31a" }, { @@ -705260,6 +746635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705275,12 +746652,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09c43a" }, { @@ -705308,6 +746686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705323,12 +746703,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41ae5f" }, { @@ -705356,6 +746737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705371,12 +746754,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70c61b" }, { @@ -705404,6 +746788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705419,12 +746805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b358b" }, { @@ -705452,6 +746839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705467,12 +746856,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac9ed8" }, { @@ -705500,6 +746890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705515,12 +746907,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4d33f" }, { @@ -705548,6 +746941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705563,12 +746958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb267" }, { @@ -705596,6 +746992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705611,12 +747009,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13c10e" }, { @@ -705644,6 +747043,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705659,12 +747060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b40c2" }, { @@ -705692,6 +747094,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705707,12 +747111,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a13df3" }, { @@ -705740,6 +747145,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705755,12 +747162,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "085253" }, { @@ -705788,6 +747196,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705803,12 +747213,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4407a2" }, { @@ -705836,6 +747247,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705851,12 +747264,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4246e8" }, { @@ -705884,6 +747298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705899,12 +747315,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e29c22" }, { @@ -705932,6 +747349,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705947,12 +747366,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e306f1" }, { @@ -705980,6 +747400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -705995,12 +747417,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77923a" }, { @@ -706028,6 +747451,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706043,12 +747468,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "481e4f" }, { @@ -706076,6 +747502,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706091,12 +747519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7afe8" }, { @@ -706124,6 +747553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706139,12 +747570,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4002c9" }, { @@ -706172,6 +747604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706187,12 +747621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dc20a" }, { @@ -706220,6 +747655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706235,12 +747672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "521086" }, { @@ -706268,6 +747706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706283,12 +747723,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75060e" }, { @@ -706316,6 +747757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706331,12 +747774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c51fe" }, { @@ -706364,6 +747808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706392,9 +747838,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"085253\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3471,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":269.9784,\"z\":0.0168}},\"09c43a\":{\"lock\":false,\"pos\":{\"x\":10.5531,\"y\":1.3404,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":269.9847,\"z\":0.0168}},\"0b358b\":{\"lock\":false,\"pos\":{\"x\":10.5709,\"y\":1.3424,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":269.9789,\"z\":0.0168}},\"13c10e\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3451,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"1ac667\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3496,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":270.0107,\"z\":0.0168}},\"1cda28\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3469,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":269.981,\"z\":0.0168}},\"260032\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3575,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9713,\"z\":0.0168}},\"36f1d1\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3489,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":269.9908,\"z\":0.0168}},\"3b40c2\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3458,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"4002c9\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3498,\"z\":87.8487},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"41ae5f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.341,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":269.9847,\"z\":0.0168}},\"4246e8\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3484,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"4407a2\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3478,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9788,\"z\":0.0168}},\"47b31a\":{\"lock\":false,\"pos\":{\"x\":10.5529,\"y\":1.3397,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.9772,\"z\":0.0168}},\"481e4f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3518,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"51fe45\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3482,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}},\"521086\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3505,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9847,\"z\":0.0168}},\"546840\":{\"lock\":false,\"pos\":{\"x\":19.2682,\"y\":1.3428,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":269.9877,\"z\":0.0168}},\"58e7ca\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3442,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":269.9878,\"z\":0.0168}},\"5caade\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3509,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.988,\"z\":0.0168}},\"5fc646\":{\"lock\":false,\"pos\":{\"x\":15.6184,\"y\":1.3543,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":269.9841,\"z\":0.0168}},\"6a63d1\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3562,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.9713,\"z\":0.0168}},\"6dc20a\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3492,\"z\":85.5487},\"rot\":{\"x\":0.0208,\"y\":269.9685,\"z\":0.0168}},\"70c61b\":{\"lock\":false,\"pos\":{\"x\":10.5688,\"y\":1.3417,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"740489\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3536,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":269.9877,\"z\":0.0168}},\"75060e\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3512,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"7665ef\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3555,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9649,\"z\":0.0168}},\"77923a\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3505,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"789e68\":{\"lock\":false,\"pos\":{\"x\":19.284,\"y\":1.3462,\"z\":60.2517},\"rot\":{\"x\":0.0208,\"y\":269.9807,\"z\":0.0168}},\"7b666c\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3503,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":269.9875,\"z\":0.0168}},\"7fe931\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3476,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"8c51fe\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3525,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":269.9785,\"z\":0.0168}},\"8e3919\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3523,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"969df2\":{\"lock\":false,\"pos\":{\"x\":19.284,\"y\":1.3449,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":269.9911,\"z\":0.0168}},\"9923e4\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3568,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9683,\"z\":0.0168}},\"a13df3\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3464,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"a7afe8\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3511,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":269.9783,\"z\":0.0168}},\"ac9ed8\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3431,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":269.9786,\"z\":0.0168}},\"acb267\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3444,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}},\"c7b43a\":{\"lock\":false,\"pos\":{\"x\":19.2861,\"y\":1.3455,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}},\"d954bb\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3543,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"d9605a\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.353,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9875,\"z\":0.0168}},\"e06830\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3556,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":269.9878,\"z\":0.0168}},\"e095ba\":{\"lock\":false,\"pos\":{\"x\":19.2683,\"y\":1.3435,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":269.9914,\"z\":0.0168}},\"e29c22\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3491,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9904,\"z\":0.0168}},\"e306f1\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3498,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":269.9787,\"z\":0.0168}},\"e4d33f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3437,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":269.98,\"z\":0.0168}},\"ebbf12\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.355,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9883,\"z\":0.0168}},\"efb020\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3548,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9711,\"z\":0.0168}},\"fd5cfc\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3516,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9909,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -706421,6 +747867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706436,12 +747884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260032" }, { @@ -706469,6 +747918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706484,12 +747935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9923e4" }, { @@ -706517,6 +747969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706532,12 +747986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a63d1" }, { @@ -706565,6 +748020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706580,12 +748037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7665ef" }, { @@ -706613,6 +748071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706628,12 +748088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "efb020" }, { @@ -706661,6 +748122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706676,12 +748139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e06830" }, { @@ -706709,6 +748173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706724,12 +748190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fc646" }, { @@ -706757,6 +748224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706772,12 +748241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebbf12" }, { @@ -706805,6 +748275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706820,12 +748292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d954bb" }, { @@ -706853,6 +748326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706868,12 +748343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "740489" }, { @@ -706901,6 +748377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706916,12 +748394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9605a" }, { @@ -706949,6 +748428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -706964,12 +748445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e3919" }, { @@ -706997,6 +748479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707012,12 +748496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd5cfc" }, { @@ -707045,6 +748530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707060,12 +748547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5caade" }, { @@ -707093,6 +748581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707108,12 +748598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b666c" }, { @@ -707141,6 +748632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707156,12 +748649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ac667" }, { @@ -707189,6 +748683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707204,12 +748700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36f1d1" }, { @@ -707237,6 +748734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707252,12 +748751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "51fe45" }, { @@ -707285,6 +748785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707300,12 +748802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fe931" }, { @@ -707333,6 +748836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707348,12 +748853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cda28" }, { @@ -707381,6 +748887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707396,12 +748904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "789e68" }, { @@ -707429,6 +748938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707444,12 +748955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7b43a" }, { @@ -707477,6 +748989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707492,12 +749006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "969df2" }, { @@ -707525,6 +749040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707540,12 +749057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58e7ca" }, { @@ -707573,6 +749091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707588,12 +749108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e095ba" }, { @@ -707621,6 +749142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707636,12 +749159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "546840" }, { @@ -707669,6 +749193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707684,12 +749210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47b31a" }, { @@ -707717,6 +749244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707732,12 +749261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09c43a" }, { @@ -707765,6 +749295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707780,12 +749312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41ae5f" }, { @@ -707813,6 +749346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707828,12 +749363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70c61b" }, { @@ -707861,6 +749397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707876,12 +749414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b358b" }, { @@ -707909,6 +749448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707924,12 +749465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac9ed8" }, { @@ -707957,6 +749499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -707972,12 +749516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4d33f" }, { @@ -708005,6 +749550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708020,12 +749567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb267" }, { @@ -708053,6 +749601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708068,12 +749618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13c10e" }, { @@ -708101,6 +749652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708116,12 +749669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b40c2" }, { @@ -708149,6 +749703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708164,12 +749720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a13df3" }, { @@ -708197,6 +749754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708212,12 +749771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "085253" }, { @@ -708245,6 +749805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708260,12 +749822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4407a2" }, { @@ -708293,6 +749856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708308,12 +749873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4246e8" }, { @@ -708341,6 +749907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708356,12 +749924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e29c22" }, { @@ -708389,6 +749958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708404,12 +749975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e306f1" }, { @@ -708437,6 +750009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708452,12 +750026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77923a" }, { @@ -708485,6 +750060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708500,12 +750077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "481e4f" }, { @@ -708533,6 +750111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708548,12 +750128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7afe8" }, { @@ -708581,6 +750162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708596,12 +750179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4002c9" }, { @@ -708629,6 +750213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708644,12 +750230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dc20a" }, { @@ -708677,6 +750264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708692,12 +750281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "521086" }, { @@ -708725,6 +750315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708740,12 +750332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75060e" }, { @@ -708773,6 +750366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708788,12 +750383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c51fe" } ], @@ -708827,6 +750423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708855,9 +750453,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"05f644\":{\"lock\":false,\"pos\":{\"x\":19.2842,\"y\":1.3442,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":269.9695,\"z\":0.0168}},\"0cedc1\":{\"lock\":false,\"pos\":{\"x\":19.2861,\"y\":1.3455,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":269.9679,\"z\":0.0168}},\"0daceb\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3482,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":269.9677,\"z\":0.0168}},\"1e0818\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3469,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":270.0185,\"z\":0.0168}},\"20174f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3444,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":270.0311,\"z\":0.0168}},\"294b5d\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3471,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"2c31e0\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3458,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"303af5\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3556,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":269.9674,\"z\":0.0168}},\"322e0e\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3548,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9708,\"z\":0.0168}},\"3c4ca3\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3511,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":270.0312,\"z\":0.0168}},\"4132e5\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3464,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":270.0047,\"z\":0.0168}},\"46cc4f\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3498,\"z\":87.8487},\"rot\":{\"x\":0.0208,\"y\":269.9845,\"z\":0.0168}},\"4a569b\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3505,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9865,\"z\":0.0168}},\"4a9214\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3568,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9708,\"z\":0.0168}},\"53cb9f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3478,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"565cb2\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3536,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":269.968,\"z\":0.0168}},\"58a92e\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3451,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"590c4a\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3492,\"z\":85.5487},\"rot\":{\"x\":0.0208,\"y\":269.9805,\"z\":0.0168}},\"5c9ce3\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3525,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"65e124\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3503,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":269.9695,\"z\":0.0168}},\"69b332\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3562,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.971,\"z\":0.0168}},\"6a0e2b\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3516,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9697,\"z\":0.0168}},\"6e4969\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3437,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":270.0311,\"z\":0.0168}},\"6e98b8\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3543,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":269.968,\"z\":0.0168}},\"762a22\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3476,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":270.0125,\"z\":0.0168}},\"8017d9\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3575,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9707,\"z\":0.0168}},\"8070ac\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3512,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":269.9703,\"z\":0.0168}},\"833348\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3496,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":269.9677,\"z\":0.0168}},\"862255\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3509,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.9697,\"z\":0.0168}},\"8e8a14\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3462,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":270.0016,\"z\":0.0168}},\"90b11b\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3518,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"964dee\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3484,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":270.0308,\"z\":0.0168}},\"a5a6cd\":{\"lock\":false,\"pos\":{\"x\":10.5688,\"y\":1.3417,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":270.0059,\"z\":0.0168}},\"aa03c1\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3523,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":269.9681,\"z\":0.0168}},\"b146d4\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.355,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9697,\"z\":0.0168}},\"b2c2a3\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3498,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"b38243\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.353,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9694,\"z\":0.0168}},\"b535b5\":{\"lock\":false,\"pos\":{\"x\":19.284,\"y\":1.3449,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":269.9674,\"z\":0.0168}},\"bde120\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3489,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":269.968,\"z\":0.0168}},\"cf397c\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3491,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":270.0308,\"z\":0.0168}},\"cfd68d\":{\"lock\":false,\"pos\":{\"x\":10.5531,\"y\":1.3404,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":270.006,\"z\":0.0168}},\"d5f8d1\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3555,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9708,\"z\":0.0168}},\"de820a\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3505,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":270.0308,\"z\":0.0168}},\"e90b04\":{\"lock\":false,\"pos\":{\"x\":10.5529,\"y\":1.3397,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.8976,\"z\":0.0167}},\"ed310c\":{\"lock\":false,\"pos\":{\"x\":10.5709,\"y\":1.3424,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":270.006,\"z\":0.0168}},\"ef36a1\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3431,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"f4034c\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.341,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":270.0058,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -708884,6 +750482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708899,12 +750499,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8017d9" }, { @@ -708932,6 +750533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708947,12 +750550,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a9214" }, { @@ -708980,6 +750584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -708995,12 +750601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69b332" }, { @@ -709028,6 +750635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709043,12 +750652,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5f8d1" }, { @@ -709076,6 +750686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709091,12 +750703,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "322e0e" }, { @@ -709124,6 +750737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709139,12 +750754,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b38243" }, { @@ -709172,6 +750788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709187,12 +750805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "565cb2" }, { @@ -709220,6 +750839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709235,12 +750856,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e98b8" }, { @@ -709268,6 +750890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709283,12 +750907,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b146d4" }, { @@ -709316,6 +750941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709331,12 +750958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "303af5" }, { @@ -709364,6 +750992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709379,12 +751009,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa03c1" }, { @@ -709412,6 +751043,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709427,12 +751060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a0e2b" }, { @@ -709460,6 +751094,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709475,12 +751111,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "862255" }, { @@ -709508,6 +751145,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709523,12 +751162,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65e124" }, { @@ -709556,6 +751196,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709571,12 +751213,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "833348" }, { @@ -709604,6 +751247,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709619,12 +751264,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bde120" }, { @@ -709652,6 +751298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709667,12 +751315,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0daceb" }, { @@ -709700,6 +751349,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709715,12 +751366,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "762a22" }, { @@ -709748,6 +751400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709763,12 +751417,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e0818" }, { @@ -709796,6 +751451,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709811,12 +751468,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8a14" }, { @@ -709844,6 +751502,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709859,12 +751519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cedc1" }, { @@ -709892,6 +751553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709907,12 +751570,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b535b5" }, { @@ -709940,6 +751604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -709955,12 +751621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05f644" }, { @@ -709988,6 +751655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710003,12 +751672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90b04" }, { @@ -710036,6 +751706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710051,12 +751723,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfd68d" }, { @@ -710084,6 +751757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710099,12 +751774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4034c" }, { @@ -710132,6 +751808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710147,12 +751825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5a6cd" }, { @@ -710180,6 +751859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710195,12 +751876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed310c" }, { @@ -710228,6 +751910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710243,12 +751927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef36a1" }, { @@ -710276,6 +751961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710291,12 +751978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e4969" }, { @@ -710324,6 +752012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710339,12 +752029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20174f" }, { @@ -710372,6 +752063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710387,12 +752080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58a92e" }, { @@ -710420,6 +752114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710435,12 +752131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c31e0" }, { @@ -710468,6 +752165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710483,12 +752182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4132e5" }, { @@ -710516,6 +752216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710531,12 +752233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "294b5d" }, { @@ -710564,6 +752267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710579,12 +752284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53cb9f" }, { @@ -710612,6 +752318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710627,12 +752335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "964dee" }, { @@ -710660,6 +752369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710675,12 +752386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf397c" }, { @@ -710708,6 +752420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710723,12 +752437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2c2a3" }, { @@ -710756,6 +752471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710771,12 +752488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de820a" }, { @@ -710804,6 +752522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710819,12 +752539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c4ca3" }, { @@ -710852,6 +752573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710867,12 +752590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90b11b" }, { @@ -710900,6 +752624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710915,12 +752641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c9ce3" }, { @@ -710948,6 +752675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -710963,12 +752692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8070ac" }, { @@ -710996,6 +752726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711011,12 +752743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a569b" }, { @@ -711044,6 +752777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711059,12 +752794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46cc4f" }, { @@ -711092,6 +752828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711107,12 +752845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "590c4a" }, { @@ -711140,6 +752879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711168,9 +752909,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"05f644\":{\"lock\":false,\"pos\":{\"x\":19.2842,\"y\":1.3442,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":269.9695,\"z\":0.0168}},\"0cedc1\":{\"lock\":false,\"pos\":{\"x\":19.2861,\"y\":1.3455,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":269.9679,\"z\":0.0168}},\"0daceb\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3482,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":269.9677,\"z\":0.0168}},\"1e0818\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3469,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":270.0185,\"z\":0.0168}},\"20174f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3444,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":270.0311,\"z\":0.0168}},\"294b5d\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3471,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"2c31e0\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3458,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"303af5\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3556,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":269.9674,\"z\":0.0168}},\"322e0e\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3548,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":269.9708,\"z\":0.0168}},\"3c4ca3\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3511,\"z\":87.8608},\"rot\":{\"x\":0.0208,\"y\":270.0312,\"z\":0.0168}},\"4132e5\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3464,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":270.0047,\"z\":0.0168}},\"46cc4f\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3498,\"z\":87.8487},\"rot\":{\"x\":0.0208,\"y\":269.9845,\"z\":0.0168}},\"4a569b\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3505,\"z\":90.1487},\"rot\":{\"x\":0.0208,\"y\":269.9865,\"z\":0.0168}},\"4a9214\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3568,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9708,\"z\":0.0168}},\"53cb9f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3478,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"565cb2\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3536,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":269.968,\"z\":0.0168}},\"58a92e\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3451,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"590c4a\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3492,\"z\":85.5487},\"rot\":{\"x\":0.0208,\"y\":269.9805,\"z\":0.0168}},\"5c9ce3\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3525,\"z\":92.4607},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"65e124\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3503,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":269.9695,\"z\":0.0168}},\"69b332\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3562,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.971,\"z\":0.0168}},\"6a0e2b\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3516,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":269.9697,\"z\":0.0168}},\"6e4969\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3437,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":270.0311,\"z\":0.0168}},\"6e98b8\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3543,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":269.968,\"z\":0.0168}},\"762a22\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3476,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":270.0125,\"z\":0.0168}},\"8017d9\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3575,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":269.9707,\"z\":0.0168}},\"8070ac\":{\"lock\":false,\"pos\":{\"x\":7.0158,\"y\":1.3512,\"z\":92.4487},\"rot\":{\"x\":0.0208,\"y\":269.9703,\"z\":0.0168}},\"833348\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3496,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":269.9677,\"z\":0.0168}},\"862255\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3509,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.9697,\"z\":0.0168}},\"8e8a14\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3462,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":270.0016,\"z\":0.0168}},\"90b11b\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3518,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"964dee\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3484,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":270.0308,\"z\":0.0168}},\"a5a6cd\":{\"lock\":false,\"pos\":{\"x\":10.5688,\"y\":1.3417,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":270.0059,\"z\":0.0168}},\"aa03c1\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3523,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":269.9681,\"z\":0.0168}},\"b146d4\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.355,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":269.9697,\"z\":0.0168}},\"b2c2a3\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3498,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"b38243\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.353,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9694,\"z\":0.0168}},\"b535b5\":{\"lock\":false,\"pos\":{\"x\":19.284,\"y\":1.3449,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":269.9674,\"z\":0.0168}},\"bde120\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3489,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":269.968,\"z\":0.0168}},\"cf397c\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3491,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":270.0308,\"z\":0.0168}},\"cfd68d\":{\"lock\":false,\"pos\":{\"x\":10.5531,\"y\":1.3404,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":270.006,\"z\":0.0168}},\"d5f8d1\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3555,\"z\":85.4904},\"rot\":{\"x\":0.0208,\"y\":269.9708,\"z\":0.0168}},\"de820a\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3505,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":270.0308,\"z\":0.0168}},\"e90b04\":{\"lock\":false,\"pos\":{\"x\":10.5529,\"y\":1.3397,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":269.8976,\"z\":0.0167}},\"ed310c\":{\"lock\":false,\"pos\":{\"x\":10.5709,\"y\":1.3424,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":270.006,\"z\":0.0168}},\"ef36a1\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3431,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":270.031,\"z\":0.0168}},\"f4034c\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.341,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":270.0058,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -711197,6 +752938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711212,12 +752955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8017d9" }, { @@ -711245,6 +752989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711260,12 +753006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a9214" }, { @@ -711293,6 +753040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711308,12 +753057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69b332" }, { @@ -711341,6 +753091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711356,12 +753108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5f8d1" }, { @@ -711389,6 +753142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711404,12 +753159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "322e0e" }, { @@ -711437,6 +753193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711452,12 +753210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b38243" }, { @@ -711485,6 +753244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711500,12 +753261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "565cb2" }, { @@ -711533,6 +753295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711548,12 +753312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e98b8" }, { @@ -711581,6 +753346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711596,12 +753363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b146d4" }, { @@ -711629,6 +753397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711644,12 +753414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "303af5" }, { @@ -711677,6 +753448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711692,12 +753465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa03c1" }, { @@ -711725,6 +753499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711740,12 +753516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a0e2b" }, { @@ -711773,6 +753550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711788,12 +753567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "862255" }, { @@ -711821,6 +753601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711836,12 +753618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65e124" }, { @@ -711869,6 +753652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711884,12 +753669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "833348" }, { @@ -711917,6 +753703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711932,12 +753720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bde120" }, { @@ -711965,6 +753754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -711980,12 +753771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0daceb" }, { @@ -712013,6 +753805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712028,12 +753822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "762a22" }, { @@ -712061,6 +753856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712076,12 +753873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e0818" }, { @@ -712109,6 +753907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712124,12 +753924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8a14" }, { @@ -712157,6 +753958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712172,12 +753975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cedc1" }, { @@ -712205,6 +754009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712220,12 +754026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b535b5" }, { @@ -712253,6 +754060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712268,12 +754077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05f644" }, { @@ -712301,6 +754111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712316,12 +754128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90b04" }, { @@ -712349,6 +754162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712364,12 +754179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfd68d" }, { @@ -712397,6 +754213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712412,12 +754230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4034c" }, { @@ -712445,6 +754264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712460,12 +754281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5a6cd" }, { @@ -712493,6 +754315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712508,12 +754332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed310c" }, { @@ -712541,6 +754366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712556,12 +754383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef36a1" }, { @@ -712589,6 +754417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712604,12 +754434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e4969" }, { @@ -712637,6 +754468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712652,12 +754485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20174f" }, { @@ -712685,6 +754519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712700,12 +754536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58a92e" }, { @@ -712733,6 +754570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712748,12 +754587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c31e0" }, { @@ -712781,6 +754621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712796,12 +754638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4132e5" }, { @@ -712829,6 +754672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712844,12 +754689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "294b5d" }, { @@ -712877,6 +754723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712892,12 +754740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53cb9f" }, { @@ -712925,6 +754774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712940,12 +754791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "964dee" }, { @@ -712973,6 +754825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -712988,12 +754842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf397c" }, { @@ -713021,6 +754876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713036,12 +754893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2c2a3" }, { @@ -713069,6 +754927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713084,12 +754944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de820a" }, { @@ -713117,6 +754978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713132,12 +754995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c4ca3" }, { @@ -713165,6 +755029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713180,12 +755046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90b11b" }, { @@ -713213,6 +755080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713228,12 +755097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c9ce3" }, { @@ -713261,6 +755131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713276,12 +755148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8070ac" }, { @@ -713309,6 +755182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713324,12 +755199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a569b" }, { @@ -713357,6 +755233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713372,12 +755250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46cc4f" }, { @@ -713405,6 +755284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713420,12 +755301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "590c4a" } ], @@ -713459,6 +755341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713487,9 +755371,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0afb00\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3451,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"0ca8d1\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3464,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9705,\"z\":0.0168}},\"0d006f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3437,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":270.0034,\"z\":0.0168}},\"12b8b7\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3518,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}},\"136c96\":{\"lock\":false,\"pos\":{\"x\":24.4389,\"y\":1.3535,\"z\":78.5904},\"rot\":{\"x\":0.0208,\"y\":270.0155,\"z\":0.0168}},\"19cbde\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3482,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":270.0178,\"z\":0.0168}},\"2aae05\":{\"lock\":false,\"pos\":{\"x\":19.2842,\"y\":1.3442,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":270.0306,\"z\":0.0168}},\"2c0b96\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.341,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":270.0322,\"z\":0.0168}},\"3175d1\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3556,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":269.9896,\"z\":0.0168}},\"38a54e\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3503,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":270.0068,\"z\":0.0168}},\"40bda1\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3528,\"z\":76.2904},\"rot\":{\"x\":0.0208,\"y\":270.0189,\"z\":0.0168}},\"46004e\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3511,\"z\":87.8607},\"rot\":{\"x\":0.0208,\"y\":270.0058,\"z\":0.0168}},\"472111\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3505,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"4c1be0\":{\"lock\":false,\"pos\":{\"x\":24.439,\"y\":1.3548,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":270.0324,\"z\":0.0168}},\"517c94\":{\"lock\":false,\"pos\":{\"x\":10.5531,\"y\":1.3404,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":270.0226,\"z\":0.0168}},\"523fe8\":{\"lock\":false,\"pos\":{\"x\":10.5688,\"y\":1.3417,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9744,\"z\":0.0168}},\"555487\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.353,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9686,\"z\":0.0168}},\"55e600\":{\"lock\":false,\"pos\":{\"x\":15.6184,\"y\":1.3543,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":270.0128,\"z\":0.0168}},\"56a25e\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3541,\"z\":80.8903},\"rot\":{\"x\":0.0208,\"y\":269.9706,\"z\":0.0168}},\"674d49\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3469,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":270.03,\"z\":0.0168}},\"6788de\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3509,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.9727,\"z\":0.0168}},\"6d59df\":{\"lock\":false,\"pos\":{\"x\":24.4537,\"y\":1.3555,\"z\":85.486},\"rot\":{\"x\":0.0208,\"y\":270.0567,\"z\":0.0168}},\"793bdd\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3471,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":270.0381,\"z\":0.0168}},\"7fab09\":{\"lock\":false,\"pos\":{\"x\":19.2861,\"y\":1.3455,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":270.002,\"z\":0.0168}},\"81356a\":{\"lock\":false,\"pos\":{\"x\":10.5688,\"y\":1.3484,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9942,\"z\":0.0168}},\"834f1e\":{\"lock\":false,\"pos\":{\"x\":24.4425,\"y\":1.3575,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":270.015,\"z\":0.0168}},\"841cab\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3491,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9546,\"z\":0.0168}},\"8e580d\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3478,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9876,\"z\":0.0168}},\"966de3\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3516,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":270.007,\"z\":0.0168}},\"99b1a1\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3496,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":270.0148,\"z\":0.0168}},\"9f8d38\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3476,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":270.0167,\"z\":0.0168}},\"a0d009\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3562,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.9702,\"z\":0.0168}},\"a2af93\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3568,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9705,\"z\":0.0168}},\"a521bd\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3462,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":270.0198,\"z\":0.0168}},\"a72cbd\":{\"lock\":false,\"pos\":{\"x\":19.2682,\"y\":1.3428,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":269.9989,\"z\":0.0168}},\"ab0560\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3431,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":270.0364,\"z\":0.0168}},\"acf7e4\":{\"lock\":false,\"pos\":{\"x\":10.5529,\"y\":1.3397,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":270.0396,\"z\":0.0168}},\"c3c909\":{\"lock\":false,\"pos\":{\"x\":19.284,\"y\":1.3449,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":270.002,\"z\":0.0168}},\"c6dba2\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3543,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":270.0081,\"z\":0.0168}},\"d952b1\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3489,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":270.0121,\"z\":0.0168}},\"da6dff\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3536,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":270.0021,\"z\":0.0168}},\"dcad6a\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3444,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":270.0347,\"z\":0.0168}},\"e10ba4\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3498,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":270.0216,\"z\":0.0168}},\"e40ae9\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.355,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":270.0449,\"z\":0.0168}},\"ead372\":{\"lock\":false,\"pos\":{\"x\":10.5709,\"y\":1.3424,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":270.0255,\"z\":0.0168}},\"ec0259\":{\"lock\":false,\"pos\":{\"x\":19.2683,\"y\":1.3435,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":269.9965,\"z\":0.0168}},\"f21109\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3523,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":270.0033,\"z\":0.0168}},\"fd5a67\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3458,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9847,\"z\":0.0168}},\"fe7cba\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3525,\"z\":92.4609},\"rot\":{\"x\":0.0208,\"y\":269.9773,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -713516,6 +755400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713531,12 +755417,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "834f1e" }, { @@ -713564,6 +755451,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713579,12 +755468,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3175d1" }, { @@ -713612,6 +755502,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713627,12 +755519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55e600" }, { @@ -713660,6 +755553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713675,12 +755570,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe7cba" }, { @@ -713708,6 +755604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713723,12 +755621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12b8b7" }, { @@ -713756,6 +755655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713771,12 +755672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46004e" }, { @@ -713804,6 +755706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713819,12 +755723,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "472111" }, { @@ -713852,6 +755757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713867,12 +755774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e10ba4" }, { @@ -713900,6 +755808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713915,12 +755825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "841cab" }, { @@ -713948,6 +755859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -713963,12 +755876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81356a" }, { @@ -713996,6 +755910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714011,12 +755927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e580d" }, { @@ -714044,6 +755961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714059,12 +755978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "793bdd" }, { @@ -714092,6 +756012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714107,12 +756029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ca8d1" }, { @@ -714140,6 +756063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714155,12 +756080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd5a67" }, { @@ -714188,6 +756114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714203,12 +756131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afb00" }, { @@ -714236,6 +756165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714251,12 +756182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcad6a" }, { @@ -714284,6 +756216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714299,12 +756233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d006f" }, { @@ -714332,6 +756267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714347,12 +756284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "674d49" }, { @@ -714380,6 +756318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714395,12 +756335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f8d38" }, { @@ -714428,6 +756369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714443,12 +756386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19cbde" }, { @@ -714476,6 +756420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714491,12 +756437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d952b1" }, { @@ -714524,6 +756471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714539,12 +756488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99b1a1" }, { @@ -714572,6 +756522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714587,12 +756539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38a54e" }, { @@ -714620,6 +756573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714635,12 +756590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6788de" }, { @@ -714668,6 +756624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714683,12 +756641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "966de3" }, { @@ -714716,6 +756675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714731,12 +756692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f21109" }, { @@ -714764,6 +756726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714779,12 +756743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "555487" }, { @@ -714812,6 +756777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714827,12 +756794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da6dff" }, { @@ -714860,6 +756828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714875,12 +756845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6dba2" }, { @@ -714908,6 +756879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714923,12 +756896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e40ae9" }, { @@ -714956,6 +756930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -714971,12 +756947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2af93" }, { @@ -715004,6 +756981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715019,12 +756998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d009" }, { @@ -715052,6 +757032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715067,12 +757049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d59df" }, { @@ -715100,6 +757083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715115,12 +757100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c1be0" }, { @@ -715148,6 +757134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715163,12 +757151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56a25e" }, { @@ -715196,6 +757185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715211,12 +757202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40bda1" }, { @@ -715244,6 +757236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715259,12 +757253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "136c96" }, { @@ -715292,6 +757287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715307,12 +757304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a521bd" }, { @@ -715340,6 +757338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715355,12 +757355,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fab09" }, { @@ -715388,6 +757389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715403,12 +757406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3c909" }, { @@ -715436,6 +757440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715451,12 +757457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2aae05" }, { @@ -715484,6 +757491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715499,12 +757508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec0259" }, { @@ -715532,6 +757542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715547,12 +757559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a72cbd" }, { @@ -715580,6 +757593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715595,12 +757610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acf7e4" }, { @@ -715628,6 +757644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715643,12 +757661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "517c94" }, { @@ -715676,6 +757695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715691,12 +757712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c0b96" }, { @@ -715724,6 +757746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715739,12 +757763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "523fe8" }, { @@ -715772,6 +757797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715787,12 +757814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ead372" }, { @@ -715820,6 +757848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715835,12 +757865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab0560" }, { @@ -715868,6 +757899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715896,9 +757929,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0afb00\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3451,\"z\":67.1607},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"0ca8d1\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3464,\"z\":71.7607},\"rot\":{\"x\":0.0208,\"y\":269.9705,\"z\":0.0168}},\"0d006f\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3437,\"z\":62.5608},\"rot\":{\"x\":0.0208,\"y\":270.0034,\"z\":0.0168}},\"12b8b7\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3518,\"z\":90.1608},\"rot\":{\"x\":0.0208,\"y\":269.9882,\"z\":0.0168}},\"136c96\":{\"lock\":false,\"pos\":{\"x\":24.4389,\"y\":1.3535,\"z\":78.5904},\"rot\":{\"x\":0.0208,\"y\":270.0155,\"z\":0.0168}},\"19cbde\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3482,\"z\":67.1411},\"rot\":{\"x\":0.0208,\"y\":270.0178,\"z\":0.0168}},\"2aae05\":{\"lock\":false,\"pos\":{\"x\":19.2842,\"y\":1.3442,\"z\":53.3412},\"rot\":{\"x\":0.0208,\"y\":270.0306,\"z\":0.0168}},\"2c0b96\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.341,\"z\":53.3608},\"rot\":{\"x\":0.0208,\"y\":270.0322,\"z\":0.0168}},\"3175d1\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3556,\"z\":92.4412},\"rot\":{\"x\":0.0208,\"y\":269.9896,\"z\":0.0168}},\"38a54e\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3503,\"z\":74.0412},\"rot\":{\"x\":0.0208,\"y\":270.0068,\"z\":0.0168}},\"40bda1\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3528,\"z\":76.2904},\"rot\":{\"x\":0.0208,\"y\":270.0189,\"z\":0.0168}},\"46004e\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3511,\"z\":87.8607},\"rot\":{\"x\":0.0208,\"y\":270.0058,\"z\":0.0168}},\"472111\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3505,\"z\":85.5608},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"4c1be0\":{\"lock\":false,\"pos\":{\"x\":24.439,\"y\":1.3548,\"z\":83.1904},\"rot\":{\"x\":0.0208,\"y\":270.0324,\"z\":0.0168}},\"517c94\":{\"lock\":false,\"pos\":{\"x\":10.5531,\"y\":1.3404,\"z\":51.0713},\"rot\":{\"x\":0.0208,\"y\":270.0226,\"z\":0.0168}},\"523fe8\":{\"lock\":false,\"pos\":{\"x\":10.5688,\"y\":1.3417,\"z\":55.6608},\"rot\":{\"x\":0.0208,\"y\":269.9744,\"z\":0.0168}},\"555487\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.353,\"z\":83.2412},\"rot\":{\"x\":0.0208,\"y\":269.9686,\"z\":0.0168}},\"55e600\":{\"lock\":false,\"pos\":{\"x\":15.6184,\"y\":1.3543,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":270.0128,\"z\":0.0168}},\"56a25e\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3541,\"z\":80.8903},\"rot\":{\"x\":0.0208,\"y\":269.9706,\"z\":0.0168}},\"674d49\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3469,\"z\":62.5412},\"rot\":{\"x\":0.0208,\"y\":270.03,\"z\":0.0168}},\"6788de\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3509,\"z\":76.3412},\"rot\":{\"x\":0.0208,\"y\":269.9727,\"z\":0.0168}},\"6d59df\":{\"lock\":false,\"pos\":{\"x\":24.4537,\"y\":1.3555,\"z\":85.486},\"rot\":{\"x\":0.0208,\"y\":270.0567,\"z\":0.0168}},\"793bdd\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3471,\"z\":74.0607},\"rot\":{\"x\":0.0208,\"y\":270.0381,\"z\":0.0168}},\"7fab09\":{\"lock\":false,\"pos\":{\"x\":19.2861,\"y\":1.3455,\"z\":57.941},\"rot\":{\"x\":0.0208,\"y\":270.002,\"z\":0.0168}},\"81356a\":{\"lock\":false,\"pos\":{\"x\":10.5688,\"y\":1.3484,\"z\":78.6607},\"rot\":{\"x\":0.0208,\"y\":269.9942,\"z\":0.0168}},\"834f1e\":{\"lock\":false,\"pos\":{\"x\":24.4425,\"y\":1.3575,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":270.015,\"z\":0.0168}},\"841cab\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3491,\"z\":80.9607},\"rot\":{\"x\":0.0208,\"y\":269.9546,\"z\":0.0168}},\"8e580d\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3478,\"z\":76.3607},\"rot\":{\"x\":0.0208,\"y\":269.9876,\"z\":0.0168}},\"966de3\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3516,\"z\":78.6412},\"rot\":{\"x\":0.0208,\"y\":270.007,\"z\":0.0168}},\"99b1a1\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3496,\"z\":71.7412},\"rot\":{\"x\":0.0208,\"y\":270.0148,\"z\":0.0168}},\"9f8d38\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3476,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":270.0167,\"z\":0.0168}},\"a0d009\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3562,\"z\":87.7904},\"rot\":{\"x\":0.0208,\"y\":269.9702,\"z\":0.0168}},\"a2af93\":{\"lock\":false,\"pos\":{\"x\":24.4394,\"y\":1.3568,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9705,\"z\":0.0168}},\"a521bd\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3462,\"z\":60.2412},\"rot\":{\"x\":0.0208,\"y\":270.0198,\"z\":0.0168}},\"a72cbd\":{\"lock\":false,\"pos\":{\"x\":19.2682,\"y\":1.3428,\"z\":48.7453},\"rot\":{\"x\":0.0208,\"y\":269.9989,\"z\":0.0168}},\"ab0560\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3431,\"z\":60.2608},\"rot\":{\"x\":0.0208,\"y\":270.0364,\"z\":0.0168}},\"acf7e4\":{\"lock\":false,\"pos\":{\"x\":10.5529,\"y\":1.3397,\"z\":48.764},\"rot\":{\"x\":0.0208,\"y\":270.0396,\"z\":0.0168}},\"c3c909\":{\"lock\":false,\"pos\":{\"x\":19.284,\"y\":1.3449,\"z\":55.6412},\"rot\":{\"x\":0.0208,\"y\":270.002,\"z\":0.0168}},\"c6dba2\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3543,\"z\":87.8412},\"rot\":{\"x\":0.0208,\"y\":270.0081,\"z\":0.0168}},\"d952b1\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3489,\"z\":69.4412},\"rot\":{\"x\":0.0208,\"y\":270.0121,\"z\":0.0168}},\"da6dff\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3536,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":270.0021,\"z\":0.0168}},\"dcad6a\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3444,\"z\":64.8607},\"rot\":{\"x\":0.0208,\"y\":270.0347,\"z\":0.0168}},\"e10ba4\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3498,\"z\":83.2607},\"rot\":{\"x\":0.0208,\"y\":270.0216,\"z\":0.0168}},\"e40ae9\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.355,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":270.0449,\"z\":0.0168}},\"ead372\":{\"lock\":false,\"pos\":{\"x\":10.5709,\"y\":1.3424,\"z\":57.9606},\"rot\":{\"x\":0.0208,\"y\":270.0255,\"z\":0.0168}},\"ec0259\":{\"lock\":false,\"pos\":{\"x\":19.2683,\"y\":1.3435,\"z\":51.0517},\"rot\":{\"x\":0.0208,\"y\":269.9965,\"z\":0.0168}},\"f21109\":{\"lock\":false,\"pos\":{\"x\":19.2841,\"y\":1.3523,\"z\":80.9412},\"rot\":{\"x\":0.0208,\"y\":270.0033,\"z\":0.0168}},\"fd5a67\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3458,\"z\":69.4607},\"rot\":{\"x\":0.0208,\"y\":269.9847,\"z\":0.0168}},\"fe7cba\":{\"lock\":false,\"pos\":{\"x\":10.5689,\"y\":1.3525,\"z\":92.4609},\"rot\":{\"x\":0.0208,\"y\":269.9773,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -715925,6 +757958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715940,12 +757975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "834f1e" }, { @@ -715973,6 +758009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -715988,12 +758026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3175d1" }, { @@ -716021,6 +758060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716036,12 +758077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55e600" }, { @@ -716069,6 +758111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716084,12 +758128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe7cba" }, { @@ -716117,6 +758162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716132,12 +758179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12b8b7" }, { @@ -716165,6 +758213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716180,12 +758230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46004e" }, { @@ -716213,6 +758264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716228,12 +758281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "472111" }, { @@ -716261,6 +758315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716276,12 +758332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e10ba4" }, { @@ -716309,6 +758366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716324,12 +758383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "841cab" }, { @@ -716357,6 +758417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716372,12 +758434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81356a" }, { @@ -716405,6 +758468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716420,12 +758485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e580d" }, { @@ -716453,6 +758519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716468,12 +758536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "793bdd" }, { @@ -716501,6 +758570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716516,12 +758587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ca8d1" }, { @@ -716549,6 +758621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716564,12 +758638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd5a67" }, { @@ -716597,6 +758672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716612,12 +758689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afb00" }, { @@ -716645,6 +758723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716660,12 +758740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcad6a" }, { @@ -716693,6 +758774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716708,12 +758791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d006f" }, { @@ -716741,6 +758825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716756,12 +758842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "674d49" }, { @@ -716789,6 +758876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716804,12 +758893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f8d38" }, { @@ -716837,6 +758927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716852,12 +758944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19cbde" }, { @@ -716885,6 +758978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716900,12 +758995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d952b1" }, { @@ -716933,6 +759029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716948,12 +759046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99b1a1" }, { @@ -716981,6 +759080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -716996,12 +759097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38a54e" }, { @@ -717029,6 +759131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717044,12 +759148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6788de" }, { @@ -717077,6 +759182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717092,12 +759199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "966de3" }, { @@ -717125,6 +759233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717140,12 +759250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f21109" }, { @@ -717173,6 +759284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717188,12 +759301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "555487" }, { @@ -717221,6 +759335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717236,12 +759352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da6dff" }, { @@ -717269,6 +759386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717284,12 +759403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6dba2" }, { @@ -717317,6 +759437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717332,12 +759454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e40ae9" }, { @@ -717365,6 +759488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717380,12 +759505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2af93" }, { @@ -717413,6 +759539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717428,12 +759556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d009" }, { @@ -717461,6 +759590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717476,12 +759607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d59df" }, { @@ -717509,6 +759641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717524,12 +759658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c1be0" }, { @@ -717557,6 +759692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717572,12 +759709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56a25e" }, { @@ -717605,6 +759743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717620,12 +759760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40bda1" }, { @@ -717653,6 +759794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717668,12 +759811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "136c96" }, { @@ -717701,6 +759845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717716,12 +759862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a521bd" }, { @@ -717749,6 +759896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717764,12 +759913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fab09" }, { @@ -717797,6 +759947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717812,12 +759964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3c909" }, { @@ -717845,6 +759998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717860,12 +760015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2aae05" }, { @@ -717893,6 +760049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717908,12 +760066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec0259" }, { @@ -717941,6 +760100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -717956,12 +760117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a72cbd" }, { @@ -717989,6 +760151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718004,12 +760168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acf7e4" }, { @@ -718037,6 +760202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718052,12 +760219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "517c94" }, { @@ -718085,6 +760253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718100,12 +760270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c0b96" }, { @@ -718133,6 +760304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718148,12 +760321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "523fe8" }, { @@ -718181,6 +760355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718196,12 +760372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ead372" }, { @@ -718229,6 +760406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718244,12 +760423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab0560" } ], @@ -718284,6 +760464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718294,9 +760476,9 @@ "FogHidePointers": false, "FogReverseHiding": false, "FogSeethrough": true, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3aab97" }, { @@ -718324,6 +760506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -718338,12 +760522,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0.1},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "aa9093" }, { @@ -718371,6 +760556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -718385,12 +760572,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0.1},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "326ec4" }, { @@ -718418,6 +760606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -718432,12 +760622,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0.1},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "1d8875" }, { @@ -718465,6 +760656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": false, @@ -718479,12 +760672,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = true\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0,0,0,100}\r\n\n if light_mode then\r\n f_color = {1,1,1,100}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0.1},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={1,1,1,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "25103c" }, { @@ -718493,9 +760687,9 @@ "posX": 29.9965954, "posY": 3.04989862, "posZ": -26.97731, - "rotX": 0.07006504, - "rotY": 135.000076, - "rotZ": 0.0459762141, + "rotX": 0.07006066, + "rotY": 135.000061, + "rotZ": 0.04597473, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 @@ -718512,6 +760706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718540,19 +760736,19 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 31.0456715, - "posY": 7.462951, - "posZ": -28.0138035, - "rotX": 0.01676613, - "rotY": 90.00008, - "rotZ": -0.00353991683, + "posX": 31.033, + "posY": 7.46282625, + "posZ": -28.6237316, + "rotX": 0.0167662669, + "rotY": 89.99996, + "rotZ": -0.003540907, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 @@ -718569,6 +760765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718587,154 +760785,10 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ - { - "Name": "CardCustom", - "Transform": { - "posX": 4.98759747, - "posY": 2.04152846, - "posZ": -40.505806, - "rotX": 359.920135, - "rotY": 269.999969, - "rotZ": 0.01687492, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "One-Two Punch (5)", - "Description": "Gambit. Tactic.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 266300, - "SidewaysCard": false, - "CustomDeck": { - "2663": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1017195830498776874/EEFDA6756209075F5EB2E7E556172B63A5C408BB/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg", - "NumWidth": 1, - "NumHeight": 1, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "77c60e" - }, - { - "Name": "CardCustom", - "Transform": { - "posX": 4.56742334, - "posY": 2.0415287, - "posZ": -40.1383934, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.0168769825, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Miskatonic Archaeology Funding (4)", - "Description": "Grant.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 266200, - "SidewaysCard": false, - "CustomDeck": { - "2662": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1017195830498776401/CE56F0F0FE3604F9D02F07EA3626615F48D021E5/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg", - "NumWidth": 1, - "NumHeight": 1, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9c4900" - }, - { - "Name": "CardCustom", - "Transform": { - "posX": 4.441242, - "posY": 2.04189181, - "posZ": -39.0897064, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.0168767516, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whitton Greene", - "Description": "Hunter of Rare Books", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 266400, - "SidewaysCard": false, - "CustomDeck": { - "2664": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1017195830498777535/1937407D54C82745A53150E9907CE7DDB55BA97E/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg", - "NumWidth": 1, - "NumHeight": 1, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e8aded" - }, { "Name": "Card", "Transform": { @@ -718760,6 +760814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718775,12 +760831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "682e84" }, { @@ -718808,6 +760865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718823,12 +760882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4e44a" }, { @@ -718856,6 +760916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718871,12 +760933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e173d0" }, { @@ -718904,6 +760967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718919,12 +760984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c490a4" }, { @@ -718952,6 +761018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -718967,12 +761035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a177db" }, { @@ -719000,6 +761069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719015,12 +761086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c25fa" }, { @@ -719048,6 +761120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719063,12 +761137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f8a0a" }, { @@ -719096,6 +761171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719111,12 +761188,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4c4b1" }, { @@ -719144,6 +761222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719159,12 +761239,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "648590" }, { @@ -719192,6 +761273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719207,12 +761290,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "396e1c" }, { @@ -719240,6 +761324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719255,12 +761341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da25d8" }, { @@ -719288,6 +761375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719303,12 +761392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ff44f" }, { @@ -719336,6 +761426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719351,12 +761443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dac4f8" }, { @@ -719384,6 +761477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719399,12 +761494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "098da7" }, { @@ -719432,6 +761528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719447,12 +761545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "085581" }, { @@ -719480,6 +761579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719495,12 +761596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6fdb0" }, { @@ -719528,6 +761630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719543,12 +761647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb4730" }, { @@ -719576,6 +761681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719591,12 +761698,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "705e27" }, { @@ -719624,6 +761732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719639,12 +761749,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e915d" }, { @@ -719672,6 +761783,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719687,12 +761800,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "380c3c" }, { @@ -719720,6 +761834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719735,12 +761851,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eaafcf" }, { @@ -719768,6 +761885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719783,12 +761902,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eac7ac" }, { @@ -719816,6 +761936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719831,12 +761953,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "731411" }, { @@ -719864,6 +761987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719879,12 +762004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c021fd" }, { @@ -719912,6 +762038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719927,12 +762055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ec2d2" }, { @@ -719960,6 +762089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -719975,12 +762106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99765a" }, { @@ -720008,6 +762140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720023,12 +762157,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5aa89" }, { @@ -720056,6 +762191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720071,12 +762208,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c5d4c" }, { @@ -720104,6 +762242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720119,23 +762259,24 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e55fe0" }, { "Name": "Bag", "Transform": { - "posX": 14.3890715, - "posY": 3.332189, - "posZ": -31.4394951, - "rotX": 359.985748, - "rotY": 0.0006310445, - "rotZ": 359.932556, + "posX": 32.4517746, + "posY": 3.32184935, + "posZ": -13.1231518, + "rotX": 359.955963, + "rotY": 0.000214083615, + "rotZ": 359.940216, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 @@ -720152,6 +762293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720160,9 +762303,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -720189,6 +762332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720197,9 +762342,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -720226,6 +762371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720241,12 +762388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a95b8c" }, { @@ -720274,6 +762422,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720289,12 +762439,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b0bee" } ], @@ -720325,6 +762476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720333,9 +762486,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -720362,6 +762515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720377,12 +762532,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f7566" }, { @@ -720410,6 +762566,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720425,12 +762583,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55e98a" } ], @@ -720461,6 +762620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720469,9 +762630,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -720498,6 +762659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720513,12 +762676,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23a3ed" }, { @@ -720546,6 +762710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720561,12 +762727,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "485e4c" }, { @@ -720594,6 +762761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720609,12 +762778,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8dcf" }, { @@ -720642,6 +762812,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720657,12 +762829,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15105c" } ], @@ -720671,12 +762844,12 @@ { "Name": "Bag", "Transform": { - "posX": 10.9630346, - "posY": 3.35885429, - "posZ": -32.72449, - "rotX": 359.993958, - "rotY": 0.000101820806, - "rotZ": 359.9714, + "posX": 16.1766243, + "posY": 3.34965849, + "posZ": -15.4173517, + "rotX": 0.677697, + "rotY": 359.976685, + "rotZ": 0.284093946, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 @@ -720693,6 +762866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720701,9 +762876,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -720730,6 +762905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720745,12 +762922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41f205" }, { @@ -720778,6 +762956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720793,12 +762973,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8070c3" }, { @@ -720826,6 +763007,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720841,12 +763024,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "777a2e" } ], @@ -720855,12 +763039,12 @@ { "Name": "Bag", "Transform": { - "posX": 11.3143978, - "posY": 3.35339117, - "posZ": -31.4699421, - "rotX": -0.00368092163, - "rotY": -5.31041223E-06, - "rotZ": 359.982574, + "posX": 16.3274841, + "posY": 3.34977245, + "posZ": -15.3665295, + "rotX": 0.725681, + "rotY": 359.989258, + "rotZ": 0.0220145173, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 @@ -720870,13 +763054,15 @@ "GMNotes": "", "ColorDiffuse": { "r": 0.0, - "g": 0.107806318, + "g": 0.107806347, "b": 1.0 }, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720885,58 +763071,10 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ - { - "Name": "CardCustom", - "Transform": { - "posX": 19.9207344, - "posY": 1.82524359, - "posZ": -47.6898, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.0168774929, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Randall Cho", - "Description": "Concerned Brother", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 266500, - "SidewaysCard": false, - "CustomDeck": { - "2665": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1017195830498778203/47F09895EF12E7D6F8CDDE5DC5965D41464B394C/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg", - "NumWidth": 1, - "NumHeight": 1, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d5f910" - }, { "Name": "Card", "Transform": { @@ -720962,6 +763100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -720977,12 +763117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "150b36" }, { @@ -721010,6 +763151,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721025,12 +763168,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6506d9" } ], @@ -721058,12 +763202,12 @@ { "Name": "Bag", "Transform": { - "posX": 29.9922161, - "posY": 7.298644, - "posZ": -28.7221, - "rotX": 359.985168, - "rotY": 0.003668153, - "rotZ": 359.92865, + "posX": 29.0826912, + "posY": 7.288757, + "posZ": -28.75306, + "rotX": 0.0017225669, + "rotY": 0.00877079647, + "rotZ": 359.977844, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 @@ -721072,14 +763216,16 @@ "Description": "", "GMNotes": "", "ColorDiffuse": { - "r": 0.268001646, - "g": 0.0453598276, - "b": 0.42682907 + "r": 0.268001676, + "g": 0.0453598574, + "b": 0.4268291 }, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721088,9 +763234,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -721117,6 +763263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721135,9 +763283,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2b7be" }, { @@ -721165,6 +763313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721183,9 +763333,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "678891" }, { @@ -721213,6 +763363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721228,12 +763380,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30d9ca" }, { @@ -721261,6 +763414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721276,12 +763431,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "39f9ef" }, { @@ -721309,6 +763465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721324,12 +763482,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59c726" }, { @@ -721357,6 +763516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721372,12 +763533,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fdda4" }, { @@ -721405,6 +763567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721420,12 +763584,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2b81b" }, { @@ -721453,6 +763618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721468,12 +763635,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d91dac" }, { @@ -721501,6 +763669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721516,23 +763686,24 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fffaa" }, { "Name": "Card", "Transform": { - "posX": 19.4926376, - "posY": 3.561109, - "posZ": -21.13392, - "rotX": 0.86908406, - "rotY": 180.041077, - "rotZ": 2.56462812, + "posX": 1.11344719, + "posY": 3.59472919, + "posZ": -24.5697079, + "rotX": 358.989044, + "rotY": 179.76059, + "rotZ": 2.24629259, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 @@ -721549,6 +763720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721564,12 +763737,13 @@ "NumWidth": 4, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3344d1" } ], @@ -721603,6 +763777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721631,9 +763807,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"006d44\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3624,\"z\":-49.7128},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"074858\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3628,\"z\":-63.5203},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"0db666\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.361,\"z\":-54.3129},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"0e0530\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.3543,\"z\":-77.3127},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"0ec9bf\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3596,\"z\":-63.5008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"117b7c\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3549,\"z\":-79.6006},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"15643b\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3569,\"z\":-72.7007},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"18927e\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3617,\"z\":-56.6008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1bd139\":{\"lock\":false,\"pos\":{\"x\":44.213,\"y\":1.3516,\"z\":-91.0974},\"rot\":{\"x\":0.0208,\"y\":270.0233,\"z\":0.0168}},\"1dbc95\":{\"lock\":false,\"pos\":{\"x\":44.3085,\"y\":1.3637,\"z\":-49.6927},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2423e7\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.361,\"z\":-58.9008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"26a3bf\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3597,\"z\":-58.9129},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"27446e\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3576,\"z\":-70.4007},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2aeb8a\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3563,\"z\":-75.0007},\"rot\":{\"x\":0.0208,\"y\":270.0226,\"z\":0.0168}},\"2cfa4f\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3641,\"z\":-58.9204},\"rot\":{\"x\":0.0208,\"y\":270.0009,\"z\":0.0168}},\"2f4db2\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3529,\"z\":-86.5006},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"2fba3b\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3556,\"z\":-77.3006},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2fe723\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3583,\"z\":-68.1007},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"30062e\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.3687,\"z\":-49.771},\"rot\":{\"x\":0.0208,\"y\":270.0227,\"z\":0.0168}},\"308be1\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3621,\"z\":-65.8202},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"3add54\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3608,\"z\":-70.4202},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"3e0653\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3662,\"z\":-52.0203},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"4eb231\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3614,\"z\":-68.1202},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"5f19e0\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3655,\"z\":-54.3203},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"5fe780\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3623,\"z\":-54.3008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"620b6e\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3648,\"z\":-56.6203},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"62d930\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3556,\"z\":-72.7127},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"63f145\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.3673,\"z\":-54.371},\"rot\":{\"x\":0.0208,\"y\":269.9934,\"z\":0.0168}},\"731d2a\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3643,\"z\":-47.4008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"7b918b\":{\"lock\":false,\"pos\":{\"x\":40.6483,\"y\":1.3604,\"z\":-56.6129},\"rot\":{\"x\":0.0208,\"y\":270.0103,\"z\":0.0168}},\"7d3a27\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.3667,\"z\":-56.671},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"8bec05\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3583,\"z\":-63.5129},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"9dd911\":{\"lock\":false,\"pos\":{\"x\":44.2289,\"y\":1.3536,\"z\":-84.2006},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"a6af13\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3577,\"z\":-65.8127},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b3cad4\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.368,\"z\":-52.071},\"rot\":{\"x\":0.0208,\"y\":270.0227,\"z\":0.0168}},\"b5e5f1\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.357,\"z\":-68.1127},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b81c84\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.359,\"z\":-61.2129},\"rot\":{\"x\":0.0208,\"y\":270.027,\"z\":0.0168}},\"cdbb37\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3675,\"z\":-47.4203},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"cdd6aa\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.363,\"z\":-52.0008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ce1b89\":{\"lock\":false,\"pos\":{\"x\":44.231,\"y\":1.3542,\"z\":-81.9009},\"rot\":{\"x\":0.0208,\"y\":270.0045,\"z\":0.0168}},\"d4dbc7\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3563,\"z\":-70.4127},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"d753d7\":{\"lock\":false,\"pos\":{\"x\":58.0988,\"y\":1.3694,\"z\":-47.4598},\"rot\":{\"x\":0.0208,\"y\":269.9947,\"z\":0.0168}},\"d7dbac\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3617,\"z\":-52.0128},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"e1c0f8\":{\"lock\":false,\"pos\":{\"x\":40.7066,\"y\":1.353,\"z\":-81.9126},\"rot\":{\"x\":0.0208,\"y\":270.0138,\"z\":0.0168}},\"e7f37b\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.355,\"z\":-75.0128},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"e80bd8\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.359,\"z\":-65.8007},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"eaa415\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3668,\"z\":-49.7203},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ecfa42\":{\"lock\":false,\"pos\":{\"x\":40.676,\"y\":1.3536,\"z\":-79.6126},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"edd6c4\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3603,\"z\":-61.2008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f2508d\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3635,\"z\":-61.2203},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"f57af7\":{\"lock\":false,\"pos\":{\"x\":44.2132,\"y\":1.3522,\"z\":-88.7901},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f8dc01\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3631,\"z\":-47.4129},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -721660,6 +763836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721675,12 +763853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d753d7" }, { @@ -721708,6 +763887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721723,12 +763904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30062e" }, { @@ -721756,6 +763938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721771,12 +763955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3cad4" }, { @@ -721804,6 +763989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721819,12 +764006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63f145" }, { @@ -721852,6 +764040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721867,12 +764057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d3a27" }, { @@ -721900,6 +764091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721915,12 +764108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdbb37" }, { @@ -721948,6 +764142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -721963,12 +764159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eaa415" }, { @@ -721996,6 +764193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722011,12 +764210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e0653" }, { @@ -722044,6 +764244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722059,12 +764261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f19e0" }, { @@ -722092,6 +764295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722107,12 +764312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "620b6e" }, { @@ -722140,6 +764346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722155,12 +764363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2cfa4f" }, { @@ -722188,6 +764397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722203,12 +764414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2508d" }, { @@ -722236,6 +764448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722251,12 +764465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "074858" }, { @@ -722284,6 +764499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722299,12 +764516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "308be1" }, { @@ -722332,6 +764550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722347,12 +764567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4eb231" }, { @@ -722380,6 +764601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722395,12 +764618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3add54" }, { @@ -722428,6 +764652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722443,12 +764669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "731d2a" }, { @@ -722476,6 +764703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722491,12 +764720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8dc01" }, { @@ -722524,6 +764754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722539,12 +764771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "006d44" }, { @@ -722572,6 +764805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722587,12 +764822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dbc95" }, { @@ -722620,6 +764856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722635,12 +764873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdd6aa" }, { @@ -722668,6 +764907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722683,12 +764924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7dbac" }, { @@ -722716,6 +764958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722731,12 +764975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0db666" }, { @@ -722764,6 +765009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722779,12 +765026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fe780" }, { @@ -722812,6 +765060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722827,12 +765077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18927e" }, { @@ -722860,6 +765111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722875,12 +765128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b918b" }, { @@ -722908,6 +765162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722923,12 +765179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26a3bf" }, { @@ -722956,6 +765213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -722971,12 +765230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2423e7" }, { @@ -723004,6 +765264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723019,12 +765281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edd6c4" }, { @@ -723052,6 +765315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723067,12 +765332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b81c84" }, { @@ -723100,6 +765366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723115,12 +765383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bec05" }, { @@ -723148,6 +765417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723163,12 +765434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ec9bf" }, { @@ -723196,6 +765468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723211,12 +765485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e80bd8" }, { @@ -723244,6 +765519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723259,12 +765536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6af13" }, { @@ -723292,6 +765570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723307,12 +765587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5e5f1" }, { @@ -723340,6 +765621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723355,12 +765638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fe723" }, { @@ -723388,6 +765672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723403,12 +765689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27446e" }, { @@ -723436,6 +765723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723451,12 +765740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4dbc7" }, { @@ -723484,6 +765774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723499,12 +765791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62d930" }, { @@ -723532,6 +765825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723547,12 +765842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15643b" }, { @@ -723580,6 +765876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723595,12 +765893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2aeb8a" }, { @@ -723628,6 +765927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723643,12 +765944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7f37b" }, { @@ -723676,6 +765978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723691,12 +765995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e0530" }, { @@ -723724,6 +766029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723739,12 +766046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fba3b" }, { @@ -723772,6 +766080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723787,12 +766097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "117b7c" }, { @@ -723820,6 +766131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723835,12 +766148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecfa42" }, { @@ -723868,6 +766182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723883,12 +766199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1c0f8" }, { @@ -723916,6 +766233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723931,12 +766250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce1b89" }, { @@ -723964,6 +766284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -723979,12 +766301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dd911" }, { @@ -724012,6 +766335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724027,12 +766352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f4db2" }, { @@ -724060,6 +766386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724075,12 +766403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f57af7" }, { @@ -724108,6 +766437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724123,12 +766454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1bd139" }, { @@ -724156,6 +766488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724184,9 +766518,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"006d44\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3624,\"z\":-49.7128},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"074858\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3628,\"z\":-63.5203},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"0db666\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.361,\"z\":-54.3129},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"0e0530\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.3543,\"z\":-77.3127},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"0ec9bf\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3596,\"z\":-63.5008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"117b7c\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3549,\"z\":-79.6006},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"15643b\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3569,\"z\":-72.7007},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"18927e\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3617,\"z\":-56.6008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1bd139\":{\"lock\":false,\"pos\":{\"x\":44.213,\"y\":1.3516,\"z\":-91.0974},\"rot\":{\"x\":0.0208,\"y\":270.0233,\"z\":0.0168}},\"1dbc95\":{\"lock\":false,\"pos\":{\"x\":44.3085,\"y\":1.3637,\"z\":-49.6927},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2423e7\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.361,\"z\":-58.9008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"26a3bf\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3597,\"z\":-58.9129},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"27446e\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3576,\"z\":-70.4007},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2aeb8a\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3563,\"z\":-75.0007},\"rot\":{\"x\":0.0208,\"y\":270.0226,\"z\":0.0168}},\"2cfa4f\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3641,\"z\":-58.9204},\"rot\":{\"x\":0.0208,\"y\":270.0009,\"z\":0.0168}},\"2f4db2\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3529,\"z\":-86.5006},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"2fba3b\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3556,\"z\":-77.3006},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2fe723\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3583,\"z\":-68.1007},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"30062e\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.3687,\"z\":-49.771},\"rot\":{\"x\":0.0208,\"y\":270.0227,\"z\":0.0168}},\"308be1\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3621,\"z\":-65.8202},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"3add54\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3608,\"z\":-70.4202},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"3e0653\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3662,\"z\":-52.0203},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"4eb231\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3614,\"z\":-68.1202},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"5f19e0\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3655,\"z\":-54.3203},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"5fe780\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3623,\"z\":-54.3008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"620b6e\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3648,\"z\":-56.6203},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"62d930\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3556,\"z\":-72.7127},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"63f145\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.3673,\"z\":-54.371},\"rot\":{\"x\":0.0208,\"y\":269.9934,\"z\":0.0168}},\"731d2a\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3643,\"z\":-47.4008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"7b918b\":{\"lock\":false,\"pos\":{\"x\":40.6483,\"y\":1.3604,\"z\":-56.6129},\"rot\":{\"x\":0.0208,\"y\":270.0103,\"z\":0.0168}},\"7d3a27\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.3667,\"z\":-56.671},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"8bec05\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3583,\"z\":-63.5129},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"9dd911\":{\"lock\":false,\"pos\":{\"x\":44.2289,\"y\":1.3536,\"z\":-84.2006},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"a6af13\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3577,\"z\":-65.8127},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b3cad4\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.368,\"z\":-52.071},\"rot\":{\"x\":0.0208,\"y\":270.0227,\"z\":0.0168}},\"b5e5f1\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.357,\"z\":-68.1127},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b81c84\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.359,\"z\":-61.2129},\"rot\":{\"x\":0.0208,\"y\":270.027,\"z\":0.0168}},\"cdbb37\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3675,\"z\":-47.4203},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"cdd6aa\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.363,\"z\":-52.0008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ce1b89\":{\"lock\":false,\"pos\":{\"x\":44.231,\"y\":1.3542,\"z\":-81.9009},\"rot\":{\"x\":0.0208,\"y\":270.0045,\"z\":0.0168}},\"d4dbc7\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3563,\"z\":-70.4127},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"d753d7\":{\"lock\":false,\"pos\":{\"x\":58.0988,\"y\":1.3694,\"z\":-47.4598},\"rot\":{\"x\":0.0208,\"y\":269.9947,\"z\":0.0168}},\"d7dbac\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3617,\"z\":-52.0128},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"e1c0f8\":{\"lock\":false,\"pos\":{\"x\":40.7066,\"y\":1.353,\"z\":-81.9126},\"rot\":{\"x\":0.0208,\"y\":270.0138,\"z\":0.0168}},\"e7f37b\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.355,\"z\":-75.0128},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"e80bd8\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.359,\"z\":-65.8007},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"eaa415\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3668,\"z\":-49.7203},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ecfa42\":{\"lock\":false,\"pos\":{\"x\":40.676,\"y\":1.3536,\"z\":-79.6126},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"edd6c4\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3603,\"z\":-61.2008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f2508d\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3635,\"z\":-61.2203},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"f57af7\":{\"lock\":false,\"pos\":{\"x\":44.2132,\"y\":1.3522,\"z\":-88.7901},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f8dc01\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3631,\"z\":-47.4129},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -724213,6 +766547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724228,12 +766564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d753d7" }, { @@ -724261,6 +766598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724276,12 +766615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30062e" }, { @@ -724309,6 +766649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724324,12 +766666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3cad4" }, { @@ -724357,6 +766700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724372,12 +766717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63f145" }, { @@ -724405,6 +766751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724420,12 +766768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d3a27" }, { @@ -724453,6 +766802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724468,12 +766819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdbb37" }, { @@ -724501,6 +766853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724516,12 +766870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eaa415" }, { @@ -724549,6 +766904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724564,12 +766921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e0653" }, { @@ -724597,6 +766955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724612,12 +766972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f19e0" }, { @@ -724645,6 +767006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724660,12 +767023,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "620b6e" }, { @@ -724693,6 +767057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724708,12 +767074,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2cfa4f" }, { @@ -724741,6 +767108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724756,12 +767125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f2508d" }, { @@ -724789,6 +767159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724804,12 +767176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "074858" }, { @@ -724837,6 +767210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724852,12 +767227,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "308be1" }, { @@ -724885,6 +767261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724900,12 +767278,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4eb231" }, { @@ -724933,6 +767312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724948,12 +767329,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3add54" }, { @@ -724981,6 +767363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -724996,12 +767380,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "731d2a" }, { @@ -725029,6 +767414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725044,12 +767431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8dc01" }, { @@ -725077,6 +767465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725092,12 +767482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "006d44" }, { @@ -725125,6 +767516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725140,12 +767533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dbc95" }, { @@ -725173,6 +767567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725188,12 +767584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdd6aa" }, { @@ -725221,6 +767618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725236,12 +767635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7dbac" }, { @@ -725269,6 +767669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725284,12 +767686,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0db666" }, { @@ -725317,6 +767720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725332,12 +767737,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fe780" }, { @@ -725365,6 +767771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725380,12 +767788,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18927e" }, { @@ -725413,6 +767822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725428,12 +767839,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b918b" }, { @@ -725461,6 +767873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725476,12 +767890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26a3bf" }, { @@ -725509,6 +767924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725524,12 +767941,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2423e7" }, { @@ -725557,6 +767975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725572,12 +767992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edd6c4" }, { @@ -725605,6 +768026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725620,12 +768043,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b81c84" }, { @@ -725653,6 +768077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725668,12 +768094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bec05" }, { @@ -725701,6 +768128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725716,12 +768145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ec9bf" }, { @@ -725749,6 +768179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725764,12 +768196,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e80bd8" }, { @@ -725797,6 +768230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725812,12 +768247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6af13" }, { @@ -725845,6 +768281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725860,12 +768298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5e5f1" }, { @@ -725893,6 +768332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725908,12 +768349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fe723" }, { @@ -725941,6 +768383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -725956,12 +768400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27446e" }, { @@ -725989,6 +768434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726004,12 +768451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4dbc7" }, { @@ -726037,6 +768485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726052,12 +768502,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62d930" }, { @@ -726085,6 +768536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726100,12 +768553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15643b" }, { @@ -726133,6 +768587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726148,12 +768604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2aeb8a" }, { @@ -726181,6 +768638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726196,12 +768655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7f37b" }, { @@ -726229,6 +768689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726244,12 +768706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e0530" }, { @@ -726277,6 +768740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726292,12 +768757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fba3b" }, { @@ -726325,6 +768791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726340,12 +768808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "117b7c" }, { @@ -726373,6 +768842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726388,12 +768859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecfa42" }, { @@ -726421,6 +768893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726436,12 +768910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1c0f8" }, { @@ -726469,6 +768944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726484,12 +768961,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce1b89" }, { @@ -726517,6 +768995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726532,12 +769012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dd911" }, { @@ -726565,6 +769046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726580,12 +769063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f4db2" }, { @@ -726613,6 +769097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726628,12 +769114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f57af7" }, { @@ -726661,6 +769148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726676,12 +769165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1bd139" } ], @@ -726715,6 +769205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726743,9 +769235,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"053015\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3617,\"z\":-52.0129},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"0919cf\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.361,\"z\":-54.3129},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"0e2b00\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.3556,\"z\":-72.7128},\"rot\":{\"x\":0.0208,\"y\":269.999,\"z\":0.0168}},\"0e8b75\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.361,\"z\":-58.9008},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"16154f\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3614,\"z\":-68.1214},\"rot\":{\"x\":0.0208,\"y\":270.0292,\"z\":0.0168}},\"17c6c8\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.359,\"z\":-61.2129},\"rot\":{\"x\":0.0208,\"y\":269.9821,\"z\":0.0168}},\"2403fa\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3655,\"z\":-54.3215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2b7765\":{\"lock\":false,\"pos\":{\"x\":44.213,\"y\":1.3516,\"z\":-91.0974},\"rot\":{\"x\":0.0208,\"y\":270.0111,\"z\":0.0168}},\"31051f\":{\"lock\":false,\"pos\":{\"x\":44.2289,\"y\":1.3563,\"z\":-75.0008},\"rot\":{\"x\":0.0208,\"y\":270.0312,\"z\":0.0168}},\"3c7e85\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3662,\"z\":-52.0215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"426c61\":{\"lock\":false,\"pos\":{\"x\":44.231,\"y\":1.3542,\"z\":-81.9009},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"443992\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3641,\"z\":-58.9215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"45e559\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3529,\"z\":-86.5007},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"4e86c1\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3549,\"z\":-79.6007},\"rot\":{\"x\":0.0208,\"y\":270.0188,\"z\":0.0168}},\"4fb7c0\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3621,\"z\":-65.8214},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"598837\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3631,\"z\":-47.4129},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"7da732\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3643,\"z\":-47.4008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"8272e9\":{\"lock\":false,\"pos\":{\"x\":40.6791,\"y\":1.353,\"z\":-81.9129},\"rot\":{\"x\":0.0208,\"y\":270.0167,\"z\":0.0168}},\"82d9bb\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3594,\"z\":-75.0215},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"86ed13\":{\"lock\":false,\"pos\":{\"x\":44.2289,\"y\":1.3536,\"z\":-84.2007},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"8c0e3b\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3624,\"z\":-49.7129},\"rot\":{\"x\":0.0208,\"y\":270.0018,\"z\":0.0168}},\"8f6cb3\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3608,\"z\":-70.4214},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"918fde\":{\"lock\":false,\"pos\":{\"x\":58.0998,\"y\":1.368,\"z\":-52.0722},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"9c0a3d\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3668,\"z\":-49.7215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"a1c372\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3617,\"z\":-56.6008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"a906ee\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3601,\"z\":-72.7215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b49ef1\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3569,\"z\":-72.7007},\"rot\":{\"x\":0.0208,\"y\":269.978,\"z\":0.0168}},\"b9b811\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3597,\"z\":-58.9129},\"rot\":{\"x\":0.0208,\"y\":269.9831,\"z\":0.0168}},\"b9dd5d\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.3543,\"z\":-77.3127},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"bb7d83\":{\"lock\":false,\"pos\":{\"x\":40.6791,\"y\":1.3523,\"z\":-84.2122},\"rot\":{\"x\":0.0208,\"y\":270.0334,\"z\":0.0168}},\"bb9d20\":{\"lock\":false,\"pos\":{\"x\":44.2132,\"y\":1.3522,\"z\":-88.7901},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"bdddfa\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3583,\"z\":-68.1007},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"becb9c\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.363,\"z\":-52.0008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"c2f6b1\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3637,\"z\":-49.7008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"c311be\":{\"lock\":false,\"pos\":{\"x\":58.0998,\"y\":1.3687,\"z\":-49.7722},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"c78082\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.355,\"z\":-75.0128},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"cb968f\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.359,\"z\":-65.8007},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"d26b84\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3588,\"z\":-77.3214},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"d4d8c4\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3576,\"z\":-70.4007},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"d74e66\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3603,\"z\":-61.2008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"e53458\":{\"lock\":false,\"pos\":{\"x\":58.0998,\"y\":1.3694,\"z\":-47.4722},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ea3df4\":{\"lock\":false,\"pos\":{\"x\":40.676,\"y\":1.3536,\"z\":-79.6126},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"ec3a71\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3628,\"z\":-63.5215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ef52e6\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3675,\"z\":-47.4215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ef7b23\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.357,\"z\":-68.1127},\"rot\":{\"x\":0.0208,\"y\":269.9971,\"z\":0.0168}},\"f1654d\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3583,\"z\":-63.5129},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f560b1\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3648,\"z\":-56.6215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f651e8\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3604,\"z\":-56.6129},\"rot\":{\"x\":0.0208,\"y\":270.0041,\"z\":0.0168}},\"f71c08\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.3563,\"z\":-70.4128},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f89dd6\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3596,\"z\":-63.5008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f9a151\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3623,\"z\":-54.3008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"fa4a56\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3635,\"z\":-61.2215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"fc4caf\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3581,\"z\":-79.6203},\"rot\":{\"x\":0.0208,\"y\":270.0139,\"z\":0.0168}},\"fcd9ce\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3577,\"z\":-65.8127},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"fea03b\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3556,\"z\":-77.3007},\"rot\":{\"x\":0.0208,\"y\":269.9643,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -726772,6 +769264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726787,12 +769281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e53458" }, { @@ -726820,6 +769315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726835,12 +769332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c311be" }, { @@ -726868,6 +769366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726883,12 +769383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "918fde" }, { @@ -726916,6 +769417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726931,12 +769434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c7e85" }, { @@ -726964,6 +769468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -726979,12 +769485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c0a3d" }, { @@ -727012,6 +769519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727027,12 +769536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef52e6" }, { @@ -727060,6 +769570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727075,12 +769587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2403fa" }, { @@ -727108,6 +769621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727123,12 +769638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f560b1" }, { @@ -727156,6 +769672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727171,12 +769689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "443992" }, { @@ -727204,6 +769723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727219,12 +769740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa4a56" }, { @@ -727252,6 +769774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727267,12 +769791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec3a71" }, { @@ -727300,6 +769825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727315,12 +769842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fb7c0" }, { @@ -727348,6 +769876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727363,12 +769893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16154f" }, { @@ -727396,6 +769927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727411,12 +769944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f6cb3" }, { @@ -727444,6 +769978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727459,12 +769995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a906ee" }, { @@ -727492,6 +770029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727507,12 +770046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82d9bb" }, { @@ -727540,6 +770080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727555,12 +770097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d26b84" }, { @@ -727588,6 +770131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727603,12 +770148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc4caf" }, { @@ -727636,6 +770182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727651,12 +770199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b7765" }, { @@ -727684,6 +770233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727699,12 +770250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb9d20" }, { @@ -727732,6 +770284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727747,12 +770301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45e559" }, { @@ -727780,6 +770335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727795,12 +770352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86ed13" }, { @@ -727828,6 +770386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727843,12 +770403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "426c61" }, { @@ -727876,6 +770437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727891,12 +770454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e86c1" }, { @@ -727924,6 +770488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727939,12 +770505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fea03b" }, { @@ -727972,6 +770539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -727987,12 +770556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31051f" }, { @@ -728020,6 +770590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728035,12 +770607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b49ef1" }, { @@ -728068,6 +770641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728083,12 +770658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4d8c4" }, { @@ -728116,6 +770692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728131,12 +770709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdddfa" }, { @@ -728164,6 +770743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728179,12 +770760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb968f" }, { @@ -728212,6 +770794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728227,12 +770811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f89dd6" }, { @@ -728260,6 +770845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728275,12 +770862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1654d" }, { @@ -728308,6 +770896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728323,12 +770913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcd9ce" }, { @@ -728356,6 +770947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728371,12 +770964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef7b23" }, { @@ -728404,6 +770998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728419,12 +771015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f71c08" }, { @@ -728452,6 +771049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728467,12 +771066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c78082" }, { @@ -728500,6 +771100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728515,12 +771117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9dd5d" }, { @@ -728548,6 +771151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728563,12 +771168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea3df4" }, { @@ -728596,6 +771202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728611,12 +771219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8272e9" }, { @@ -728644,6 +771253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728659,12 +771270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb7d83" }, { @@ -728692,6 +771304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728707,12 +771321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e2b00" }, { @@ -728740,6 +771355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728755,12 +771372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d74e66" }, { @@ -728788,6 +771406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728803,12 +771423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e8b75" }, { @@ -728836,6 +771457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728851,12 +771474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1c372" }, { @@ -728884,6 +771508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728899,12 +771525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9a151" }, { @@ -728932,6 +771559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728947,12 +771576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "becb9c" }, { @@ -728980,6 +771610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -728995,12 +771627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2f6b1" }, { @@ -729028,6 +771661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729043,12 +771678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7da732" }, { @@ -729076,6 +771712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729091,12 +771729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598837" }, { @@ -729124,6 +771763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729139,12 +771780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c0e3b" }, { @@ -729172,6 +771814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729187,12 +771831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "053015" }, { @@ -729220,6 +771865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729235,12 +771882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0919cf" }, { @@ -729268,6 +771916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729283,12 +771933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f651e8" }, { @@ -729316,6 +771967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729331,12 +771984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9b811" }, { @@ -729364,6 +772018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729379,12 +772035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17c6c8" }, { @@ -729412,6 +772069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729440,9 +772099,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"053015\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3617,\"z\":-52.0129},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"0919cf\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.361,\"z\":-54.3129},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"0e2b00\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.3556,\"z\":-72.7128},\"rot\":{\"x\":0.0208,\"y\":269.999,\"z\":0.0168}},\"0e8b75\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.361,\"z\":-58.9008},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"16154f\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3614,\"z\":-68.1214},\"rot\":{\"x\":0.0208,\"y\":270.0292,\"z\":0.0168}},\"17c6c8\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.359,\"z\":-61.2129},\"rot\":{\"x\":0.0208,\"y\":269.9821,\"z\":0.0168}},\"2403fa\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3655,\"z\":-54.3215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2b7765\":{\"lock\":false,\"pos\":{\"x\":44.213,\"y\":1.3516,\"z\":-91.0974},\"rot\":{\"x\":0.0208,\"y\":270.0111,\"z\":0.0168}},\"31051f\":{\"lock\":false,\"pos\":{\"x\":44.2289,\"y\":1.3563,\"z\":-75.0008},\"rot\":{\"x\":0.0208,\"y\":270.0312,\"z\":0.0168}},\"3c7e85\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3662,\"z\":-52.0215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"426c61\":{\"lock\":false,\"pos\":{\"x\":44.231,\"y\":1.3542,\"z\":-81.9009},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"443992\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3641,\"z\":-58.9215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"45e559\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3529,\"z\":-86.5007},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"4e86c1\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3549,\"z\":-79.6007},\"rot\":{\"x\":0.0208,\"y\":270.0188,\"z\":0.0168}},\"4fb7c0\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3621,\"z\":-65.8214},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"598837\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3631,\"z\":-47.4129},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"7da732\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3643,\"z\":-47.4008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"8272e9\":{\"lock\":false,\"pos\":{\"x\":40.6791,\"y\":1.353,\"z\":-81.9129},\"rot\":{\"x\":0.0208,\"y\":270.0167,\"z\":0.0168}},\"82d9bb\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3594,\"z\":-75.0215},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"86ed13\":{\"lock\":false,\"pos\":{\"x\":44.2289,\"y\":1.3536,\"z\":-84.2007},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"8c0e3b\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3624,\"z\":-49.7129},\"rot\":{\"x\":0.0208,\"y\":270.0018,\"z\":0.0168}},\"8f6cb3\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3608,\"z\":-70.4214},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"918fde\":{\"lock\":false,\"pos\":{\"x\":58.0998,\"y\":1.368,\"z\":-52.0722},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"9c0a3d\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3668,\"z\":-49.7215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"a1c372\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3617,\"z\":-56.6008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"a906ee\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3601,\"z\":-72.7215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b49ef1\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3569,\"z\":-72.7007},\"rot\":{\"x\":0.0208,\"y\":269.978,\"z\":0.0168}},\"b9b811\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3597,\"z\":-58.9129},\"rot\":{\"x\":0.0208,\"y\":269.9831,\"z\":0.0168}},\"b9dd5d\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.3543,\"z\":-77.3127},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"bb7d83\":{\"lock\":false,\"pos\":{\"x\":40.6791,\"y\":1.3523,\"z\":-84.2122},\"rot\":{\"x\":0.0208,\"y\":270.0334,\"z\":0.0168}},\"bb9d20\":{\"lock\":false,\"pos\":{\"x\":44.2132,\"y\":1.3522,\"z\":-88.7901},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"bdddfa\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3583,\"z\":-68.1007},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"becb9c\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.363,\"z\":-52.0008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"c2f6b1\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3637,\"z\":-49.7008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"c311be\":{\"lock\":false,\"pos\":{\"x\":58.0998,\"y\":1.3687,\"z\":-49.7722},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"c78082\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.355,\"z\":-75.0128},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"cb968f\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.359,\"z\":-65.8007},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"d26b84\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3588,\"z\":-77.3214},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"d4d8c4\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3576,\"z\":-70.4007},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"d74e66\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3603,\"z\":-61.2008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"e53458\":{\"lock\":false,\"pos\":{\"x\":58.0998,\"y\":1.3694,\"z\":-47.4722},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ea3df4\":{\"lock\":false,\"pos\":{\"x\":40.676,\"y\":1.3536,\"z\":-79.6126},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"ec3a71\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3628,\"z\":-63.5215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ef52e6\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3675,\"z\":-47.4215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ef7b23\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.357,\"z\":-68.1127},\"rot\":{\"x\":0.0208,\"y\":269.9971,\"z\":0.0168}},\"f1654d\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3583,\"z\":-63.5129},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f560b1\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3648,\"z\":-56.6215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f651e8\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3604,\"z\":-56.6129},\"rot\":{\"x\":0.0208,\"y\":270.0041,\"z\":0.0168}},\"f71c08\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.3563,\"z\":-70.4128},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f89dd6\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3596,\"z\":-63.5008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f9a151\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3623,\"z\":-54.3008},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"fa4a56\":{\"lock\":false,\"pos\":{\"x\":52.9443,\"y\":1.3635,\"z\":-61.2215},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"fc4caf\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3581,\"z\":-79.6203},\"rot\":{\"x\":0.0208,\"y\":270.0139,\"z\":0.0168}},\"fcd9ce\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3577,\"z\":-65.8127},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"fea03b\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3556,\"z\":-77.3007},\"rot\":{\"x\":0.0208,\"y\":269.9643,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -729469,6 +772128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729484,12 +772145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e53458" }, { @@ -729517,6 +772179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729532,12 +772196,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c311be" }, { @@ -729565,6 +772230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729580,12 +772247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "918fde" }, { @@ -729613,6 +772281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729628,12 +772298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c7e85" }, { @@ -729661,6 +772332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729676,12 +772349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c0a3d" }, { @@ -729709,6 +772383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729724,12 +772400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef52e6" }, { @@ -729757,6 +772434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729772,12 +772451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2403fa" }, { @@ -729805,6 +772485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729820,12 +772502,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f560b1" }, { @@ -729853,6 +772536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729868,12 +772553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "443992" }, { @@ -729901,6 +772587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729916,12 +772604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa4a56" }, { @@ -729949,6 +772638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -729964,12 +772655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec3a71" }, { @@ -729997,6 +772689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730012,12 +772706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fb7c0" }, { @@ -730045,6 +772740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730060,12 +772757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16154f" }, { @@ -730093,6 +772791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730108,12 +772808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f6cb3" }, { @@ -730141,6 +772842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730156,12 +772859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a906ee" }, { @@ -730189,6 +772893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730204,12 +772910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82d9bb" }, { @@ -730237,6 +772944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730252,12 +772961,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d26b84" }, { @@ -730285,6 +772995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730300,12 +773012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc4caf" }, { @@ -730333,6 +773046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730348,12 +773063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b7765" }, { @@ -730381,6 +773097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730396,12 +773114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb9d20" }, { @@ -730429,6 +773148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730444,12 +773165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45e559" }, { @@ -730477,6 +773199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730492,12 +773216,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86ed13" }, { @@ -730525,6 +773250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730540,12 +773267,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "426c61" }, { @@ -730573,6 +773301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730588,12 +773318,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e86c1" }, { @@ -730621,6 +773352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730636,12 +773369,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fea03b" }, { @@ -730669,6 +773403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730684,12 +773420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31051f" }, { @@ -730717,6 +773454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730732,12 +773471,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b49ef1" }, { @@ -730765,6 +773505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730780,12 +773522,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4d8c4" }, { @@ -730813,6 +773556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730828,12 +773573,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdddfa" }, { @@ -730861,6 +773607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730876,12 +773624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb968f" }, { @@ -730909,6 +773658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730924,12 +773675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f89dd6" }, { @@ -730957,6 +773709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -730972,12 +773726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1654d" }, { @@ -731005,6 +773760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731020,12 +773777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcd9ce" }, { @@ -731053,6 +773811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731068,12 +773828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef7b23" }, { @@ -731101,6 +773862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731116,12 +773879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f71c08" }, { @@ -731149,6 +773913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731164,12 +773930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c78082" }, { @@ -731197,6 +773964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731212,12 +773981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9dd5d" }, { @@ -731245,6 +774015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731260,12 +774032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea3df4" }, { @@ -731293,6 +774066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731308,12 +774083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8272e9" }, { @@ -731341,6 +774117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731356,12 +774134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb7d83" }, { @@ -731389,6 +774168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731404,12 +774185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e2b00" }, { @@ -731437,6 +774219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731452,12 +774236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d74e66" }, { @@ -731485,6 +774270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731500,12 +774287,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e8b75" }, { @@ -731533,6 +774321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731548,12 +774338,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1c372" }, { @@ -731581,6 +774372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731596,12 +774389,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9a151" }, { @@ -731629,6 +774423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731644,12 +774440,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "becb9c" }, { @@ -731677,6 +774474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731692,12 +774491,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2f6b1" }, { @@ -731725,6 +774525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731740,12 +774542,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7da732" }, { @@ -731773,6 +774576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731788,12 +774593,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598837" }, { @@ -731821,6 +774627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731836,12 +774644,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c0e3b" }, { @@ -731869,6 +774678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731884,12 +774695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "053015" }, { @@ -731917,6 +774729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731932,12 +774746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0919cf" }, { @@ -731965,6 +774780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -731980,12 +774797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f651e8" }, { @@ -732013,6 +774831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732028,12 +774848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9b811" }, { @@ -732061,6 +774882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732076,12 +774899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17c6c8" } ], @@ -732115,6 +774939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732143,9 +774969,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"002455\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3641,\"z\":-58.9204},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"00c4cc\":{\"lock\":false,\"pos\":{\"x\":44.2134,\"y\":1.3522,\"z\":-88.7902},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"0b9f53\":{\"lock\":false,\"pos\":{\"x\":58.0999,\"y\":1.366,\"z\":-58.9711},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"13ae70\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3637,\"z\":-49.7009},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"1c3b8f\":{\"lock\":false,\"pos\":{\"x\":58.0999,\"y\":1.3673,\"z\":-54.3711},\"rot\":{\"x\":0.0208,\"y\":270.0042,\"z\":0.0168}},\"1c8915\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3529,\"z\":-86.5007},\"rot\":{\"x\":0.0208,\"y\":269.9932,\"z\":0.0168}},\"234fae\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3608,\"z\":-70.4203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"2a37f3\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3643,\"z\":-47.4009},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"2d9585\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3662,\"z\":-52.0204},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"35bbe8\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.363,\"z\":-52.0009},\"rot\":{\"x\":0.0208,\"y\":269.9889,\"z\":0.0168}},\"36bc5b\":{\"lock\":false,\"pos\":{\"x\":52.9465,\"y\":1.3574,\"z\":-81.9205},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"4a5655\":{\"lock\":false,\"pos\":{\"x\":40.6761,\"y\":1.3624,\"z\":-49.713},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"4d9a97\":{\"lock\":false,\"pos\":{\"x\":58.0999,\"y\":1.368,\"z\":-52.071},\"rot\":{\"x\":0.0208,\"y\":270.0076,\"z\":0.0168}},\"5010c5\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3621,\"z\":-65.8203},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"50acc5\":{\"lock\":false,\"pos\":{\"x\":52.9445,\"y\":1.3588,\"z\":-77.3203},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"584914\":{\"lock\":false,\"pos\":{\"x\":44.2312,\"y\":1.3542,\"z\":-81.901},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"5a1991\":{\"lock\":false,\"pos\":{\"x\":52.9445,\"y\":1.3581,\"z\":-79.6203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"61d1e5\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3628,\"z\":-63.5204},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"630d65\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.359,\"z\":-65.8008},\"rot\":{\"x\":0.0208,\"y\":269.9899,\"z\":0.0168}},\"6842aa\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3648,\"z\":-56.6204},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"6a04c3\":{\"lock\":false,\"pos\":{\"x\":52.9445,\"y\":1.3561,\"z\":-86.5203},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"6a8a9f\":{\"lock\":false,\"pos\":{\"x\":52.9445,\"y\":1.3594,\"z\":-75.0204},\"rot\":{\"x\":0.0208,\"y\":269.9985,\"z\":0.0168}},\"76b07c\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3668,\"z\":-49.7204},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"7fe153\":{\"lock\":false,\"pos\":{\"x\":58.0992,\"y\":1.3694,\"z\":-47.4416},\"rot\":{\"x\":0.0208,\"y\":270.0088,\"z\":0.0168}},\"8cdf20\":{\"lock\":false,\"pos\":{\"x\":40.6761,\"y\":1.3617,\"z\":-52.013},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"910b12\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3655,\"z\":-54.3204},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"9869ee\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3614,\"z\":-68.1203},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"9d09f0\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3617,\"z\":-56.6009},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"9dcdd3\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3567,\"z\":-84.2203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"9f9e58\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3596,\"z\":-63.5009},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"a06013\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3583,\"z\":-68.1008},\"rot\":{\"x\":0.0208,\"y\":270.0028,\"z\":0.0168}},\"a1c47b\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.361,\"z\":-58.9009},\"rot\":{\"x\":0.0208,\"y\":270.0039,\"z\":0.0168}},\"a5fc16\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3549,\"z\":-79.6007},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"ac7db0\":{\"lock\":false,\"pos\":{\"x\":52.9287,\"y\":1.3554,\"z\":-88.8098},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"ad0934\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3635,\"z\":-61.2204},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"ad6d9d\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3675,\"z\":-47.4204},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"b09d6f\":{\"lock\":false,\"pos\":{\"x\":44.2293,\"y\":1.3569,\"z\":-72.7008},\"rot\":{\"x\":0.0208,\"y\":270.0006,\"z\":0.0168}},\"b337ac\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3603,\"z\":-61.2008},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"b633d0\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3601,\"z\":-72.7204},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"b8f774\":{\"lock\":false,\"pos\":{\"x\":44.2133,\"y\":1.3516,\"z\":-91.0975},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"bce471\":{\"lock\":false,\"pos\":{\"x\":58.0999,\"y\":1.3667,\"z\":-56.6711},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"bf6a7b\":{\"lock\":false,\"pos\":{\"x\":40.6761,\"y\":1.3604,\"z\":-56.613},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"c6c157\":{\"lock\":false,\"pos\":{\"x\":44.2291,\"y\":1.3536,\"z\":-84.2007},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"cda2e6\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3556,\"z\":-77.3007},\"rot\":{\"x\":0.0208,\"y\":269.9709,\"z\":0.0168}},\"ce1a7d\":{\"lock\":false,\"pos\":{\"x\":40.6761,\"y\":1.3631,\"z\":-47.413},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"dd0b79\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3623,\"z\":-54.3009},\"rot\":{\"x\":0.0208,\"y\":270.0038,\"z\":0.0168}},\"e64769\":{\"lock\":false,\"pos\":{\"x\":44.2293,\"y\":1.3576,\"z\":-70.4008},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"ea2337\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3563,\"z\":-75.0008},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"ea8324\":{\"lock\":false,\"pos\":{\"x\":58.0999,\"y\":1.3687,\"z\":-49.771},\"rot\":{\"x\":0.0208,\"y\":270.0185,\"z\":0.0168}},\"f69d7d\":{\"lock\":false,\"pos\":{\"x\":40.6761,\"y\":1.361,\"z\":-54.313},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -732172,6 +774998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732187,12 +775015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fe153" }, { @@ -732220,6 +775049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732235,12 +775066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8324" }, { @@ -732268,6 +775100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732283,12 +775117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d9a97" }, { @@ -732316,6 +775151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732331,12 +775168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c3b8f" }, { @@ -732364,6 +775202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732379,12 +775219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce471" }, { @@ -732412,6 +775253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732427,12 +775270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b9f53" }, { @@ -732460,6 +775304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732475,12 +775321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "002455" }, { @@ -732508,6 +775355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732523,12 +775372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6842aa" }, { @@ -732556,6 +775406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732571,12 +775423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "910b12" }, { @@ -732604,6 +775457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732619,12 +775474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d9585" }, { @@ -732652,6 +775508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732667,12 +775525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76b07c" }, { @@ -732700,6 +775559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732715,12 +775576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad6d9d" }, { @@ -732748,6 +775610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732763,12 +775627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad0934" }, { @@ -732796,6 +775661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732811,12 +775678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61d1e5" }, { @@ -732844,6 +775712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732859,12 +775729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5010c5" }, { @@ -732892,6 +775763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732907,12 +775780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9869ee" }, { @@ -732940,6 +775814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -732955,12 +775831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "234fae" }, { @@ -732988,6 +775865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733003,12 +775882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b633d0" }, { @@ -733036,6 +775916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733051,12 +775933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a8a9f" }, { @@ -733084,6 +775967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733099,12 +775984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50acc5" }, { @@ -733132,6 +776018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733147,12 +776035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a1991" }, { @@ -733180,6 +776069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733195,12 +776086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36bc5b" }, { @@ -733228,6 +776120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733243,12 +776137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dcdd3" }, { @@ -733276,6 +776171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733291,12 +776188,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a04c3" }, { @@ -733324,6 +776222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733339,12 +776239,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac7db0" }, { @@ -733372,6 +776273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733387,12 +776290,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8f774" }, { @@ -733420,6 +776324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733435,12 +776341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00c4cc" }, { @@ -733468,6 +776375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733483,12 +776392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c8915" }, { @@ -733516,6 +776426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733531,12 +776443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6c157" }, { @@ -733564,6 +776477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733579,12 +776494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "584914" }, { @@ -733612,6 +776528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733627,12 +776545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5fc16" }, { @@ -733660,6 +776579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733675,12 +776596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cda2e6" }, { @@ -733708,6 +776630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733723,12 +776647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2337" }, { @@ -733756,6 +776681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733771,12 +776698,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b09d6f" }, { @@ -733804,6 +776732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733819,12 +776749,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e64769" }, { @@ -733852,6 +776783,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733867,12 +776800,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a06013" }, { @@ -733900,6 +776834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733915,12 +776851,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "630d65" }, { @@ -733948,6 +776885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -733963,12 +776902,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f9e58" }, { @@ -733996,6 +776936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734011,12 +776953,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b337ac" }, { @@ -734044,6 +776987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734059,12 +777004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1c47b" }, { @@ -734092,6 +777038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734107,12 +777055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d09f0" }, { @@ -734140,6 +777089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734155,12 +777106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf6a7b" }, { @@ -734188,6 +777140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734203,12 +777157,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f69d7d" }, { @@ -734236,6 +777191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734251,12 +777208,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd0b79" }, { @@ -734284,6 +777242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734299,12 +777259,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35bbe8" }, { @@ -734332,6 +777293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734347,12 +777310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cdf20" }, { @@ -734380,6 +777344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734395,12 +777361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13ae70" }, { @@ -734428,6 +777395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734443,12 +777412,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a5655" }, { @@ -734476,6 +777446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734491,12 +777463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce1a7d" }, { @@ -734524,6 +777497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734539,12 +777514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a37f3" }, { @@ -734572,6 +777548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734600,9 +777578,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"002455\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3641,\"z\":-58.9204},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"00c4cc\":{\"lock\":false,\"pos\":{\"x\":44.2134,\"y\":1.3522,\"z\":-88.7902},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"0b9f53\":{\"lock\":false,\"pos\":{\"x\":58.0999,\"y\":1.366,\"z\":-58.9711},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"13ae70\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3637,\"z\":-49.7009},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"1c3b8f\":{\"lock\":false,\"pos\":{\"x\":58.0999,\"y\":1.3673,\"z\":-54.3711},\"rot\":{\"x\":0.0208,\"y\":270.0042,\"z\":0.0168}},\"1c8915\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3529,\"z\":-86.5007},\"rot\":{\"x\":0.0208,\"y\":269.9932,\"z\":0.0168}},\"234fae\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3608,\"z\":-70.4203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"2a37f3\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3643,\"z\":-47.4009},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"2d9585\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3662,\"z\":-52.0204},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"35bbe8\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.363,\"z\":-52.0009},\"rot\":{\"x\":0.0208,\"y\":269.9889,\"z\":0.0168}},\"36bc5b\":{\"lock\":false,\"pos\":{\"x\":52.9465,\"y\":1.3574,\"z\":-81.9205},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"4a5655\":{\"lock\":false,\"pos\":{\"x\":40.6761,\"y\":1.3624,\"z\":-49.713},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"4d9a97\":{\"lock\":false,\"pos\":{\"x\":58.0999,\"y\":1.368,\"z\":-52.071},\"rot\":{\"x\":0.0208,\"y\":270.0076,\"z\":0.0168}},\"5010c5\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3621,\"z\":-65.8203},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"50acc5\":{\"lock\":false,\"pos\":{\"x\":52.9445,\"y\":1.3588,\"z\":-77.3203},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"584914\":{\"lock\":false,\"pos\":{\"x\":44.2312,\"y\":1.3542,\"z\":-81.901},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"5a1991\":{\"lock\":false,\"pos\":{\"x\":52.9445,\"y\":1.3581,\"z\":-79.6203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"61d1e5\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3628,\"z\":-63.5204},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"630d65\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.359,\"z\":-65.8008},\"rot\":{\"x\":0.0208,\"y\":269.9899,\"z\":0.0168}},\"6842aa\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3648,\"z\":-56.6204},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"6a04c3\":{\"lock\":false,\"pos\":{\"x\":52.9445,\"y\":1.3561,\"z\":-86.5203},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"6a8a9f\":{\"lock\":false,\"pos\":{\"x\":52.9445,\"y\":1.3594,\"z\":-75.0204},\"rot\":{\"x\":0.0208,\"y\":269.9985,\"z\":0.0168}},\"76b07c\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3668,\"z\":-49.7204},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"7fe153\":{\"lock\":false,\"pos\":{\"x\":58.0992,\"y\":1.3694,\"z\":-47.4416},\"rot\":{\"x\":0.0208,\"y\":270.0088,\"z\":0.0168}},\"8cdf20\":{\"lock\":false,\"pos\":{\"x\":40.6761,\"y\":1.3617,\"z\":-52.013},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"910b12\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3655,\"z\":-54.3204},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"9869ee\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3614,\"z\":-68.1203},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"9d09f0\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3617,\"z\":-56.6009},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"9dcdd3\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3567,\"z\":-84.2203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"9f9e58\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3596,\"z\":-63.5009},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"a06013\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3583,\"z\":-68.1008},\"rot\":{\"x\":0.0208,\"y\":270.0028,\"z\":0.0168}},\"a1c47b\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.361,\"z\":-58.9009},\"rot\":{\"x\":0.0208,\"y\":270.0039,\"z\":0.0168}},\"a5fc16\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3549,\"z\":-79.6007},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"ac7db0\":{\"lock\":false,\"pos\":{\"x\":52.9287,\"y\":1.3554,\"z\":-88.8098},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"ad0934\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3635,\"z\":-61.2204},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"ad6d9d\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3675,\"z\":-47.4204},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"b09d6f\":{\"lock\":false,\"pos\":{\"x\":44.2293,\"y\":1.3569,\"z\":-72.7008},\"rot\":{\"x\":0.0208,\"y\":270.0006,\"z\":0.0168}},\"b337ac\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3603,\"z\":-61.2008},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"b633d0\":{\"lock\":false,\"pos\":{\"x\":52.9444,\"y\":1.3601,\"z\":-72.7204},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"b8f774\":{\"lock\":false,\"pos\":{\"x\":44.2133,\"y\":1.3516,\"z\":-91.0975},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"bce471\":{\"lock\":false,\"pos\":{\"x\":58.0999,\"y\":1.3667,\"z\":-56.6711},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"bf6a7b\":{\"lock\":false,\"pos\":{\"x\":40.6761,\"y\":1.3604,\"z\":-56.613},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"c6c157\":{\"lock\":false,\"pos\":{\"x\":44.2291,\"y\":1.3536,\"z\":-84.2007},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"cda2e6\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3556,\"z\":-77.3007},\"rot\":{\"x\":0.0208,\"y\":269.9709,\"z\":0.0168}},\"ce1a7d\":{\"lock\":false,\"pos\":{\"x\":40.6761,\"y\":1.3631,\"z\":-47.413},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"dd0b79\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3623,\"z\":-54.3009},\"rot\":{\"x\":0.0208,\"y\":270.0038,\"z\":0.0168}},\"e64769\":{\"lock\":false,\"pos\":{\"x\":44.2293,\"y\":1.3576,\"z\":-70.4008},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"ea2337\":{\"lock\":false,\"pos\":{\"x\":44.2292,\"y\":1.3563,\"z\":-75.0008},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"ea8324\":{\"lock\":false,\"pos\":{\"x\":58.0999,\"y\":1.3687,\"z\":-49.771},\"rot\":{\"x\":0.0208,\"y\":270.0185,\"z\":0.0168}},\"f69d7d\":{\"lock\":false,\"pos\":{\"x\":40.6761,\"y\":1.361,\"z\":-54.313},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -734629,6 +777607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734644,12 +777624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fe153" }, { @@ -734677,6 +777658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734692,12 +777675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8324" }, { @@ -734725,6 +777709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734740,12 +777726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d9a97" }, { @@ -734773,6 +777760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734788,12 +777777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c3b8f" }, { @@ -734821,6 +777811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734836,12 +777828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce471" }, { @@ -734869,6 +777862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734884,12 +777879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b9f53" }, { @@ -734917,6 +777913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734932,12 +777930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "002455" }, { @@ -734965,6 +777964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -734980,12 +777981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6842aa" }, { @@ -735013,6 +778015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735028,12 +778032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "910b12" }, { @@ -735061,6 +778066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735076,12 +778083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d9585" }, { @@ -735109,6 +778117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735124,12 +778134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76b07c" }, { @@ -735157,6 +778168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735172,12 +778185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad6d9d" }, { @@ -735205,6 +778219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735220,12 +778236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad0934" }, { @@ -735253,6 +778270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735268,12 +778287,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61d1e5" }, { @@ -735301,6 +778321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735316,12 +778338,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5010c5" }, { @@ -735349,6 +778372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735364,12 +778389,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9869ee" }, { @@ -735397,6 +778423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735412,12 +778440,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "234fae" }, { @@ -735445,6 +778474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735460,12 +778491,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b633d0" }, { @@ -735493,6 +778525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735508,12 +778542,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a8a9f" }, { @@ -735541,6 +778576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735556,12 +778593,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50acc5" }, { @@ -735589,6 +778627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735604,12 +778644,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a1991" }, { @@ -735637,6 +778678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735652,12 +778695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36bc5b" }, { @@ -735685,6 +778729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735700,12 +778746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dcdd3" }, { @@ -735733,6 +778780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735748,12 +778797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a04c3" }, { @@ -735781,6 +778831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735796,12 +778848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac7db0" }, { @@ -735829,6 +778882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735844,12 +778899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8f774" }, { @@ -735877,6 +778933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735892,12 +778950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00c4cc" }, { @@ -735925,6 +778984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735940,12 +779001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c8915" }, { @@ -735973,6 +779035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -735988,12 +779052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6c157" }, { @@ -736021,6 +779086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736036,12 +779103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "584914" }, { @@ -736069,6 +779137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736084,12 +779154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5fc16" }, { @@ -736117,6 +779188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736132,12 +779205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cda2e6" }, { @@ -736165,6 +779239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736180,12 +779256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2337" }, { @@ -736213,6 +779290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736228,12 +779307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b09d6f" }, { @@ -736261,6 +779341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736276,12 +779358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e64769" }, { @@ -736309,6 +779392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736324,12 +779409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a06013" }, { @@ -736357,6 +779443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736372,12 +779460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "630d65" }, { @@ -736405,6 +779494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736420,12 +779511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f9e58" }, { @@ -736453,6 +779545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736468,12 +779562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b337ac" }, { @@ -736501,6 +779596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736516,12 +779613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1c47b" }, { @@ -736549,6 +779647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736564,12 +779664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d09f0" }, { @@ -736597,6 +779698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736612,12 +779715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf6a7b" }, { @@ -736645,6 +779749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736660,12 +779766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f69d7d" }, { @@ -736693,6 +779800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736708,12 +779817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd0b79" }, { @@ -736741,6 +779851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736756,12 +779868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35bbe8" }, { @@ -736789,6 +779902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736804,12 +779919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cdf20" }, { @@ -736837,6 +779953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736852,12 +779970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13ae70" }, { @@ -736885,6 +780004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736900,12 +780021,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a5655" }, { @@ -736933,6 +780055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736948,12 +780072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce1a7d" }, { @@ -736981,6 +780106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -736996,12 +780123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a37f3" } ], @@ -737035,6 +780163,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737063,9 +780193,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"08097a\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3596,\"z\":-63.5009},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"0aece0\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.361,\"z\":-58.9008},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"1b1f60\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3675,\"z\":-47.4203},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"1ea991\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3569,\"z\":-72.7007},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"2acaa8\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3583,\"z\":-68.1007},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"519cc4\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3603,\"z\":-61.2008},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"67dfca\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.363,\"z\":-52.0008},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"6b6ed9\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3576,\"z\":-70.4007},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"73aab3\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3662,\"z\":-52.0203},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"79ef94\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3637,\"z\":-49.7008},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"8737b5\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3617,\"z\":-56.6008},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"b5763a\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3668,\"z\":-49.7203},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"c1124f\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.3694,\"z\":-47.471},\"rot\":{\"x\":0.0208,\"y\":270.0011,\"z\":0.0168}},\"cd426b\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.359,\"z\":-65.8007},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"cf212b\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3563,\"z\":-75.0007},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"d78375\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3655,\"z\":-54.3203},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"eef2a9\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3643,\"z\":-47.4008},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"fa4c7c\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3623,\"z\":-54.3008},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -737092,6 +780222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737120,9 +780252,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"08097a\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3596,\"z\":-63.5009},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"0aece0\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.361,\"z\":-58.9008},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"1b1f60\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3675,\"z\":-47.4203},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"1ea991\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3569,\"z\":-72.7007},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"2acaa8\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3583,\"z\":-68.1007},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"519cc4\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3603,\"z\":-61.2008},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"67dfca\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.363,\"z\":-52.0008},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"6b6ed9\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3576,\"z\":-70.4007},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"73aab3\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3662,\"z\":-52.0203},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"79ef94\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3637,\"z\":-49.7008},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"8737b5\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3617,\"z\":-56.6008},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"b5763a\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3668,\"z\":-49.7203},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"c1124f\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.3694,\"z\":-47.471},\"rot\":{\"x\":0.0208,\"y\":270.0011,\"z\":0.0168}},\"cd426b\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.359,\"z\":-65.8007},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"cf212b\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3563,\"z\":-75.0007},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"d78375\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3655,\"z\":-54.3203},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"eef2a9\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3643,\"z\":-47.4008},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"fa4c7c\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3623,\"z\":-54.3008},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -737149,6 +780281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737164,12 +780298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1124f" }, { @@ -737197,6 +780332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737212,12 +780349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b1f60" }, { @@ -737245,6 +780383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737260,12 +780400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5763a" }, { @@ -737293,6 +780434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737308,12 +780451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73aab3" }, { @@ -737341,6 +780485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737356,12 +780502,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d78375" }, { @@ -737389,6 +780536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737404,12 +780553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eef2a9" }, { @@ -737437,6 +780587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737452,12 +780604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79ef94" }, { @@ -737485,6 +780638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737500,12 +780655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67dfca" }, { @@ -737533,6 +780689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737548,12 +780706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa4c7c" }, { @@ -737581,6 +780740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737596,12 +780757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8737b5" }, { @@ -737629,6 +780791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737644,12 +780808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0aece0" }, { @@ -737677,6 +780842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737692,12 +780859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "519cc4" }, { @@ -737725,6 +780893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737740,12 +780910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08097a" }, { @@ -737773,6 +780944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737788,12 +780961,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd426b" }, { @@ -737821,6 +780995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737836,12 +781012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2acaa8" }, { @@ -737869,6 +781046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737884,12 +781063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b6ed9" }, { @@ -737917,6 +781097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737932,12 +781114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ea991" }, { @@ -737965,6 +781148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -737980,12 +781165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf212b" } ], @@ -738016,6 +781202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738031,12 +781219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08097a" }, { @@ -738064,6 +781253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738079,12 +781270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0aece0" }, { @@ -738112,6 +781304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738127,12 +781321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b1f60" }, { @@ -738160,6 +781355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738175,12 +781372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ea991" }, { @@ -738208,6 +781406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738223,12 +781423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2acaa8" }, { @@ -738256,6 +781457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738271,12 +781474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "519cc4" }, { @@ -738304,6 +781508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738319,12 +781525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67dfca" }, { @@ -738352,6 +781559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738367,12 +781576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b6ed9" }, { @@ -738400,6 +781610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738415,12 +781627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73aab3" }, { @@ -738448,6 +781661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738463,12 +781678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79ef94" }, { @@ -738496,6 +781712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738511,12 +781729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8737b5" }, { @@ -738544,6 +781763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738559,12 +781780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5763a" }, { @@ -738592,6 +781814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738607,12 +781831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1124f" }, { @@ -738640,6 +781865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738655,12 +781882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd426b" }, { @@ -738688,6 +781916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738703,12 +781933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf212b" }, { @@ -738736,6 +781967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738751,12 +781984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d78375" }, { @@ -738784,6 +782018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738799,12 +782035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eef2a9" }, { @@ -738832,6 +782069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738847,12 +782086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa4c7c" } ], @@ -738883,6 +782123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738911,9 +782153,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.9,0,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.9,0,2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"100e24\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3296,\"z\":69.509},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"143e38\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3269,\"z\":60.3088},\"rot\":{\"x\":0.0208,\"y\":269.9949,\"z\":0.0168}},\"14c7e0\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.333,\"z\":81.009},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"20570c\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3337,\"z\":83.309},\"rot\":{\"x\":0.0208,\"y\":269.9898,\"z\":0.0168}},\"29f699\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3323,\"z\":78.709},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"406a2b\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3303,\"z\":71.809},\"rot\":{\"x\":0.0208,\"y\":269.9946,\"z\":0.0168}},\"4a8eef\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.329,\"z\":67.209},\"rot\":{\"x\":0.0208,\"y\":269.9872,\"z\":0.0168}},\"4cc413\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3316,\"z\":76.409},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"4da36d\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3276,\"z\":62.6088},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"506382\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3283,\"z\":64.909},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"6ad46b\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.331,\"z\":74.109},\"rot\":{\"x\":0.0208,\"y\":269.9683,\"z\":0.0168}},\"6ced1f\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3343,\"z\":85.609},\"rot\":{\"x\":0.0208,\"y\":269.9947,\"z\":0.0168}},\"cb91bd\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3263,\"z\":58.0087},\"rot\":{\"x\":0.0208,\"y\":270.021,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -738940,6 +782182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -738968,9 +782212,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.9,0,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.9,0,2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"100e24\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3296,\"z\":69.509},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"143e38\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3269,\"z\":60.3088},\"rot\":{\"x\":0.0208,\"y\":269.9949,\"z\":0.0168}},\"14c7e0\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.333,\"z\":81.009},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"20570c\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3337,\"z\":83.309},\"rot\":{\"x\":0.0208,\"y\":269.9898,\"z\":0.0168}},\"29f699\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3323,\"z\":78.709},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"406a2b\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3303,\"z\":71.809},\"rot\":{\"x\":0.0208,\"y\":269.9946,\"z\":0.0168}},\"4a8eef\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.329,\"z\":67.209},\"rot\":{\"x\":0.0208,\"y\":269.9872,\"z\":0.0168}},\"4cc413\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3316,\"z\":76.409},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"4da36d\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3276,\"z\":62.6088},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"506382\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3283,\"z\":64.909},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"6ad46b\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.331,\"z\":74.109},\"rot\":{\"x\":0.0208,\"y\":269.9683,\"z\":0.0168}},\"6ced1f\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3343,\"z\":85.609},\"rot\":{\"x\":0.0208,\"y\":269.9947,\"z\":0.0168}},\"cb91bd\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3263,\"z\":58.0087},\"rot\":{\"x\":0.0208,\"y\":270.021,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -738997,6 +782241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739012,12 +782258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ced1f" }, { @@ -739045,6 +782292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739060,12 +782309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20570c" }, { @@ -739093,6 +782343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739108,12 +782360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14c7e0" }, { @@ -739141,6 +782394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739156,12 +782411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29f699" }, { @@ -739189,6 +782445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739204,12 +782462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cc413" }, { @@ -739237,6 +782496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739252,12 +782513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ad46b" }, { @@ -739285,6 +782547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739300,12 +782564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "406a2b" }, { @@ -739333,6 +782598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739348,12 +782615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "100e24" }, { @@ -739381,6 +782649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739396,12 +782666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a8eef" }, { @@ -739429,6 +782700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739444,12 +782717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "506382" }, { @@ -739477,6 +782751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739492,12 +782768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4da36d" }, { @@ -739525,6 +782802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739540,12 +782819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "143e38" }, { @@ -739573,6 +782853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739588,12 +782870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb91bd" } ], @@ -739624,6 +782907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739639,12 +782924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "100e24" }, { @@ -739672,6 +782958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739687,12 +782975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "143e38" }, { @@ -739720,6 +783009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739735,12 +783026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14c7e0" }, { @@ -739768,6 +783060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739783,12 +783077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20570c" }, { @@ -739816,6 +783111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739831,12 +783128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29f699" }, { @@ -739864,6 +783162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739879,12 +783179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "406a2b" }, { @@ -739912,6 +783213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739927,12 +783230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a8eef" }, { @@ -739960,6 +783264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -739975,12 +783281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cc413" }, { @@ -740008,6 +783315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740023,12 +783332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4da36d" }, { @@ -740056,6 +783366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740071,12 +783383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "506382" }, { @@ -740104,6 +783417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740119,12 +783434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ad46b" }, { @@ -740152,6 +783468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740167,12 +783485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ced1f" }, { @@ -740200,6 +783519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740215,12 +783536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb91bd" } ], @@ -740251,6 +783573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740279,9 +783603,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0d3413\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3549,\"z\":-79.6007},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"0d3d1a\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.3694,\"z\":-47.471},\"rot\":{\"x\":0.0208,\"y\":269.9956,\"z\":0.0168}},\"0d88ac\":{\"lock\":false,\"pos\":{\"x\":40.6909,\"y\":1.3604,\"z\":-56.613},\"rot\":{\"x\":0.0208,\"y\":269.9716,\"z\":0.0168}},\"117137\":{\"lock\":false,\"pos\":{\"x\":44.2289,\"y\":1.3563,\"z\":-75.0008},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"15a1bb\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3662,\"z\":-52.0203},\"rot\":{\"x\":0.0208,\"y\":270.0024,\"z\":0.0168}},\"26d70e\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3583,\"z\":-68.1007},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"300569\":{\"lock\":false,\"pos\":{\"x\":40.676,\"y\":1.3536,\"z\":-79.6126},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"3469e0\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3635,\"z\":-61.2203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"384258\":{\"lock\":false,\"pos\":{\"x\":44.231,\"y\":1.3542,\"z\":-81.9009},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"3c0d81\":{\"lock\":false,\"pos\":{\"x\":44.2132,\"y\":1.3522,\"z\":-88.7901},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"404410\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3655,\"z\":-54.3203},\"rot\":{\"x\":0.0208,\"y\":270.0014,\"z\":0.0168}},\"423ea2\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3648,\"z\":-56.6203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"488fab\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3603,\"z\":-61.2008},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"53eaa9\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3577,\"z\":-65.8127},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"552689\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.368,\"z\":-52.071},\"rot\":{\"x\":0.0208,\"y\":269.971,\"z\":0.0168}},\"562c05\":{\"lock\":false,\"pos\":{\"x\":44.2289,\"y\":1.3569,\"z\":-72.7007},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"5bdc77\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.357,\"z\":-68.1127},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"5f8011\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3556,\"z\":-77.3007},\"rot\":{\"x\":0.0208,\"y\":269.9976,\"z\":0.0168}},\"659f2d\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.361,\"z\":-54.3129},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"683123\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3596,\"z\":-63.5009},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"6f6976\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3621,\"z\":-65.8202},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"6fab5a\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.3543,\"z\":-77.3127},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"791d5f\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3628,\"z\":-63.5203},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"8343e5\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.363,\"z\":-52.0008},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"8b1863\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3617,\"z\":-56.6008},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"8cdfc7\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3623,\"z\":-54.3008},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"96ec75\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3556,\"z\":-72.7127},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"97ed44\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3675,\"z\":-47.4203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"a641de\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3614,\"z\":-68.1202},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"add7c9\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3643,\"z\":-47.4008},\"rot\":{\"x\":0.0208,\"y\":269.9714,\"z\":0.0168}},\"b63277\":{\"lock\":false,\"pos\":{\"x\":40.6992,\"y\":1.359,\"z\":-61.2127},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"b722cd\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3597,\"z\":-58.9129},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"b98ff6\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3608,\"z\":-70.4202},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"bc498d\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.361,\"z\":-58.9008},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"bc868c\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.355,\"z\":-75.0128},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"bdbca5\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3601,\"z\":-72.7203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"c8716d\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3563,\"z\":-70.4127},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"cffeb0\":{\"lock\":false,\"pos\":{\"x\":44.2289,\"y\":1.3536,\"z\":-84.2007},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"d391c7\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3641,\"z\":-58.9203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"d86b0d\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3576,\"z\":-70.4007},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"dde850\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3631,\"z\":-47.4129},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"e0721f\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.3687,\"z\":-49.771},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"e07aab\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3594,\"z\":-75.0203},\"rot\":{\"x\":0.0208,\"y\":270.0149,\"z\":0.0168}},\"e4ceae\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.359,\"z\":-65.8007},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"e50ca0\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3637,\"z\":-49.7008},\"rot\":{\"x\":0.0208,\"y\":270.006,\"z\":0.0168}},\"e87c2d\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3624,\"z\":-49.7128},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"ebf4c0\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3583,\"z\":-63.5129},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"ef2ecd\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3529,\"z\":-86.5006},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"f22453\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3668,\"z\":-49.7203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"f86ed0\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3617,\"z\":-52.0128},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"fc5406\":{\"lock\":false,\"pos\":{\"x\":44.213,\"y\":1.3516,\"z\":-91.0974},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -740308,6 +783632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740323,12 +783649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d3d1a" }, { @@ -740356,6 +783683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740371,12 +783700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0721f" }, { @@ -740404,6 +783734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740419,12 +783751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "552689" }, { @@ -740452,6 +783785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740467,12 +783802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15a1bb" }, { @@ -740500,6 +783836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740515,12 +783853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f22453" }, { @@ -740548,6 +783887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740563,12 +783904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97ed44" }, { @@ -740596,6 +783938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740611,12 +783955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "404410" }, { @@ -740644,6 +783989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740659,12 +784006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "423ea2" }, { @@ -740692,6 +784040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740707,12 +784057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d391c7" }, { @@ -740740,6 +784091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740755,12 +784108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3469e0" }, { @@ -740788,6 +784142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740803,12 +784159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "791d5f" }, { @@ -740836,6 +784193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740851,12 +784210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f6976" }, { @@ -740884,6 +784244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740899,12 +784261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a641de" }, { @@ -740932,6 +784295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740947,12 +784312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b98ff6" }, { @@ -740980,6 +784346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -740995,12 +784363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdbca5" }, { @@ -741028,6 +784397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741043,12 +784414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e07aab" }, { @@ -741076,6 +784448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741091,12 +784465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "add7c9" }, { @@ -741124,6 +784499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741139,12 +784516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dde850" }, { @@ -741172,6 +784550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741187,12 +784567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e87c2d" }, { @@ -741220,6 +784601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741235,12 +784618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e50ca0" }, { @@ -741268,6 +784652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741283,12 +784669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8343e5" }, { @@ -741316,6 +784703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741331,12 +784720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f86ed0" }, { @@ -741364,6 +784754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741379,12 +784771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "659f2d" }, { @@ -741412,6 +784805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741427,12 +784822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cdfc7" }, { @@ -741460,6 +784856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741475,12 +784873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b1863" }, { @@ -741508,6 +784907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741523,12 +784924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d88ac" }, { @@ -741556,6 +784958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741571,12 +784975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b722cd" }, { @@ -741604,6 +785009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741619,12 +785026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc498d" }, { @@ -741652,6 +785060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741667,12 +785077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "488fab" }, { @@ -741700,6 +785111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741715,12 +785128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b63277" }, { @@ -741748,6 +785162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741763,12 +785179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebf4c0" }, { @@ -741796,6 +785213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741811,12 +785230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "683123" }, { @@ -741844,6 +785264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741859,12 +785281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4ceae" }, { @@ -741892,6 +785315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741907,12 +785332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53eaa9" }, { @@ -741940,6 +785366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -741955,12 +785383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5bdc77" }, { @@ -741988,6 +785417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742003,12 +785434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26d70e" }, { @@ -742036,6 +785468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742051,12 +785485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d86b0d" }, { @@ -742084,6 +785519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742099,12 +785536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8716d" }, { @@ -742132,6 +785570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742147,12 +785587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96ec75" }, { @@ -742180,6 +785621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742195,12 +785638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "562c05" }, { @@ -742228,6 +785672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742243,12 +785689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "117137" }, { @@ -742276,6 +785723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742291,12 +785740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc868c" }, { @@ -742324,6 +785774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742339,12 +785791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fab5a" }, { @@ -742372,6 +785825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742387,12 +785842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f8011" }, { @@ -742420,6 +785876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742435,12 +785893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d3413" }, { @@ -742468,6 +785927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742483,12 +785944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "300569" }, { @@ -742516,6 +785978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742531,12 +785995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "384258" }, { @@ -742564,6 +786029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742579,12 +786046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cffeb0" }, { @@ -742612,6 +786080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742627,12 +786097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef2ecd" }, { @@ -742660,6 +786131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742675,12 +786148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c0d81" }, { @@ -742708,6 +786182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742723,12 +786199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc5406" }, { @@ -742756,6 +786233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742784,9 +786263,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0d3413\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3549,\"z\":-79.6007},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"0d3d1a\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.3694,\"z\":-47.471},\"rot\":{\"x\":0.0208,\"y\":269.9956,\"z\":0.0168}},\"0d88ac\":{\"lock\":false,\"pos\":{\"x\":40.6909,\"y\":1.3604,\"z\":-56.613},\"rot\":{\"x\":0.0208,\"y\":269.9716,\"z\":0.0168}},\"117137\":{\"lock\":false,\"pos\":{\"x\":44.2289,\"y\":1.3563,\"z\":-75.0008},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"15a1bb\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3662,\"z\":-52.0203},\"rot\":{\"x\":0.0208,\"y\":270.0024,\"z\":0.0168}},\"26d70e\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3583,\"z\":-68.1007},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"300569\":{\"lock\":false,\"pos\":{\"x\":40.676,\"y\":1.3536,\"z\":-79.6126},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"3469e0\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3635,\"z\":-61.2203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"384258\":{\"lock\":false,\"pos\":{\"x\":44.231,\"y\":1.3542,\"z\":-81.9009},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"3c0d81\":{\"lock\":false,\"pos\":{\"x\":44.2132,\"y\":1.3522,\"z\":-88.7901},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"404410\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3655,\"z\":-54.3203},\"rot\":{\"x\":0.0208,\"y\":270.0014,\"z\":0.0168}},\"423ea2\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3648,\"z\":-56.6203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"488fab\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3603,\"z\":-61.2008},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"53eaa9\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3577,\"z\":-65.8127},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"552689\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.368,\"z\":-52.071},\"rot\":{\"x\":0.0208,\"y\":269.971,\"z\":0.0168}},\"562c05\":{\"lock\":false,\"pos\":{\"x\":44.2289,\"y\":1.3569,\"z\":-72.7007},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"5bdc77\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.357,\"z\":-68.1127},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"5f8011\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3556,\"z\":-77.3007},\"rot\":{\"x\":0.0208,\"y\":269.9976,\"z\":0.0168}},\"659f2d\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.361,\"z\":-54.3129},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"683123\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3596,\"z\":-63.5009},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"6f6976\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3621,\"z\":-65.8202},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"6fab5a\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.3543,\"z\":-77.3127},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"791d5f\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3628,\"z\":-63.5203},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"8343e5\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.363,\"z\":-52.0008},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"8b1863\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3617,\"z\":-56.6008},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"8cdfc7\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3623,\"z\":-54.3008},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"96ec75\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3556,\"z\":-72.7127},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"97ed44\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3675,\"z\":-47.4203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"a641de\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3614,\"z\":-68.1202},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"add7c9\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3643,\"z\":-47.4008},\"rot\":{\"x\":0.0208,\"y\":269.9714,\"z\":0.0168}},\"b63277\":{\"lock\":false,\"pos\":{\"x\":40.6992,\"y\":1.359,\"z\":-61.2127},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"b722cd\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3597,\"z\":-58.9129},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"b98ff6\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3608,\"z\":-70.4202},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"bc498d\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.361,\"z\":-58.9008},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"bc868c\":{\"lock\":false,\"pos\":{\"x\":40.6758,\"y\":1.355,\"z\":-75.0128},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"bdbca5\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3601,\"z\":-72.7203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"c8716d\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3563,\"z\":-70.4127},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"cffeb0\":{\"lock\":false,\"pos\":{\"x\":44.2289,\"y\":1.3536,\"z\":-84.2007},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"d391c7\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3641,\"z\":-58.9203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"d86b0d\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3576,\"z\":-70.4007},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"dde850\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3631,\"z\":-47.4129},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"e0721f\":{\"lock\":false,\"pos\":{\"x\":58.0997,\"y\":1.3687,\"z\":-49.771},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"e07aab\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3594,\"z\":-75.0203},\"rot\":{\"x\":0.0208,\"y\":270.0149,\"z\":0.0168}},\"e4ceae\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.359,\"z\":-65.8007},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"e50ca0\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3637,\"z\":-49.7008},\"rot\":{\"x\":0.0208,\"y\":270.006,\"z\":0.0168}},\"e87c2d\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3624,\"z\":-49.7128},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"ebf4c0\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3583,\"z\":-63.5129},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"ef2ecd\":{\"lock\":false,\"pos\":{\"x\":44.229,\"y\":1.3529,\"z\":-86.5006},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"f22453\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3668,\"z\":-49.7203},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"f86ed0\":{\"lock\":false,\"pos\":{\"x\":40.6759,\"y\":1.3617,\"z\":-52.0128},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"fc5406\":{\"lock\":false,\"pos\":{\"x\":44.213,\"y\":1.3516,\"z\":-91.0974},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -742813,6 +786292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742828,12 +786309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d3d1a" }, { @@ -742861,6 +786343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742876,12 +786360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0721f" }, { @@ -742909,6 +786394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742924,12 +786411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "552689" }, { @@ -742957,6 +786445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -742972,12 +786462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15a1bb" }, { @@ -743005,6 +786496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743020,12 +786513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f22453" }, { @@ -743053,6 +786547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743068,12 +786564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97ed44" }, { @@ -743101,6 +786598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743116,12 +786615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "404410" }, { @@ -743149,6 +786649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743164,12 +786666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "423ea2" }, { @@ -743197,6 +786700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743212,12 +786717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d391c7" }, { @@ -743245,6 +786751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743260,12 +786768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3469e0" }, { @@ -743293,6 +786802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743308,12 +786819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "791d5f" }, { @@ -743341,6 +786853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743356,12 +786870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f6976" }, { @@ -743389,6 +786904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743404,12 +786921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a641de" }, { @@ -743437,6 +786955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743452,12 +786972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b98ff6" }, { @@ -743485,6 +787006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743500,12 +787023,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdbca5" }, { @@ -743533,6 +787057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743548,12 +787074,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e07aab" }, { @@ -743581,6 +787108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743596,12 +787125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "add7c9" }, { @@ -743629,6 +787159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743644,12 +787176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dde850" }, { @@ -743677,6 +787210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743692,12 +787227,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e87c2d" }, { @@ -743725,6 +787261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743740,12 +787278,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e50ca0" }, { @@ -743773,6 +787312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743788,12 +787329,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8343e5" }, { @@ -743821,6 +787363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743836,12 +787380,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f86ed0" }, { @@ -743869,6 +787414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743884,12 +787431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "659f2d" }, { @@ -743917,6 +787465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743932,12 +787482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cdfc7" }, { @@ -743965,6 +787516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -743980,12 +787533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b1863" }, { @@ -744013,6 +787567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744028,12 +787584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d88ac" }, { @@ -744061,6 +787618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744076,12 +787635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b722cd" }, { @@ -744109,6 +787669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744124,12 +787686,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc498d" }, { @@ -744157,6 +787720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744172,12 +787737,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "488fab" }, { @@ -744205,6 +787771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744220,12 +787788,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b63277" }, { @@ -744253,6 +787822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744268,12 +787839,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebf4c0" }, { @@ -744301,6 +787873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744316,12 +787890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "683123" }, { @@ -744349,6 +787924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744364,12 +787941,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4ceae" }, { @@ -744397,6 +787975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744412,12 +787992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53eaa9" }, { @@ -744445,6 +788026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744460,12 +788043,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5bdc77" }, { @@ -744493,6 +788077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744508,12 +788094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26d70e" }, { @@ -744541,6 +788128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744556,12 +788145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d86b0d" }, { @@ -744589,6 +788179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744604,12 +788196,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8716d" }, { @@ -744637,6 +788230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744652,12 +788247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96ec75" }, { @@ -744685,6 +788281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744700,12 +788298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "562c05" }, { @@ -744733,6 +788332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744748,12 +788349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "117137" }, { @@ -744781,6 +788383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744796,12 +788400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc868c" }, { @@ -744829,6 +788434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744844,12 +788451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fab5a" }, { @@ -744877,6 +788485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744892,12 +788502,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f8011" }, { @@ -744925,6 +788536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744940,12 +788553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d3413" }, { @@ -744973,6 +788587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -744988,12 +788604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "300569" }, { @@ -745021,6 +788638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745036,12 +788655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "384258" }, { @@ -745069,6 +788689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745084,12 +788706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cffeb0" }, { @@ -745117,6 +788740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745132,12 +788757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef2ecd" }, { @@ -745165,6 +788791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745180,12 +788808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c0d81" }, { @@ -745213,6 +788842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745228,12 +788859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc5406" } ], @@ -745267,6 +788899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745295,9 +788929,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"080de1\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3829,\"z\":-63.4484},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"23207c\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3876,\"z\":-47.3484},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"3c7553\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3842,\"z\":-58.8484},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"5d9816\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3546,\"z\":-49.6679},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"654971\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3808,\"z\":-70.3481},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"7d999e\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3869,\"z\":-49.6484},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"7e8423\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3855,\"z\":-54.2484},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"891a6b\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3795,\"z\":-74.9481},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"9a393c\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3572,\"z\":-47.4186},\"rot\":{\"x\":0.0208,\"y\":270.0011,\"z\":0.0168}},\"b64c7f\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3533,\"z\":-54.2679},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"b6e2ee\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3862,\"z\":-51.9484},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"c46c6c\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3835,\"z\":-61.1484},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"c619e6\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3849,\"z\":-56.5484},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"c922e7\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.354,\"z\":-51.9679},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"d829fd\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3815,\"z\":-68.0481},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"f0ad1b\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3802,\"z\":-72.6481},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"f6cee9\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3822,\"z\":-65.7481},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"fab4c7\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3553,\"z\":-47.3679},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -745324,6 +788958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745339,12 +788975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a393c" }, { @@ -745372,6 +789009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745387,12 +789026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fab4c7" }, { @@ -745420,6 +789060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745435,12 +789077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d9816" }, { @@ -745468,6 +789111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745483,12 +789128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c922e7" }, { @@ -745516,6 +789162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745531,12 +789179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b64c7f" }, { @@ -745564,6 +789213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745579,12 +789230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23207c" }, { @@ -745612,6 +789264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745627,12 +789281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d999e" }, { @@ -745660,6 +789315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745675,12 +789332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6e2ee" }, { @@ -745708,6 +789366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745723,12 +789383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e8423" }, { @@ -745756,6 +789417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745771,12 +789434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c619e6" }, { @@ -745804,6 +789468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745819,12 +789485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c7553" }, { @@ -745852,6 +789519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745867,12 +789536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c46c6c" }, { @@ -745900,6 +789570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745915,12 +789587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "080de1" }, { @@ -745948,6 +789621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -745963,12 +789638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6cee9" }, { @@ -745996,6 +789672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746011,12 +789689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d829fd" }, { @@ -746044,6 +789723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746059,12 +789740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "654971" }, { @@ -746092,6 +789774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746107,12 +789791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0ad1b" }, { @@ -746140,6 +789825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746155,12 +789842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "891a6b" }, { @@ -746188,6 +789876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746216,9 +789906,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"080de1\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3829,\"z\":-63.4484},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"23207c\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3876,\"z\":-47.3484},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"3c7553\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3842,\"z\":-58.8484},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"5d9816\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3546,\"z\":-49.6679},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"654971\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3808,\"z\":-70.3481},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"7d999e\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3869,\"z\":-49.6484},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"7e8423\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3855,\"z\":-54.2484},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"891a6b\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3795,\"z\":-74.9481},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"9a393c\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3572,\"z\":-47.4186},\"rot\":{\"x\":0.0208,\"y\":270.0011,\"z\":0.0168}},\"b64c7f\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3533,\"z\":-54.2679},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"b6e2ee\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3862,\"z\":-51.9484},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"c46c6c\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3835,\"z\":-61.1484},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"c619e6\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3849,\"z\":-56.5484},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"c922e7\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.354,\"z\":-51.9679},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"d829fd\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3815,\"z\":-68.0481},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"f0ad1b\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3802,\"z\":-72.6481},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"f6cee9\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3822,\"z\":-65.7481},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"fab4c7\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3553,\"z\":-47.3679},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -746245,6 +789935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746260,12 +789952,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a393c" }, { @@ -746293,6 +789986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746308,12 +790003,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fab4c7" }, { @@ -746341,6 +790037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746356,12 +790054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d9816" }, { @@ -746389,6 +790088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746404,12 +790105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c922e7" }, { @@ -746437,6 +790139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746452,12 +790156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b64c7f" }, { @@ -746485,6 +790190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746500,12 +790207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23207c" }, { @@ -746533,6 +790241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746548,12 +790258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d999e" }, { @@ -746581,6 +790292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746596,12 +790309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6e2ee" }, { @@ -746629,6 +790343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746644,12 +790360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e8423" }, { @@ -746677,6 +790394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746692,12 +790411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c619e6" }, { @@ -746725,6 +790445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746740,12 +790462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c7553" }, { @@ -746773,6 +790496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746788,12 +790513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c46c6c" }, { @@ -746821,6 +790547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746836,12 +790564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "080de1" }, { @@ -746869,6 +790598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746884,12 +790615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6cee9" }, { @@ -746917,6 +790649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746932,12 +790666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d829fd" }, { @@ -746965,6 +790700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -746980,12 +790717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "654971" }, { @@ -747013,6 +790751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747028,12 +790768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0ad1b" }, { @@ -747061,6 +790802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747076,12 +790819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "891a6b" } ], @@ -747115,6 +790859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747143,9 +790889,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"03d1a0\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3816,\"z\":-63.4605},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"04a3bf\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3829,\"z\":-58.8605},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"15fec2\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3815,\"z\":-68.0481},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"16c33c\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3862,\"z\":-51.9484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1a0270\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3499,\"z\":-65.7675},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1b415c\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3876,\"z\":-47.3484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1ef9a6\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3849,\"z\":-51.9605},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"21a718\":{\"lock\":false,\"pos\":{\"x\":10.6317,\"y\":1.3775,\"z\":-81.8482},\"rot\":{\"x\":0.0208,\"y\":270.0045,\"z\":0.0168}},\"34638f\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3526,\"z\":-56.5679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"36fea3\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3809,\"z\":-65.7601},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"374087\":{\"lock\":false,\"pos\":{\"x\":19.2958,\"y\":1.3553,\"z\":-47.3736},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"402e5f\":{\"lock\":false,\"pos\":{\"x\":10.6137,\"y\":1.3748,\"z\":-91.04},\"rot\":{\"x\":0.0208,\"y\":270.0233,\"z\":0.0168}},\"4bd181\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3835,\"z\":-61.1484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"4f6da8\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3795,\"z\":-74.9481},\"rot\":{\"x\":0.0208,\"y\":270.0228,\"z\":0.0168}},\"56b997\":{\"lock\":false,\"pos\":{\"x\":24.5004,\"y\":1.3552,\"z\":-54.3186},\"rot\":{\"x\":0.0208,\"y\":269.9934,\"z\":0.0168}},\"5e46e6\":{\"lock\":false,\"pos\":{\"x\":7.0798,\"y\":1.3762,\"z\":-81.8602},\"rot\":{\"x\":0.0208,\"y\":270.0138,\"z\":0.0168}},\"5e7956\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3565,\"z\":-49.7185},\"rot\":{\"x\":0.0208,\"y\":270.0227,\"z\":0.0168}},\"65c636\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3856,\"z\":-49.6605},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"6b11de\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3863,\"z\":-47.3605},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"7f3e22\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3843,\"z\":-54.2605},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"8429dd\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3789,\"z\":-72.6601},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"8740c7\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.354,\"z\":-51.9679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"877d2f\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3781,\"z\":-79.548},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"8ef34f\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3486,\"z\":-70.3675},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"9357ea\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3782,\"z\":-74.9601},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"990ff4\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3802,\"z\":-68.0601},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"99f433\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3775,\"z\":-77.26},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"a31738\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3822,\"z\":-61.1605},\"rot\":{\"x\":0.0208,\"y\":270.027,\"z\":0.0168}},\"a5f12b\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3855,\"z\":-54.2484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"a8d27f\":{\"lock\":false,\"pos\":{\"x\":24.5004,\"y\":1.3545,\"z\":-56.6186},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b4020a\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3506,\"z\":-63.4679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b4738b\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3795,\"z\":-70.3601},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b56c07\":{\"lock\":false,\"pos\":{\"x\":10.6139,\"y\":1.3754,\"z\":-88.74},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"bdc57c\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3842,\"z\":-58.8484},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"be2769\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3572,\"z\":-47.4186},\"rot\":{\"x\":0.0208,\"y\":269.9947,\"z\":0.0168}},\"cad517\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3513,\"z\":-61.1679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ce6e0f\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3822,\"z\":-65.7481},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"cfb732\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.352,\"z\":-58.8679},\"rot\":{\"x\":0.0208,\"y\":270.0009,\"z\":0.0168}},\"d8c266\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3768,\"z\":-84.148},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"dd1134\":{\"lock\":false,\"pos\":{\"x\":7.0767,\"y\":1.3768,\"z\":-79.56},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"dfd22b\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3493,\"z\":-68.0675},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"e5dc9a\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3836,\"z\":-56.5605},\"rot\":{\"x\":0.0208,\"y\":270.0104,\"z\":0.0168}},\"e67679\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3558,\"z\":-52.0186},\"rot\":{\"x\":0.0208,\"y\":270.0227,\"z\":0.0168}},\"e6db57\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3761,\"z\":-86.448},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"ed9fda\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3533,\"z\":-54.2679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"eea23f\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3802,\"z\":-72.6481},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ef4857\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3788,\"z\":-77.248},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f389f8\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3808,\"z\":-70.3481},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f4ae60\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3546,\"z\":-49.6679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"fd1152\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3829,\"z\":-63.4484},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"fd526e\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3849,\"z\":-56.5484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"fea5e5\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3869,\"z\":-49.6484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -747172,6 +790918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747187,12 +790935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be2769" }, { @@ -747220,6 +790969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747235,12 +790986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e7956" }, { @@ -747268,6 +791020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747283,12 +791037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e67679" }, { @@ -747316,6 +791071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747331,12 +791088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56b997" }, { @@ -747364,6 +791122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747379,12 +791139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8d27f" }, { @@ -747412,6 +791173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747427,12 +791190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34638f" }, { @@ -747460,6 +791224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747475,12 +791241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed9fda" }, { @@ -747508,6 +791275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747523,12 +791292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8740c7" }, { @@ -747556,6 +791326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747571,12 +791343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4ae60" }, { @@ -747604,6 +791377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747619,12 +791394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "374087" }, { @@ -747652,6 +791428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747667,12 +791445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfb732" }, { @@ -747700,6 +791479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747715,12 +791496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cad517" }, { @@ -747748,6 +791530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747763,12 +791547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4020a" }, { @@ -747796,6 +791581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747811,12 +791598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a0270" }, { @@ -747844,6 +791632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747859,12 +791649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfd22b" }, { @@ -747892,6 +791683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747907,12 +791700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ef34f" }, { @@ -747940,6 +791734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -747955,12 +791751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b415c" }, { @@ -747988,6 +791785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748003,12 +791802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b11de" }, { @@ -748036,6 +791836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748051,12 +791853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65c636" }, { @@ -748084,6 +791887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748099,12 +791904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fea5e5" }, { @@ -748132,6 +791938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748147,12 +791955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16c33c" }, { @@ -748180,6 +791989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748195,12 +792006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ef9a6" }, { @@ -748228,6 +792040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748243,12 +792057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f3e22" }, { @@ -748276,6 +792091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748291,12 +792108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5f12b" }, { @@ -748324,6 +792142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748339,12 +792159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd526e" }, { @@ -748372,6 +792193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748387,12 +792210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5dc9a" }, { @@ -748420,6 +792244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748435,12 +792261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04a3bf" }, { @@ -748468,6 +792295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748483,12 +792312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdc57c" }, { @@ -748516,6 +792346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748531,12 +792363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bd181" }, { @@ -748564,6 +792397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748579,12 +792414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a31738" }, { @@ -748612,6 +792448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748627,12 +792465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03d1a0" }, { @@ -748660,6 +792499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748675,12 +792516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd1152" }, { @@ -748708,6 +792550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748723,12 +792567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce6e0f" }, { @@ -748756,6 +792601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748771,12 +792618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36fea3" }, { @@ -748804,6 +792652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748819,12 +792669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "990ff4" }, { @@ -748852,6 +792703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748867,12 +792720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15fec2" }, { @@ -748900,6 +792754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748915,12 +792771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f389f8" }, { @@ -748948,6 +792805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -748963,12 +792822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4738b" }, { @@ -748996,6 +792856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749011,12 +792873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8429dd" }, { @@ -749044,6 +792907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749059,12 +792924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea23f" }, { @@ -749092,6 +792958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749107,12 +792975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f6da8" }, { @@ -749140,6 +793009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749155,12 +793026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9357ea" }, { @@ -749188,6 +793060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749203,12 +793077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99f433" }, { @@ -749236,6 +793111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749251,12 +793128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef4857" }, { @@ -749284,6 +793162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749299,12 +793179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "877d2f" }, { @@ -749332,6 +793213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749347,12 +793230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd1134" }, { @@ -749380,6 +793264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749395,12 +793281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e46e6" }, { @@ -749428,6 +793315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749443,12 +793332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21a718" }, { @@ -749476,6 +793366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749491,12 +793383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8c266" }, { @@ -749524,6 +793417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749539,12 +793434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6db57" }, { @@ -749572,6 +793468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749587,12 +793485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b56c07" }, { @@ -749620,6 +793519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749635,12 +793536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "402e5f" }, { @@ -749668,6 +793570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749696,9 +793600,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"03d1a0\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3816,\"z\":-63.4605},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"04a3bf\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3829,\"z\":-58.8605},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"15fec2\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3815,\"z\":-68.0481},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"16c33c\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3862,\"z\":-51.9484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1a0270\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3499,\"z\":-65.7675},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1b415c\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3876,\"z\":-47.3484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1ef9a6\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3849,\"z\":-51.9605},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"21a718\":{\"lock\":false,\"pos\":{\"x\":10.6317,\"y\":1.3775,\"z\":-81.8482},\"rot\":{\"x\":0.0208,\"y\":270.0045,\"z\":0.0168}},\"34638f\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3526,\"z\":-56.5679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"36fea3\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3809,\"z\":-65.7601},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"374087\":{\"lock\":false,\"pos\":{\"x\":19.2958,\"y\":1.3553,\"z\":-47.3736},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"402e5f\":{\"lock\":false,\"pos\":{\"x\":10.6137,\"y\":1.3748,\"z\":-91.04},\"rot\":{\"x\":0.0208,\"y\":270.0233,\"z\":0.0168}},\"4bd181\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3835,\"z\":-61.1484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"4f6da8\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3795,\"z\":-74.9481},\"rot\":{\"x\":0.0208,\"y\":270.0228,\"z\":0.0168}},\"56b997\":{\"lock\":false,\"pos\":{\"x\":24.5004,\"y\":1.3552,\"z\":-54.3186},\"rot\":{\"x\":0.0208,\"y\":269.9934,\"z\":0.0168}},\"5e46e6\":{\"lock\":false,\"pos\":{\"x\":7.0798,\"y\":1.3762,\"z\":-81.8602},\"rot\":{\"x\":0.0208,\"y\":270.0138,\"z\":0.0168}},\"5e7956\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3565,\"z\":-49.7185},\"rot\":{\"x\":0.0208,\"y\":270.0227,\"z\":0.0168}},\"65c636\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3856,\"z\":-49.6605},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"6b11de\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3863,\"z\":-47.3605},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"7f3e22\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3843,\"z\":-54.2605},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"8429dd\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3789,\"z\":-72.6601},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"8740c7\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.354,\"z\":-51.9679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"877d2f\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3781,\"z\":-79.548},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"8ef34f\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3486,\"z\":-70.3675},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"9357ea\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3782,\"z\":-74.9601},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"990ff4\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3802,\"z\":-68.0601},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"99f433\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3775,\"z\":-77.26},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"a31738\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3822,\"z\":-61.1605},\"rot\":{\"x\":0.0208,\"y\":270.027,\"z\":0.0168}},\"a5f12b\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3855,\"z\":-54.2484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"a8d27f\":{\"lock\":false,\"pos\":{\"x\":24.5004,\"y\":1.3545,\"z\":-56.6186},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b4020a\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3506,\"z\":-63.4679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b4738b\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3795,\"z\":-70.3601},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b56c07\":{\"lock\":false,\"pos\":{\"x\":10.6139,\"y\":1.3754,\"z\":-88.74},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"bdc57c\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3842,\"z\":-58.8484},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"be2769\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3572,\"z\":-47.4186},\"rot\":{\"x\":0.0208,\"y\":269.9947,\"z\":0.0168}},\"cad517\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3513,\"z\":-61.1679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ce6e0f\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3822,\"z\":-65.7481},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"cfb732\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.352,\"z\":-58.8679},\"rot\":{\"x\":0.0208,\"y\":270.0009,\"z\":0.0168}},\"d8c266\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3768,\"z\":-84.148},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"dd1134\":{\"lock\":false,\"pos\":{\"x\":7.0767,\"y\":1.3768,\"z\":-79.56},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"dfd22b\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3493,\"z\":-68.0675},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"e5dc9a\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3836,\"z\":-56.5605},\"rot\":{\"x\":0.0208,\"y\":270.0104,\"z\":0.0168}},\"e67679\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3558,\"z\":-52.0186},\"rot\":{\"x\":0.0208,\"y\":270.0227,\"z\":0.0168}},\"e6db57\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3761,\"z\":-86.448},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"ed9fda\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3533,\"z\":-54.2679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"eea23f\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3802,\"z\":-72.6481},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ef4857\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3788,\"z\":-77.248},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f389f8\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3808,\"z\":-70.3481},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"f4ae60\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3546,\"z\":-49.6679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"fd1152\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3829,\"z\":-63.4484},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"fd526e\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3849,\"z\":-56.5484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"fea5e5\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3869,\"z\":-49.6484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -749725,6 +793629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749740,12 +793646,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be2769" }, { @@ -749773,6 +793680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749788,12 +793697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e7956" }, { @@ -749821,6 +793731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749836,12 +793748,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e67679" }, { @@ -749869,6 +793782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749884,12 +793799,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56b997" }, { @@ -749917,6 +793833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749932,12 +793850,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8d27f" }, { @@ -749965,6 +793884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -749980,12 +793901,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34638f" }, { @@ -750013,6 +793935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750028,12 +793952,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed9fda" }, { @@ -750061,6 +793986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750076,12 +794003,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8740c7" }, { @@ -750109,6 +794037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750124,12 +794054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4ae60" }, { @@ -750157,6 +794088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750172,12 +794105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "374087" }, { @@ -750205,6 +794139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750220,12 +794156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfb732" }, { @@ -750253,6 +794190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750268,12 +794207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cad517" }, { @@ -750301,6 +794241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750316,12 +794258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4020a" }, { @@ -750349,6 +794292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750364,12 +794309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a0270" }, { @@ -750397,6 +794343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750412,12 +794360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfd22b" }, { @@ -750445,6 +794394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750460,12 +794411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ef34f" }, { @@ -750493,6 +794445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750508,12 +794462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b415c" }, { @@ -750541,6 +794496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750556,12 +794513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b11de" }, { @@ -750589,6 +794547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750604,12 +794564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65c636" }, { @@ -750637,6 +794598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750652,12 +794615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fea5e5" }, { @@ -750685,6 +794649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750700,12 +794666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16c33c" }, { @@ -750733,6 +794700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750748,12 +794717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ef9a6" }, { @@ -750781,6 +794751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750796,12 +794768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f3e22" }, { @@ -750829,6 +794802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750844,12 +794819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5f12b" }, { @@ -750877,6 +794853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750892,12 +794870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd526e" }, { @@ -750925,6 +794904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750940,12 +794921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5dc9a" }, { @@ -750973,6 +794955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -750988,12 +794972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04a3bf" }, { @@ -751021,6 +795006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751036,12 +795023,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdc57c" }, { @@ -751069,6 +795057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751084,12 +795074,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bd181" }, { @@ -751117,6 +795108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751132,12 +795125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a31738" }, { @@ -751165,6 +795159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751180,12 +795176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03d1a0" }, { @@ -751213,6 +795210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751228,12 +795227,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd1152" }, { @@ -751261,6 +795261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751276,12 +795278,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce6e0f" }, { @@ -751309,6 +795312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751324,12 +795329,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36fea3" }, { @@ -751357,6 +795363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751372,12 +795380,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "990ff4" }, { @@ -751405,6 +795414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751420,12 +795431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15fec2" }, { @@ -751453,6 +795465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751468,12 +795482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f389f8" }, { @@ -751501,6 +795516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751516,12 +795533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4738b" }, { @@ -751549,6 +795567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751564,12 +795584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8429dd" }, { @@ -751597,6 +795618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751612,12 +795635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eea23f" }, { @@ -751645,6 +795669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751660,12 +795686,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f6da8" }, { @@ -751693,6 +795720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751708,12 +795737,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9357ea" }, { @@ -751741,6 +795771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751756,12 +795788,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99f433" }, { @@ -751789,6 +795822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751804,12 +795839,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef4857" }, { @@ -751837,6 +795873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751852,12 +795890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "877d2f" }, { @@ -751885,6 +795924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751900,12 +795941,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd1134" }, { @@ -751933,6 +795975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751948,12 +795992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e46e6" }, { @@ -751981,6 +796026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -751996,12 +796043,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21a718" }, { @@ -752029,6 +796077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752044,12 +796094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8c266" }, { @@ -752077,6 +796128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752092,12 +796145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6db57" }, { @@ -752125,6 +796179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752140,12 +796196,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b56c07" }, { @@ -752173,6 +796230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752188,12 +796247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "402e5f" } ], @@ -752227,6 +796287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752255,9 +796317,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0587b8\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3862,\"z\":-51.9484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"0c2dad\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3565,\"z\":-49.7185},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1cf6bb\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3849,\"z\":-51.9605},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"1fef17\":{\"lock\":false,\"pos\":{\"x\":7.0767,\"y\":1.3768,\"z\":-79.56},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"25dd68\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3863,\"z\":-47.3605},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"28ae85\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3558,\"z\":-52.0186},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2ec15c\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3789,\"z\":-72.6601},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"31aa5d\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3782,\"z\":-74.9601},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"3b4524\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.352,\"z\":-58.8679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"3bfbe7\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3761,\"z\":-86.448},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"3db9b1\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3809,\"z\":-65.7601},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"3f9b51\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3829,\"z\":-63.4484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"41435f\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3836,\"z\":-56.5605},\"rot\":{\"x\":0.0208,\"y\":270.0041,\"z\":0.0168}},\"43b4be\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3855,\"z\":-54.2484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"4888b7\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3788,\"z\":-77.248},\"rot\":{\"x\":0.0208,\"y\":269.9644,\"z\":0.0168}},\"491a94\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3876,\"z\":-47.3484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"5003da\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3781,\"z\":-79.548},\"rot\":{\"x\":0.0208,\"y\":270.0189,\"z\":0.0168}},\"504b8d\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3506,\"z\":-63.4679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"584913\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3822,\"z\":-65.7481},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"590f43\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3802,\"z\":-68.0601},\"rot\":{\"x\":0.0208,\"y\":269.9971,\"z\":0.0168}},\"5d5a96\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3486,\"z\":-70.3675},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"6af5d3\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3816,\"z\":-63.4605},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"704f6e\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3815,\"z\":-68.0481},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"72e2d9\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3553,\"z\":-47.3679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"7600af\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3459,\"z\":-79.5676},\"rot\":{\"x\":0.0208,\"y\":270.014,\"z\":0.0168}},\"765ac3\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3526,\"z\":-56.5679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"7fdfd7\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3802,\"z\":-72.6481},\"rot\":{\"x\":0.0208,\"y\":269.9781,\"z\":0.0168}},\"822232\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3808,\"z\":-70.3481},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"823a3f\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3822,\"z\":-61.1605},\"rot\":{\"x\":0.0208,\"y\":269.9821,\"z\":0.0168}},\"83936c\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3856,\"z\":-49.6605},\"rot\":{\"x\":0.0208,\"y\":270.0018,\"z\":0.0168}},\"858866\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3768,\"z\":-84.148},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"86f539\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3869,\"z\":-49.6484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"9f66a7\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3572,\"z\":-47.4186},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"a2a79e\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3479,\"z\":-72.6677},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"a69be0\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3835,\"z\":-61.1484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ae8349\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3466,\"z\":-77.2676},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"bb3e67\":{\"lock\":false,\"pos\":{\"x\":10.6137,\"y\":1.3748,\"z\":-91.04},\"rot\":{\"x\":0.0208,\"y\":270.0112,\"z\":0.0168}},\"be0d74\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3472,\"z\":-74.9677},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"c1af37\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3795,\"z\":-70.3601},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"c25daa\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3775,\"z\":-77.26},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"c4a55b\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3533,\"z\":-54.2679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"cd8764\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3546,\"z\":-49.6679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"cda37d\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3795,\"z\":-74.9481},\"rot\":{\"x\":0.0208,\"y\":270.0312,\"z\":0.0168}},\"ce1967\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3499,\"z\":-65.7675},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"d21b15\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3842,\"z\":-58.8484},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"d3c7f7\":{\"lock\":false,\"pos\":{\"x\":7.0798,\"y\":1.3762,\"z\":-81.8602},\"rot\":{\"x\":0.0208,\"y\":270.0167,\"z\":0.0168}},\"d90d23\":{\"lock\":false,\"pos\":{\"x\":10.6317,\"y\":1.3775,\"z\":-81.8482},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"df8700\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.354,\"z\":-51.9679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"e0aee9\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3849,\"z\":-56.5484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"e1438c\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3843,\"z\":-54.2605},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"ea918a\":{\"lock\":false,\"pos\":{\"x\":10.6139,\"y\":1.3754,\"z\":-88.74},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"ed0aea\":{\"lock\":false,\"pos\":{\"x\":7.08,\"y\":1.3755,\"z\":-84.1596},\"rot\":{\"x\":0.0208,\"y\":270.0335,\"z\":0.0168}},\"f1bf15\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3493,\"z\":-68.0675},\"rot\":{\"x\":0.0208,\"y\":270.0292,\"z\":0.0168}},\"f6dc28\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3829,\"z\":-58.8605},\"rot\":{\"x\":0.0208,\"y\":269.9831,\"z\":0.0168}},\"f7bfec\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3513,\"z\":-61.1679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -752284,6 +796346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752299,12 +796363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f66a7" }, { @@ -752332,6 +796397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752347,12 +796414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c2dad" }, { @@ -752380,6 +796448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752395,12 +796465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "28ae85" }, { @@ -752428,6 +796499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752443,12 +796516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df8700" }, { @@ -752476,6 +796550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752491,12 +796567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd8764" }, { @@ -752524,6 +796601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752539,12 +796618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72e2d9" }, { @@ -752572,6 +796652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752587,12 +796669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4a55b" }, { @@ -752620,6 +796703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752635,12 +796720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "765ac3" }, { @@ -752668,6 +796754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752683,12 +796771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b4524" }, { @@ -752716,6 +796805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752731,12 +796822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7bfec" }, { @@ -752764,6 +796856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752779,12 +796873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "504b8d" }, { @@ -752812,6 +796907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752827,12 +796924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce1967" }, { @@ -752860,6 +796958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752875,12 +796975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1bf15" }, { @@ -752908,6 +797009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752923,12 +797026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "584913" }, { @@ -752956,6 +797060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -752971,12 +797077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3db9b1" }, { @@ -753004,6 +797111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753019,12 +797128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6af5d3" }, { @@ -753052,6 +797162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753067,12 +797179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f9b51" }, { @@ -753100,6 +797213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753115,12 +797230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a69be0" }, { @@ -753148,6 +797264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753163,12 +797281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "823a3f" }, { @@ -753196,6 +797315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753211,12 +797332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6dc28" }, { @@ -753244,6 +797366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753259,12 +797383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d21b15" }, { @@ -753292,6 +797417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753307,12 +797434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0aee9" }, { @@ -753340,6 +797468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753355,12 +797485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41435f" }, { @@ -753388,6 +797519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753403,12 +797536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1438c" }, { @@ -753436,6 +797570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753451,12 +797587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43b4be" }, { @@ -753484,6 +797621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753499,12 +797638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0587b8" }, { @@ -753532,6 +797672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753547,12 +797689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cf6bb" }, { @@ -753580,6 +797723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753595,12 +797740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83936c" }, { @@ -753628,6 +797774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753643,12 +797791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86f539" }, { @@ -753676,6 +797825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753691,12 +797842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "491a94" }, { @@ -753724,6 +797876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753739,12 +797893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25dd68" }, { @@ -753772,6 +797927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753787,12 +797944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "590f43" }, { @@ -753820,6 +797978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753835,12 +797995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "704f6e" }, { @@ -753868,6 +798029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753883,12 +798046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d5a96" }, { @@ -753916,6 +798080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753931,12 +798097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2a79e" }, { @@ -753964,6 +798131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -753979,12 +798148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be0d74" }, { @@ -754012,6 +798182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754027,12 +798199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae8349" }, { @@ -754060,6 +798233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754075,12 +798250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7600af" }, { @@ -754108,6 +798284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754123,12 +798301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "822232" }, { @@ -754156,6 +798335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754171,12 +798352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1af37" }, { @@ -754204,6 +798386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754219,12 +798403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ec15c" }, { @@ -754252,6 +798437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754267,12 +798454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fdfd7" }, { @@ -754300,6 +798488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754315,12 +798505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cda37d" }, { @@ -754348,6 +798539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754363,12 +798556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31aa5d" }, { @@ -754396,6 +798590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754411,12 +798607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c25daa" }, { @@ -754444,6 +798641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754459,12 +798658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4888b7" }, { @@ -754492,6 +798692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754507,12 +798709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5003da" }, { @@ -754540,6 +798743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754555,12 +798760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fef17" }, { @@ -754588,6 +798794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754603,12 +798811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3c7f7" }, { @@ -754636,6 +798845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754651,12 +798862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d90d23" }, { @@ -754684,6 +798896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754699,12 +798913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "858866" }, { @@ -754732,6 +798947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754747,12 +798964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed0aea" }, { @@ -754780,6 +798998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754795,12 +799015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bfbe7" }, { @@ -754828,6 +799049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754843,12 +799066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea918a" }, { @@ -754876,6 +799100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754891,12 +799117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb3e67" }, { @@ -754924,6 +799151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754952,9 +799181,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0587b8\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3862,\"z\":-51.9484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"0c2dad\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3565,\"z\":-49.7185},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1cf6bb\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3849,\"z\":-51.9605},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"1fef17\":{\"lock\":false,\"pos\":{\"x\":7.0767,\"y\":1.3768,\"z\":-79.56},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"25dd68\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3863,\"z\":-47.3605},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"28ae85\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3558,\"z\":-52.0186},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2ec15c\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3789,\"z\":-72.6601},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"31aa5d\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3782,\"z\":-74.9601},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"3b4524\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.352,\"z\":-58.8679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"3bfbe7\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3761,\"z\":-86.448},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"3db9b1\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3809,\"z\":-65.7601},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"3f9b51\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3829,\"z\":-63.4484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"41435f\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3836,\"z\":-56.5605},\"rot\":{\"x\":0.0208,\"y\":270.0041,\"z\":0.0168}},\"43b4be\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3855,\"z\":-54.2484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"4888b7\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3788,\"z\":-77.248},\"rot\":{\"x\":0.0208,\"y\":269.9644,\"z\":0.0168}},\"491a94\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3876,\"z\":-47.3484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"5003da\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3781,\"z\":-79.548},\"rot\":{\"x\":0.0208,\"y\":270.0189,\"z\":0.0168}},\"504b8d\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3506,\"z\":-63.4679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"584913\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3822,\"z\":-65.7481},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"590f43\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3802,\"z\":-68.0601},\"rot\":{\"x\":0.0208,\"y\":269.9971,\"z\":0.0168}},\"5d5a96\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3486,\"z\":-70.3675},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"6af5d3\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3816,\"z\":-63.4605},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"704f6e\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3815,\"z\":-68.0481},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"72e2d9\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3553,\"z\":-47.3679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"7600af\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3459,\"z\":-79.5676},\"rot\":{\"x\":0.0208,\"y\":270.014,\"z\":0.0168}},\"765ac3\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3526,\"z\":-56.5679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"7fdfd7\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3802,\"z\":-72.6481},\"rot\":{\"x\":0.0208,\"y\":269.9781,\"z\":0.0168}},\"822232\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3808,\"z\":-70.3481},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"823a3f\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3822,\"z\":-61.1605},\"rot\":{\"x\":0.0208,\"y\":269.9821,\"z\":0.0168}},\"83936c\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3856,\"z\":-49.6605},\"rot\":{\"x\":0.0208,\"y\":270.0018,\"z\":0.0168}},\"858866\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3768,\"z\":-84.148},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"86f539\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3869,\"z\":-49.6484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"9f66a7\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3572,\"z\":-47.4186},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"a2a79e\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3479,\"z\":-72.6677},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"a69be0\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3835,\"z\":-61.1484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"ae8349\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3466,\"z\":-77.2676},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"bb3e67\":{\"lock\":false,\"pos\":{\"x\":10.6137,\"y\":1.3748,\"z\":-91.04},\"rot\":{\"x\":0.0208,\"y\":270.0112,\"z\":0.0168}},\"be0d74\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3472,\"z\":-74.9677},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"c1af37\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3795,\"z\":-70.3601},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"c25daa\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3775,\"z\":-77.26},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"c4a55b\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3533,\"z\":-54.2679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"cd8764\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3546,\"z\":-49.6679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"cda37d\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3795,\"z\":-74.9481},\"rot\":{\"x\":0.0208,\"y\":270.0312,\"z\":0.0168}},\"ce1967\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3499,\"z\":-65.7675},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"d21b15\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3842,\"z\":-58.8484},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"d3c7f7\":{\"lock\":false,\"pos\":{\"x\":7.0798,\"y\":1.3762,\"z\":-81.8602},\"rot\":{\"x\":0.0208,\"y\":270.0167,\"z\":0.0168}},\"d90d23\":{\"lock\":false,\"pos\":{\"x\":10.6317,\"y\":1.3775,\"z\":-81.8482},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"df8700\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.354,\"z\":-51.9679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"e0aee9\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3849,\"z\":-56.5484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"e1438c\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3843,\"z\":-54.2605},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"ea918a\":{\"lock\":false,\"pos\":{\"x\":10.6139,\"y\":1.3754,\"z\":-88.74},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"ed0aea\":{\"lock\":false,\"pos\":{\"x\":7.08,\"y\":1.3755,\"z\":-84.1596},\"rot\":{\"x\":0.0208,\"y\":270.0335,\"z\":0.0168}},\"f1bf15\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3493,\"z\":-68.0675},\"rot\":{\"x\":0.0208,\"y\":270.0292,\"z\":0.0168}},\"f6dc28\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3829,\"z\":-58.8605},\"rot\":{\"x\":0.0208,\"y\":269.9831,\"z\":0.0168}},\"f7bfec\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3513,\"z\":-61.1679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -754981,6 +799210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -754996,12 +799227,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f66a7" }, { @@ -755029,6 +799261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755044,12 +799278,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c2dad" }, { @@ -755077,6 +799312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755092,12 +799329,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "28ae85" }, { @@ -755125,6 +799363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755140,12 +799380,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df8700" }, { @@ -755173,6 +799414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755188,12 +799431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd8764" }, { @@ -755221,6 +799465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755236,12 +799482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72e2d9" }, { @@ -755269,6 +799516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755284,12 +799533,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4a55b" }, { @@ -755317,6 +799567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755332,12 +799584,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "765ac3" }, { @@ -755365,6 +799618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755380,12 +799635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b4524" }, { @@ -755413,6 +799669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755428,12 +799686,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7bfec" }, { @@ -755461,6 +799720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755476,12 +799737,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "504b8d" }, { @@ -755509,6 +799771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755524,12 +799788,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce1967" }, { @@ -755557,6 +799822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755572,12 +799839,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1bf15" }, { @@ -755605,6 +799873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755620,12 +799890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "584913" }, { @@ -755653,6 +799924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755668,12 +799941,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3db9b1" }, { @@ -755701,6 +799975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755716,12 +799992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6af5d3" }, { @@ -755749,6 +800026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755764,12 +800043,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f9b51" }, { @@ -755797,6 +800077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755812,12 +800094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a69be0" }, { @@ -755845,6 +800128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755860,12 +800145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "823a3f" }, { @@ -755893,6 +800179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755908,12 +800196,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6dc28" }, { @@ -755941,6 +800230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -755956,12 +800247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d21b15" }, { @@ -755989,6 +800281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756004,12 +800298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0aee9" }, { @@ -756037,6 +800332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756052,12 +800349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41435f" }, { @@ -756085,6 +800383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756100,12 +800400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1438c" }, { @@ -756133,6 +800434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756148,12 +800451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43b4be" }, { @@ -756181,6 +800485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756196,12 +800502,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0587b8" }, { @@ -756229,6 +800536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756244,12 +800553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cf6bb" }, { @@ -756277,6 +800587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756292,12 +800604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83936c" }, { @@ -756325,6 +800638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756340,12 +800655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86f539" }, { @@ -756373,6 +800689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756388,12 +800706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "491a94" }, { @@ -756421,6 +800740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756436,12 +800757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25dd68" }, { @@ -756469,6 +800791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756484,12 +800808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "590f43" }, { @@ -756517,6 +800842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756532,12 +800859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "704f6e" }, { @@ -756565,6 +800893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756580,12 +800910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d5a96" }, { @@ -756613,6 +800944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756628,12 +800961,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2a79e" }, { @@ -756661,6 +800995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756676,12 +801012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be0d74" }, { @@ -756709,6 +801046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756724,12 +801063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae8349" }, { @@ -756757,6 +801097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756772,12 +801114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7600af" }, { @@ -756805,6 +801148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756820,12 +801165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "822232" }, { @@ -756853,6 +801199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756868,12 +801216,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1af37" }, { @@ -756901,6 +801250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756916,12 +801267,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ec15c" }, { @@ -756949,6 +801301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -756964,12 +801318,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fdfd7" }, { @@ -756997,6 +801352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757012,12 +801369,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cda37d" }, { @@ -757045,6 +801403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757060,12 +801420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31aa5d" }, { @@ -757093,6 +801454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757108,12 +801471,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c25daa" }, { @@ -757141,6 +801505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757156,12 +801522,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4888b7" }, { @@ -757189,6 +801556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757204,12 +801573,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5003da" }, { @@ -757237,6 +801607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757252,12 +801624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fef17" }, { @@ -757285,6 +801658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757300,12 +801675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3c7f7" }, { @@ -757333,6 +801709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757348,12 +801726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d90d23" }, { @@ -757381,6 +801760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757396,12 +801777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "858866" }, { @@ -757429,6 +801811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757444,12 +801828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed0aea" }, { @@ -757477,6 +801862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757492,12 +801879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bfbe7" }, { @@ -757525,6 +801913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757540,12 +801930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea918a" }, { @@ -757573,6 +801964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757588,12 +801981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb3e67" } ], @@ -757627,6 +802021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757655,9 +802051,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"030179\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3822,\"z\":-65.7481},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"04f94b\":{\"lock\":false,\"pos\":{\"x\":7.0767,\"y\":1.3768,\"z\":-79.56},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"12b831\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3815,\"z\":-68.0481},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"24e9e7\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3842,\"z\":-58.8484},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"25d0c7\":{\"lock\":false,\"pos\":{\"x\":10.6139,\"y\":1.3754,\"z\":-88.74},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"275caa\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3506,\"z\":-63.4679},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"2a6577\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3795,\"z\":-74.9481},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"2b3765\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3789,\"z\":-72.6601},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"2c40b6\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3822,\"z\":-61.1605},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"2e932d\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3486,\"z\":-70.3675},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"2f833c\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3802,\"z\":-68.0601},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"31cebe\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.352,\"z\":-58.8679},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"31e766\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3829,\"z\":-63.4484},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"31f742\":{\"lock\":false,\"pos\":{\"x\":10.6317,\"y\":1.3775,\"z\":-81.8482},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"34dc0e\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3829,\"z\":-58.8605},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"42e258\":{\"lock\":false,\"pos\":{\"x\":10.6244,\"y\":1.3761,\"z\":-86.4276},\"rot\":{\"x\":0.0209,\"y\":269.6711,\"z\":0.0167}},\"480577\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3795,\"z\":-70.3601},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"4d7114\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3533,\"z\":-54.2679},\"rot\":{\"x\":0.0208,\"y\":270.0014,\"z\":0.0168}},\"588be0\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3855,\"z\":-54.2484},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"5c775c\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3869,\"z\":-49.6484},\"rot\":{\"x\":0.0208,\"y\":270.006,\"z\":0.0168}},\"5ee980\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3546,\"z\":-49.6679},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"63156b\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3863,\"z\":-47.3605},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"64f190\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3843,\"z\":-54.2605},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"6b151e\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3802,\"z\":-72.6481},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"7056b3\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3558,\"z\":-52.0186},\"rot\":{\"x\":0.0208,\"y\":269.971,\"z\":0.0168}},\"7358db\":{\"lock\":false,\"pos\":{\"x\":10.6137,\"y\":1.3748,\"z\":-91.04},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"760825\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3809,\"z\":-65.7601},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"77fce5\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3553,\"z\":-47.3679},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"7ce94b\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3526,\"z\":-56.5679},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"80a935\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3775,\"z\":-77.26},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"83fe7a\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3493,\"z\":-68.0675},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"8729dc\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3849,\"z\":-56.5484},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"9082dd\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3836,\"z\":-56.5605},\"rot\":{\"x\":0.0208,\"y\":269.9716,\"z\":0.0168}},\"941d4e\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3781,\"z\":-79.548},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"9ad0d0\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.354,\"z\":-51.9679},\"rot\":{\"x\":0.0208,\"y\":270.0023,\"z\":0.0168}},\"9dc10d\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3472,\"z\":-74.9677},\"rot\":{\"x\":0.0208,\"y\":270.0149,\"z\":0.0168}},\"b65fe8\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3513,\"z\":-61.1679},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"bf7959\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3835,\"z\":-61.1485},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"c11ecd\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3816,\"z\":-63.4605},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"c1b8cf\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3788,\"z\":-77.248},\"rot\":{\"x\":0.0208,\"y\":269.9976,\"z\":0.0168}},\"c6b53c\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3849,\"z\":-51.9605},\"rot\":{\"x\":0.0208,\"y\":270.0006,\"z\":0.0168}},\"d74e2e\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3856,\"z\":-49.6605},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"e2ec72\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3572,\"z\":-47.4186},\"rot\":{\"x\":0.0208,\"y\":269.9956,\"z\":0.0168}},\"ec299c\":{\"lock\":false,\"pos\":{\"x\":10.6295,\"y\":1.3768,\"z\":-84.1523},\"rot\":{\"x\":0.0209,\"y\":269.7059,\"z\":0.0167}},\"ec6c05\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3565,\"z\":-49.7185},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"f10dfb\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3499,\"z\":-65.7675},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"f5cdef\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3876,\"z\":-47.3484},\"rot\":{\"x\":0.0208,\"y\":269.9714,\"z\":0.0168}},\"f79872\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3808,\"z\":-70.3481},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"feaf98\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3782,\"z\":-74.9601},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"feb59d\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3862,\"z\":-51.9484},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"ff31e9\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3479,\"z\":-72.6677},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -757684,6 +802080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757699,12 +802097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2ec72" }, { @@ -757732,6 +802131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757747,12 +802148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec6c05" }, { @@ -757780,6 +802182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757795,12 +802199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7056b3" }, { @@ -757828,6 +802233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757843,12 +802250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ad0d0" }, { @@ -757876,6 +802284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757891,12 +802301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ee980" }, { @@ -757924,6 +802335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757939,12 +802352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77fce5" }, { @@ -757972,6 +802386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -757987,12 +802403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d7114" }, { @@ -758020,6 +802437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758035,12 +802454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ce94b" }, { @@ -758068,6 +802488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758083,12 +802505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31cebe" }, { @@ -758116,6 +802539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758131,12 +802556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b65fe8" }, { @@ -758164,6 +802590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758179,12 +802607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "275caa" }, { @@ -758212,6 +802641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758227,12 +802658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f10dfb" }, { @@ -758260,6 +802692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758275,12 +802709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83fe7a" }, { @@ -758308,6 +802743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758323,12 +802760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e932d" }, { @@ -758356,6 +802794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758371,12 +802811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff31e9" }, { @@ -758404,6 +802845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758419,12 +802862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dc10d" }, { @@ -758452,6 +802896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758467,12 +802913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7358db" }, { @@ -758500,6 +802947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758515,12 +802964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25d0c7" }, { @@ -758548,6 +802998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758563,12 +803015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42e258" }, { @@ -758596,6 +803049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758611,12 +803066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec299c" }, { @@ -758644,6 +803100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758659,12 +803117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31f742" }, { @@ -758692,6 +803151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758707,12 +803168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "941d4e" }, { @@ -758740,6 +803202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758755,12 +803219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04f94b" }, { @@ -758788,6 +803253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758803,12 +803270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80a935" }, { @@ -758836,6 +803304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758851,12 +803321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1b8cf" }, { @@ -758884,6 +803355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758899,12 +803372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a6577" }, { @@ -758932,6 +803406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758947,12 +803423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "feaf98" }, { @@ -758980,6 +803457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -758995,12 +803474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b3765" }, { @@ -759028,6 +803508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759043,12 +803525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "480577" }, { @@ -759076,6 +803559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759091,12 +803576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f833c" }, { @@ -759124,6 +803610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759139,12 +803627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "760825" }, { @@ -759172,6 +803661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759187,12 +803678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c11ecd" }, { @@ -759220,6 +803712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759235,12 +803729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c40b6" }, { @@ -759268,6 +803763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759283,12 +803780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34dc0e" }, { @@ -759316,6 +803814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759331,12 +803831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e9e7" }, { @@ -759364,6 +803865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759379,12 +803882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31e766" }, { @@ -759412,6 +803916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759427,12 +803933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf7959" }, { @@ -759460,6 +803967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759475,12 +803984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "030179" }, { @@ -759508,6 +804018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759523,12 +804035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79872" }, { @@ -759556,6 +804069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759571,12 +804086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12b831" }, { @@ -759604,6 +804120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759619,12 +804137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b151e" }, { @@ -759652,6 +804171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759667,12 +804188,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8729dc" }, { @@ -759700,6 +804222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759715,12 +804239,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9082dd" }, { @@ -759748,6 +804273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759763,12 +804290,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64f190" }, { @@ -759796,6 +804324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759811,12 +804341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6b53c" }, { @@ -759844,6 +804375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759859,12 +804392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d74e2e" }, { @@ -759892,6 +804426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759907,12 +804443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63156b" }, { @@ -759940,6 +804477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -759955,12 +804494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5cdef" }, { @@ -759988,6 +804528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760003,12 +804545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c775c" }, { @@ -760036,6 +804579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760051,12 +804596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "feb59d" }, { @@ -760084,6 +804630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760099,12 +804647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "588be0" }, { @@ -760132,6 +804681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760160,9 +804711,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"030179\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3822,\"z\":-65.7481},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"04f94b\":{\"lock\":false,\"pos\":{\"x\":7.0767,\"y\":1.3768,\"z\":-79.56},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"12b831\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3815,\"z\":-68.0481},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"24e9e7\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3842,\"z\":-58.8484},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"25d0c7\":{\"lock\":false,\"pos\":{\"x\":10.6139,\"y\":1.3754,\"z\":-88.74},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"275caa\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3506,\"z\":-63.4679},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"2a6577\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3795,\"z\":-74.9481},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"2b3765\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3789,\"z\":-72.6601},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"2c40b6\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3822,\"z\":-61.1605},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"2e932d\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3486,\"z\":-70.3675},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"2f833c\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3802,\"z\":-68.0601},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"31cebe\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.352,\"z\":-58.8679},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"31e766\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3829,\"z\":-63.4484},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"31f742\":{\"lock\":false,\"pos\":{\"x\":10.6317,\"y\":1.3775,\"z\":-81.8482},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"34dc0e\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3829,\"z\":-58.8605},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"42e258\":{\"lock\":false,\"pos\":{\"x\":10.6244,\"y\":1.3761,\"z\":-86.4276},\"rot\":{\"x\":0.0209,\"y\":269.6711,\"z\":0.0167}},\"480577\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3795,\"z\":-70.3601},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"4d7114\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3533,\"z\":-54.2679},\"rot\":{\"x\":0.0208,\"y\":270.0014,\"z\":0.0168}},\"588be0\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3855,\"z\":-54.2484},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"5c775c\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3869,\"z\":-49.6484},\"rot\":{\"x\":0.0208,\"y\":270.006,\"z\":0.0168}},\"5ee980\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3546,\"z\":-49.6679},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"63156b\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3863,\"z\":-47.3605},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"64f190\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3843,\"z\":-54.2605},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"6b151e\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3802,\"z\":-72.6481},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"7056b3\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3558,\"z\":-52.0186},\"rot\":{\"x\":0.0208,\"y\":269.971,\"z\":0.0168}},\"7358db\":{\"lock\":false,\"pos\":{\"x\":10.6137,\"y\":1.3748,\"z\":-91.04},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"760825\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3809,\"z\":-65.7601},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"77fce5\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3553,\"z\":-47.3679},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"7ce94b\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3526,\"z\":-56.5679},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"80a935\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3775,\"z\":-77.26},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"83fe7a\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3493,\"z\":-68.0675},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"8729dc\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3849,\"z\":-56.5484},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"9082dd\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3836,\"z\":-56.5605},\"rot\":{\"x\":0.0208,\"y\":269.9716,\"z\":0.0168}},\"941d4e\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3781,\"z\":-79.548},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"9ad0d0\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.354,\"z\":-51.9679},\"rot\":{\"x\":0.0208,\"y\":270.0023,\"z\":0.0168}},\"9dc10d\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3472,\"z\":-74.9677},\"rot\":{\"x\":0.0208,\"y\":270.0149,\"z\":0.0168}},\"b65fe8\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3513,\"z\":-61.1679},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"bf7959\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3835,\"z\":-61.1485},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"c11ecd\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3816,\"z\":-63.4605},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"c1b8cf\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3788,\"z\":-77.248},\"rot\":{\"x\":0.0208,\"y\":269.9976,\"z\":0.0168}},\"c6b53c\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3849,\"z\":-51.9605},\"rot\":{\"x\":0.0208,\"y\":270.0006,\"z\":0.0168}},\"d74e2e\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3856,\"z\":-49.6605},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"e2ec72\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3572,\"z\":-47.4186},\"rot\":{\"x\":0.0208,\"y\":269.9956,\"z\":0.0168}},\"ec299c\":{\"lock\":false,\"pos\":{\"x\":10.6295,\"y\":1.3768,\"z\":-84.1523},\"rot\":{\"x\":0.0209,\"y\":269.7059,\"z\":0.0167}},\"ec6c05\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3565,\"z\":-49.7185},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"f10dfb\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3499,\"z\":-65.7675},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"f5cdef\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3876,\"z\":-47.3484},\"rot\":{\"x\":0.0208,\"y\":269.9714,\"z\":0.0168}},\"f79872\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3808,\"z\":-70.3481},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"feaf98\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3782,\"z\":-74.9601},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"feb59d\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3862,\"z\":-51.9484},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"ff31e9\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3479,\"z\":-72.6677},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -760189,6 +804740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760204,12 +804757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2ec72" }, { @@ -760237,6 +804791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760252,12 +804808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec6c05" }, { @@ -760285,6 +804842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760300,12 +804859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7056b3" }, { @@ -760333,6 +804893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760348,12 +804910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ad0d0" }, { @@ -760381,6 +804944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760396,12 +804961,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ee980" }, { @@ -760429,6 +804995,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760444,12 +805012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77fce5" }, { @@ -760477,6 +805046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760492,12 +805063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d7114" }, { @@ -760525,6 +805097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760540,12 +805114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ce94b" }, { @@ -760573,6 +805148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760588,12 +805165,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31cebe" }, { @@ -760621,6 +805199,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760636,12 +805216,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b65fe8" }, { @@ -760669,6 +805250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760684,12 +805267,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "275caa" }, { @@ -760717,6 +805301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760732,12 +805318,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f10dfb" }, { @@ -760765,6 +805352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760780,12 +805369,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83fe7a" }, { @@ -760813,6 +805403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760828,12 +805420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e932d" }, { @@ -760861,6 +805454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760876,12 +805471,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff31e9" }, { @@ -760909,6 +805505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760924,12 +805522,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dc10d" }, { @@ -760957,6 +805556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -760972,12 +805573,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7358db" }, { @@ -761005,6 +805607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761020,12 +805624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25d0c7" }, { @@ -761053,6 +805658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761068,12 +805675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42e258" }, { @@ -761101,6 +805709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761116,12 +805726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec299c" }, { @@ -761149,6 +805760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761164,12 +805777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31f742" }, { @@ -761197,6 +805811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761212,12 +805828,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "941d4e" }, { @@ -761245,6 +805862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761260,12 +805879,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04f94b" }, { @@ -761293,6 +805913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761308,12 +805930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80a935" }, { @@ -761341,6 +805964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761356,12 +805981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1b8cf" }, { @@ -761389,6 +806015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761404,12 +806032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a6577" }, { @@ -761437,6 +806066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761452,12 +806083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "feaf98" }, { @@ -761485,6 +806117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761500,12 +806134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b3765" }, { @@ -761533,6 +806168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761548,12 +806185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "480577" }, { @@ -761581,6 +806219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761596,12 +806236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f833c" }, { @@ -761629,6 +806270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761644,12 +806287,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "760825" }, { @@ -761677,6 +806321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761692,12 +806338,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c11ecd" }, { @@ -761725,6 +806372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761740,12 +806389,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c40b6" }, { @@ -761773,6 +806423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761788,12 +806440,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34dc0e" }, { @@ -761821,6 +806474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761836,12 +806491,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e9e7" }, { @@ -761869,6 +806525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761884,12 +806542,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31e766" }, { @@ -761917,6 +806576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761932,12 +806593,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf7959" }, { @@ -761965,6 +806627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -761980,12 +806644,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "030179" }, { @@ -762013,6 +806678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762028,12 +806695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f79872" }, { @@ -762061,6 +806729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762076,12 +806746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12b831" }, { @@ -762109,6 +806780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762124,12 +806797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b151e" }, { @@ -762157,6 +806831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762172,12 +806848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8729dc" }, { @@ -762205,6 +806882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762220,12 +806899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9082dd" }, { @@ -762253,6 +806933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762268,12 +806950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64f190" }, { @@ -762301,6 +806984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762316,12 +807001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6b53c" }, { @@ -762349,6 +807035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762364,12 +807052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d74e2e" }, { @@ -762397,6 +807086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762412,12 +807103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63156b" }, { @@ -762445,6 +807137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762460,12 +807154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5cdef" }, { @@ -762493,6 +807188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762508,12 +807205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c775c" }, { @@ -762541,6 +807239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762556,12 +807256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "feb59d" }, { @@ -762589,6 +807290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762604,12 +807307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "588be0" } ], @@ -762643,6 +807347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762671,9 +807377,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0012ed\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3459,\"z\":-79.5676},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"01f114\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3876,\"z\":-47.3484},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"038a3a\":{\"lock\":false,\"pos\":{\"x\":10.6317,\"y\":1.3775,\"z\":-81.8482},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"06e14d\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3513,\"z\":-61.1679},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"071c48\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3849,\"z\":-56.5484},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"11aa2c\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3815,\"z\":-68.0481},\"rot\":{\"x\":0.0208,\"y\":270.0028,\"z\":0.0168}},\"190831\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.352,\"z\":-58.8679},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"1fabe7\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3506,\"z\":-63.4679},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"26d107\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3822,\"z\":-65.7481},\"rot\":{\"x\":0.0208,\"y\":269.9899,\"z\":0.0168}},\"2a8b6a\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3855,\"z\":-54.2484},\"rot\":{\"x\":0.0208,\"y\":270.0038,\"z\":0.0168}},\"353d4e\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3533,\"z\":-54.2679},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"3c29ae\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3781,\"z\":-79.548},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"3c635c\":{\"lock\":false,\"pos\":{\"x\":24.5004,\"y\":1.3545,\"z\":-56.6186},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"49e21a\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3862,\"z\":-51.9484},\"rot\":{\"x\":0.0208,\"y\":269.9889,\"z\":0.0168}},\"4aebc0\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3843,\"z\":-54.2605},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"4c0449\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3493,\"z\":-68.0675},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"4f7817\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3526,\"z\":-56.5679},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"608472\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3829,\"z\":-63.4484},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"6a6f9a\":{\"lock\":false,\"pos\":{\"x\":10.6139,\"y\":1.3754,\"z\":-88.74},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"6ef1de\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3499,\"z\":-65.7675},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"73e595\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3479,\"z\":-72.6677},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"74a9a7\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3836,\"z\":-56.5605},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"77b6b2\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3538,\"z\":-58.9186},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"7881f2\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3761,\"z\":-86.448},\"rot\":{\"x\":0.0208,\"y\":269.9933,\"z\":0.0168}},\"7a9704\":{\"lock\":false,\"pos\":{\"x\":19.3457,\"y\":1.3452,\"z\":-81.8678},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"7ab8d7\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3863,\"z\":-47.3605},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"7d0c7e\":{\"lock\":false,\"pos\":{\"x\":19.3435,\"y\":1.3445,\"z\":-84.1675},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"84a867\":{\"lock\":false,\"pos\":{\"x\":19.3436,\"y\":1.3466,\"z\":-77.2676},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"8ff7ba\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3869,\"z\":-49.6484},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"928e1e\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3835,\"z\":-61.1484},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"93d418\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3572,\"z\":-47.4186},\"rot\":{\"x\":0.0208,\"y\":270.0088,\"z\":0.0168}},\"9fcffb\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3802,\"z\":-72.6481},\"rot\":{\"x\":0.0208,\"y\":270.0006,\"z\":0.0168}},\"a0c0ae\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3842,\"z\":-58.8484},\"rot\":{\"x\":0.0208,\"y\":270.0039,\"z\":0.0168}},\"a263e2\":{\"lock\":false,\"pos\":{\"x\":19.3279,\"y\":1.3432,\"z\":-88.757},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"a8218c\":{\"lock\":false,\"pos\":{\"x\":24.5004,\"y\":1.3552,\"z\":-54.3186},\"rot\":{\"x\":0.0208,\"y\":270.0042,\"z\":0.0168}},\"a8f780\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3565,\"z\":-49.7185},\"rot\":{\"x\":0.0208,\"y\":270.0185,\"z\":0.0168}},\"ac7359\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3546,\"z\":-49.6679},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"b0cb8c\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.354,\"z\":-51.9679},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"b74c47\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3439,\"z\":-86.4676},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"c1be23\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3788,\"z\":-77.248},\"rot\":{\"x\":0.0208,\"y\":269.9709,\"z\":0.0168}},\"c2a019\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3553,\"z\":-47.3679},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"c54fd2\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3795,\"z\":-74.9481},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"c580f5\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3856,\"z\":-49.6605},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"cb2302\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3849,\"z\":-51.9605},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"d051b3\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3558,\"z\":-52.0186},\"rot\":{\"x\":0.0208,\"y\":270.0076,\"z\":0.0168}},\"d60500\":{\"lock\":false,\"pos\":{\"x\":10.6137,\"y\":1.3748,\"z\":-91.04},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"e24027\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3808,\"z\":-70.3481},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"e32c1b\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3486,\"z\":-70.3675},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"e4a963\":{\"lock\":false,\"pos\":{\"x\":19.3436,\"y\":1.3472,\"z\":-74.9677},\"rot\":{\"x\":0.0208,\"y\":269.9984,\"z\":0.0168}},\"e56f25\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3768,\"z\":-84.148},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -762700,6 +807406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762715,12 +807423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93d418" }, { @@ -762748,6 +807457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762763,12 +807474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8f780" }, { @@ -762796,6 +807508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762811,12 +807525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d051b3" }, { @@ -762844,6 +807559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762859,12 +807576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8218c" }, { @@ -762892,6 +807610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762907,12 +807627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c635c" }, { @@ -762940,6 +807661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -762955,12 +807678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77b6b2" }, { @@ -762988,6 +807712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763003,12 +807729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2a019" }, { @@ -763036,6 +807763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763051,12 +807780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac7359" }, { @@ -763084,6 +807814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763099,12 +807831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0cb8c" }, { @@ -763132,6 +807865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763147,12 +807882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "353d4e" }, { @@ -763180,6 +807916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763195,12 +807933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f7817" }, { @@ -763228,6 +807967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763243,12 +807984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "190831" }, { @@ -763276,6 +808018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763291,12 +808035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06e14d" }, { @@ -763324,6 +808069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763339,12 +808086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fabe7" }, { @@ -763372,6 +808120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763387,12 +808137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ef1de" }, { @@ -763420,6 +808171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763435,12 +808188,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c0449" }, { @@ -763468,6 +808222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763483,12 +808239,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e32c1b" }, { @@ -763516,6 +808273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763531,12 +808290,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73e595" }, { @@ -763564,6 +808324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763579,12 +808341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4a963" }, { @@ -763612,6 +808375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763627,12 +808392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84a867" }, { @@ -763660,6 +808426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763675,12 +808443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0012ed" }, { @@ -763708,6 +808477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763723,12 +808494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a9704" }, { @@ -763756,6 +808528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763771,12 +808545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d0c7e" }, { @@ -763804,6 +808579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763819,12 +808596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b74c47" }, { @@ -763852,6 +808630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763867,12 +808647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a263e2" }, { @@ -763900,6 +808681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763915,12 +808698,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d60500" }, { @@ -763948,6 +808732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -763963,12 +808749,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a6f9a" }, { @@ -763996,6 +808783,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764011,12 +808800,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7881f2" }, { @@ -764044,6 +808834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764059,12 +808851,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e56f25" }, { @@ -764092,6 +808885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764107,12 +808902,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "038a3a" }, { @@ -764140,6 +808936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764155,12 +808953,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c29ae" }, { @@ -764188,6 +808987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764203,12 +809004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1be23" }, { @@ -764236,6 +809038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764251,12 +809055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c54fd2" }, { @@ -764284,6 +809089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764299,12 +809106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fcffb" }, { @@ -764332,6 +809140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764347,12 +809157,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e24027" }, { @@ -764380,6 +809191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764395,12 +809208,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11aa2c" }, { @@ -764428,6 +809242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764443,12 +809259,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26d107" }, { @@ -764476,6 +809293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764491,12 +809310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "608472" }, { @@ -764524,6 +809344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764539,12 +809361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "928e1e" }, { @@ -764572,6 +809395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764587,12 +809412,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0c0ae" }, { @@ -764620,6 +809446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764635,12 +809463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "071c48" }, { @@ -764668,6 +809497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764683,12 +809514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a8b6a" }, { @@ -764716,6 +809548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764731,12 +809565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49e21a" }, { @@ -764764,6 +809599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764779,12 +809616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ff7ba" }, { @@ -764812,6 +809650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764827,12 +809667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01f114" }, { @@ -764860,6 +809701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764875,12 +809718,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ab8d7" }, { @@ -764908,6 +809752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764923,12 +809769,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c580f5" }, { @@ -764956,6 +809803,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -764971,12 +809820,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb2302" }, { @@ -765004,6 +809854,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765019,12 +809871,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4aebc0" }, { @@ -765052,6 +809905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765067,12 +809922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a9a7" }, { @@ -765100,6 +809956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765128,9 +809986,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0012ed\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3459,\"z\":-79.5676},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"01f114\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3876,\"z\":-47.3484},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"038a3a\":{\"lock\":false,\"pos\":{\"x\":10.6317,\"y\":1.3775,\"z\":-81.8482},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"06e14d\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3513,\"z\":-61.1679},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"071c48\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3849,\"z\":-56.5484},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"11aa2c\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3815,\"z\":-68.0481},\"rot\":{\"x\":0.0208,\"y\":270.0028,\"z\":0.0168}},\"190831\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.352,\"z\":-58.8679},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"1fabe7\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3506,\"z\":-63.4679},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"26d107\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3822,\"z\":-65.7481},\"rot\":{\"x\":0.0208,\"y\":269.9899,\"z\":0.0168}},\"2a8b6a\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3855,\"z\":-54.2484},\"rot\":{\"x\":0.0208,\"y\":270.0038,\"z\":0.0168}},\"353d4e\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3533,\"z\":-54.2679},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"3c29ae\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3781,\"z\":-79.548},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"3c635c\":{\"lock\":false,\"pos\":{\"x\":24.5004,\"y\":1.3545,\"z\":-56.6186},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"49e21a\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3862,\"z\":-51.9484},\"rot\":{\"x\":0.0208,\"y\":269.9889,\"z\":0.0168}},\"4aebc0\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3843,\"z\":-54.2605},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"4c0449\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3493,\"z\":-68.0675},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"4f7817\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3526,\"z\":-56.5679},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"608472\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3829,\"z\":-63.4484},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"6a6f9a\":{\"lock\":false,\"pos\":{\"x\":10.6139,\"y\":1.3754,\"z\":-88.74},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"6ef1de\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3499,\"z\":-65.7675},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"73e595\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3479,\"z\":-72.6677},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"74a9a7\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3836,\"z\":-56.5605},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"77b6b2\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3538,\"z\":-58.9186},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"7881f2\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3761,\"z\":-86.448},\"rot\":{\"x\":0.0208,\"y\":269.9933,\"z\":0.0168}},\"7a9704\":{\"lock\":false,\"pos\":{\"x\":19.3457,\"y\":1.3452,\"z\":-81.8678},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"7ab8d7\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3863,\"z\":-47.3605},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"7d0c7e\":{\"lock\":false,\"pos\":{\"x\":19.3435,\"y\":1.3445,\"z\":-84.1675},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"84a867\":{\"lock\":false,\"pos\":{\"x\":19.3436,\"y\":1.3466,\"z\":-77.2676},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"8ff7ba\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3869,\"z\":-49.6484},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"928e1e\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3835,\"z\":-61.1484},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"93d418\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3572,\"z\":-47.4186},\"rot\":{\"x\":0.0208,\"y\":270.0088,\"z\":0.0168}},\"9fcffb\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3802,\"z\":-72.6481},\"rot\":{\"x\":0.0208,\"y\":270.0006,\"z\":0.0168}},\"a0c0ae\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3842,\"z\":-58.8484},\"rot\":{\"x\":0.0208,\"y\":270.0039,\"z\":0.0168}},\"a263e2\":{\"lock\":false,\"pos\":{\"x\":19.3279,\"y\":1.3432,\"z\":-88.757},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"a8218c\":{\"lock\":false,\"pos\":{\"x\":24.5004,\"y\":1.3552,\"z\":-54.3186},\"rot\":{\"x\":0.0208,\"y\":270.0042,\"z\":0.0168}},\"a8f780\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3565,\"z\":-49.7185},\"rot\":{\"x\":0.0208,\"y\":270.0185,\"z\":0.0168}},\"ac7359\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3546,\"z\":-49.6679},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"b0cb8c\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.354,\"z\":-51.9679},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"b74c47\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3439,\"z\":-86.4676},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"c1be23\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3788,\"z\":-77.248},\"rot\":{\"x\":0.0208,\"y\":269.9709,\"z\":0.0168}},\"c2a019\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3553,\"z\":-47.3679},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"c54fd2\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3795,\"z\":-74.9481},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"c580f5\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3856,\"z\":-49.6605},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"cb2302\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3849,\"z\":-51.9605},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"d051b3\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3558,\"z\":-52.0186},\"rot\":{\"x\":0.0208,\"y\":270.0076,\"z\":0.0168}},\"d60500\":{\"lock\":false,\"pos\":{\"x\":10.6137,\"y\":1.3748,\"z\":-91.04},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"e24027\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3808,\"z\":-70.3481},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"e32c1b\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3486,\"z\":-70.3675},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"e4a963\":{\"lock\":false,\"pos\":{\"x\":19.3436,\"y\":1.3472,\"z\":-74.9677},\"rot\":{\"x\":0.0208,\"y\":269.9984,\"z\":0.0168}},\"e56f25\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3768,\"z\":-84.148},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -765157,6 +810015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765172,12 +810032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93d418" }, { @@ -765205,6 +810066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765220,12 +810083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8f780" }, { @@ -765253,6 +810117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765268,12 +810134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d051b3" }, { @@ -765301,6 +810168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765316,12 +810185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8218c" }, { @@ -765349,6 +810219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765364,12 +810236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c635c" }, { @@ -765397,6 +810270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765412,12 +810287,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77b6b2" }, { @@ -765445,6 +810321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765460,12 +810338,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2a019" }, { @@ -765493,6 +810372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765508,12 +810389,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac7359" }, { @@ -765541,6 +810423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765556,12 +810440,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0cb8c" }, { @@ -765589,6 +810474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765604,12 +810491,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "353d4e" }, { @@ -765637,6 +810525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765652,12 +810542,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f7817" }, { @@ -765685,6 +810576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765700,12 +810593,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "190831" }, { @@ -765733,6 +810627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765748,12 +810644,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06e14d" }, { @@ -765781,6 +810678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765796,12 +810695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fabe7" }, { @@ -765829,6 +810729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765844,12 +810746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ef1de" }, { @@ -765877,6 +810780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765892,12 +810797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c0449" }, { @@ -765925,6 +810831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765940,12 +810848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e32c1b" }, { @@ -765973,6 +810882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -765988,12 +810899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73e595" }, { @@ -766021,6 +810933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766036,12 +810950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4a963" }, { @@ -766069,6 +810984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766084,12 +811001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84a867" }, { @@ -766117,6 +811035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766132,12 +811052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0012ed" }, { @@ -766165,6 +811086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766180,12 +811103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a9704" }, { @@ -766213,6 +811137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766228,12 +811154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d0c7e" }, { @@ -766261,6 +811188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766276,12 +811205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b74c47" }, { @@ -766309,6 +811239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766324,12 +811256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a263e2" }, { @@ -766357,6 +811290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766372,12 +811307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d60500" }, { @@ -766405,6 +811341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766420,12 +811358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a6f9a" }, { @@ -766453,6 +811392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766468,12 +811409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7881f2" }, { @@ -766501,6 +811443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766516,12 +811460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e56f25" }, { @@ -766549,6 +811494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766564,12 +811511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "038a3a" }, { @@ -766597,6 +811545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766612,12 +811562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c29ae" }, { @@ -766645,6 +811596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766660,12 +811613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1be23" }, { @@ -766693,6 +811647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766708,12 +811664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c54fd2" }, { @@ -766741,6 +811698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766756,12 +811715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fcffb" }, { @@ -766789,6 +811749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766804,12 +811766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e24027" }, { @@ -766837,6 +811800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766852,12 +811817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11aa2c" }, { @@ -766885,6 +811851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766900,12 +811868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26d107" }, { @@ -766933,6 +811902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766948,12 +811919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "608472" }, { @@ -766981,6 +811953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -766996,12 +811970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "928e1e" }, { @@ -767029,6 +812004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767044,12 +812021,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0c0ae" }, { @@ -767077,6 +812055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767092,12 +812072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "071c48" }, { @@ -767125,6 +812106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767140,12 +812123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a8b6a" }, { @@ -767173,6 +812157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767188,12 +812174,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49e21a" }, { @@ -767221,6 +812208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767236,12 +812225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ff7ba" }, { @@ -767269,6 +812259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767284,12 +812276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01f114" }, { @@ -767317,6 +812310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767332,12 +812327,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ab8d7" }, { @@ -767365,6 +812361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767380,12 +812378,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c580f5" }, { @@ -767413,6 +812412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767428,12 +812429,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb2302" }, { @@ -767461,6 +812463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767476,12 +812480,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4aebc0" }, { @@ -767509,6 +812514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767524,12 +812531,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a9a7" } ], @@ -767563,6 +812571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767581,9 +812591,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -767610,6 +812620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767625,12 +812637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4de54d" }, { @@ -767658,6 +812671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767673,12 +812688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44d828" }, { @@ -767706,6 +812722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767721,12 +812739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c356f" }, { @@ -767754,6 +812773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767769,12 +812790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c91d83" }, { @@ -767802,6 +812824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767817,12 +812841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cefc56" }, { @@ -767850,6 +812875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767865,12 +812892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3747cd" }, { @@ -767898,6 +812926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767913,12 +812943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ff60d" }, { @@ -767946,6 +812977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -767961,12 +812994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63270a" }, { @@ -767994,6 +813028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768009,12 +813045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6f3c3" }, { @@ -768042,6 +813079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768057,12 +813096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "068de3" }, { @@ -768090,6 +813130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768105,12 +813147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "448d0c" }, { @@ -768138,6 +813181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768153,12 +813198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97f6dc" }, { @@ -768186,6 +813232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768201,12 +813249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c70c5" }, { @@ -768234,6 +813283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768249,12 +813300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc5891" }, { @@ -768282,6 +813334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768297,12 +813351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "39fd29" }, { @@ -768330,6 +813385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768345,12 +813402,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2feb4c" } ], @@ -768381,6 +813439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768409,9 +813469,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"014d37\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3815,\"z\":-68.0481},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"079cbb\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3843,\"z\":-54.2605},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"16d723\":{\"lock\":false,\"pos\":{\"x\":10.6137,\"y\":1.3748,\"z\":-91.04},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"1d7bbe\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3816,\"z\":-63.4605},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"217f03\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3836,\"z\":-56.5605},\"rot\":{\"x\":0.0208,\"y\":270.0165,\"z\":0.0168}},\"27902c\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3526,\"z\":-56.5679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2df79f\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3808,\"z\":-70.3481},\"rot\":{\"x\":0.0208,\"y\":269.9922,\"z\":0.0168}},\"35aa98\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3533,\"z\":-54.2679},\"rot\":{\"x\":0.0208,\"y\":270.0013,\"z\":0.0168}},\"37f218\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3863,\"z\":-47.3605},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"3866c0\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3876,\"z\":-47.3484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"394267\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3809,\"z\":-65.7601},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"3b166d\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3781,\"z\":-79.548},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"5b118e\":{\"lock\":false,\"pos\":{\"x\":19.3457,\"y\":1.3452,\"z\":-81.8678},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"72e666\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.354,\"z\":-51.9679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"73a5e8\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3439,\"z\":-86.4676},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"77985f\":{\"lock\":false,\"pos\":{\"x\":10.6317,\"y\":1.3775,\"z\":-81.8482},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"79ab41\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3479,\"z\":-72.6677},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"7c278c\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3788,\"z\":-77.248},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"81c616\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3822,\"z\":-65.7481},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"8d6e58\":{\"lock\":false,\"pos\":{\"x\":19.3279,\"y\":1.3432,\"z\":-88.757},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"8e25de\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3849,\"z\":-51.9605},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"8e8930\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3835,\"z\":-61.1484},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"8ef336\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3795,\"z\":-74.9481},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"934f13\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3802,\"z\":-72.6481},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"97104d\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3572,\"z\":-47.4186},\"rot\":{\"x\":0.0208,\"y\":269.9895,\"z\":0.0168}},\"9b0cff\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3842,\"z\":-58.8484},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"9ed0fb\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3855,\"z\":-54.2484},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"abdf7c\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3493,\"z\":-68.0675},\"rot\":{\"x\":0.0208,\"y\":269.9895,\"z\":0.0168}},\"ae7294\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3466,\"z\":-77.2676},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"b68125\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3829,\"z\":-63.4484},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"bb5558\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3486,\"z\":-70.3675},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"c068ac\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3862,\"z\":-51.9484},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"c43ea2\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3849,\"z\":-56.5484},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"c714e7\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3553,\"z\":-47.3679},\"rot\":{\"x\":0.0208,\"y\":270.0012,\"z\":0.0168}},\"ceb0da\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3761,\"z\":-86.448},\"rot\":{\"x\":0.0208,\"y\":270.0249,\"z\":0.0168}},\"d621cc\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3546,\"z\":-49.6679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"d6c37b\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3869,\"z\":-49.6484},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"d77af0\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3459,\"z\":-79.5676},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"d85671\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3506,\"z\":-63.4679},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"d8d40c\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.352,\"z\":-58.8679},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"d9f87f\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3565,\"z\":-49.7185},\"rot\":{\"x\":0.0208,\"y\":270.0021,\"z\":0.0168}},\"da33cc\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3822,\"z\":-61.1605},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"da7c52\":{\"lock\":false,\"pos\":{\"x\":19.3435,\"y\":1.3445,\"z\":-84.1675},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"dcdc56\":{\"lock\":false,\"pos\":{\"x\":10.6139,\"y\":1.3754,\"z\":-88.74},\"rot\":{\"x\":0.0208,\"y\":269.982,\"z\":0.0168}},\"e154df\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3513,\"z\":-61.1679},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"e89298\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3499,\"z\":-65.7675},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"ec2a0a\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3768,\"z\":-84.148},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"f44a10\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3856,\"z\":-49.6605},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"f5bd90\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3472,\"z\":-74.9677},\"rot\":{\"x\":0.0208,\"y\":269.9984,\"z\":0.0168}},\"f9a147\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3829,\"z\":-58.8605},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -768438,6 +813498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768453,12 +813515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97104d" }, { @@ -768486,6 +813549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768501,12 +813566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9f87f" }, { @@ -768534,6 +813600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768549,12 +813617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c714e7" }, { @@ -768582,6 +813651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768597,12 +813668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d621cc" }, { @@ -768630,6 +813702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768645,12 +813719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72e666" }, { @@ -768678,6 +813753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768693,12 +813770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35aa98" }, { @@ -768726,6 +813804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768741,12 +813821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27902c" }, { @@ -768774,6 +813855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768789,12 +813872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8d40c" }, { @@ -768822,6 +813906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768837,12 +813923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e154df" }, { @@ -768870,6 +813957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768885,12 +813974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d85671" }, { @@ -768918,6 +814008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768933,12 +814025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e89298" }, { @@ -768966,6 +814059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -768981,12 +814076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abdf7c" }, { @@ -769014,6 +814110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769029,12 +814127,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb5558" }, { @@ -769062,6 +814161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769077,12 +814178,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79ab41" }, { @@ -769110,6 +814212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769125,12 +814229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5bd90" }, { @@ -769158,6 +814263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769173,12 +814280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae7294" }, { @@ -769206,6 +814314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769221,12 +814331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d77af0" }, { @@ -769254,6 +814365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769269,12 +814382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b118e" }, { @@ -769302,6 +814416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769317,12 +814433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da7c52" }, { @@ -769350,6 +814467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769365,12 +814484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73a5e8" }, { @@ -769398,6 +814518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769413,12 +814535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d6e58" }, { @@ -769446,6 +814569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769461,12 +814586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d723" }, { @@ -769494,6 +814620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769509,12 +814637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcdc56" }, { @@ -769542,6 +814671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769557,12 +814688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ceb0da" }, { @@ -769590,6 +814722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769605,12 +814739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec2a0a" }, { @@ -769638,6 +814773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769653,12 +814790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77985f" }, { @@ -769686,6 +814824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769701,12 +814841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b166d" }, { @@ -769734,6 +814875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769749,12 +814892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c278c" }, { @@ -769782,6 +814926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769797,12 +814943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ef336" }, { @@ -769830,6 +814977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769845,12 +814994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "934f13" }, { @@ -769878,6 +815028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769893,12 +815045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2df79f" }, { @@ -769926,6 +815079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769941,12 +815096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "014d37" }, { @@ -769974,6 +815130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -769989,12 +815147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81c616" }, { @@ -770022,6 +815181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770037,12 +815198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "394267" }, { @@ -770070,6 +815232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770085,12 +815249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d7bbe" }, { @@ -770118,6 +815283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770133,12 +815300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b68125" }, { @@ -770166,6 +815334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770181,12 +815351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8930" }, { @@ -770214,6 +815385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770229,12 +815402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da33cc" }, { @@ -770262,6 +815436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770277,12 +815453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b0cff" }, { @@ -770310,6 +815487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770325,12 +815504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9a147" }, { @@ -770358,6 +815538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770373,12 +815555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "217f03" }, { @@ -770406,6 +815589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770421,12 +815606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c43ea2" }, { @@ -770454,6 +815640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770469,12 +815657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ed0fb" }, { @@ -770502,6 +815691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770517,12 +815708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "079cbb" }, { @@ -770550,6 +815742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770565,12 +815759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e25de" }, { @@ -770598,6 +815793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770613,12 +815810,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c068ac" }, { @@ -770646,6 +815844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770661,12 +815861,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6c37b" }, { @@ -770694,6 +815895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770709,12 +815912,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f44a10" }, { @@ -770742,6 +815946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770757,12 +815963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3866c0" }, { @@ -770790,6 +815997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770805,12 +816014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37f218" }, { @@ -770838,6 +816048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770866,9 +816078,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"014d37\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3815,\"z\":-68.0481},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"079cbb\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3843,\"z\":-54.2605},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"16d723\":{\"lock\":false,\"pos\":{\"x\":10.6137,\"y\":1.3748,\"z\":-91.04},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"1d7bbe\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3816,\"z\":-63.4605},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"217f03\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3836,\"z\":-56.5605},\"rot\":{\"x\":0.0208,\"y\":270.0165,\"z\":0.0168}},\"27902c\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3526,\"z\":-56.5679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2df79f\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3808,\"z\":-70.3481},\"rot\":{\"x\":0.0208,\"y\":269.9922,\"z\":0.0168}},\"35aa98\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3533,\"z\":-54.2679},\"rot\":{\"x\":0.0208,\"y\":270.0013,\"z\":0.0168}},\"37f218\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3863,\"z\":-47.3605},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"3866c0\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3876,\"z\":-47.3484},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"394267\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3809,\"z\":-65.7601},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"3b166d\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3781,\"z\":-79.548},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"5b118e\":{\"lock\":false,\"pos\":{\"x\":19.3457,\"y\":1.3452,\"z\":-81.8678},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"72e666\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.354,\"z\":-51.9679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"73a5e8\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3439,\"z\":-86.4676},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"77985f\":{\"lock\":false,\"pos\":{\"x\":10.6317,\"y\":1.3775,\"z\":-81.8482},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"79ab41\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3479,\"z\":-72.6677},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"7c278c\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3788,\"z\":-77.248},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"81c616\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3822,\"z\":-65.7481},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"8d6e58\":{\"lock\":false,\"pos\":{\"x\":19.3279,\"y\":1.3432,\"z\":-88.757},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"8e25de\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3849,\"z\":-51.9605},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"8e8930\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3835,\"z\":-61.1484},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"8ef336\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3795,\"z\":-74.9481},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"934f13\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3802,\"z\":-72.6481},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"97104d\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3572,\"z\":-47.4186},\"rot\":{\"x\":0.0208,\"y\":269.9895,\"z\":0.0168}},\"9b0cff\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3842,\"z\":-58.8484},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"9ed0fb\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3855,\"z\":-54.2484},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"abdf7c\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3493,\"z\":-68.0675},\"rot\":{\"x\":0.0208,\"y\":269.9895,\"z\":0.0168}},\"ae7294\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3466,\"z\":-77.2676},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"b68125\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3829,\"z\":-63.4484},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"bb5558\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3486,\"z\":-70.3675},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"c068ac\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3862,\"z\":-51.9484},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"c43ea2\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3849,\"z\":-56.5484},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"c714e7\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3553,\"z\":-47.3679},\"rot\":{\"x\":0.0208,\"y\":270.0012,\"z\":0.0168}},\"ceb0da\":{\"lock\":false,\"pos\":{\"x\":10.6297,\"y\":1.3761,\"z\":-86.448},\"rot\":{\"x\":0.0208,\"y\":270.0249,\"z\":0.0168}},\"d621cc\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3546,\"z\":-49.6679},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"d6c37b\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3869,\"z\":-49.6484},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"d77af0\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3459,\"z\":-79.5676},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"d85671\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3506,\"z\":-63.4679},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"d8d40c\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.352,\"z\":-58.8679},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"d9f87f\":{\"lock\":false,\"pos\":{\"x\":24.5003,\"y\":1.3565,\"z\":-49.7185},\"rot\":{\"x\":0.0208,\"y\":270.0021,\"z\":0.0168}},\"da33cc\":{\"lock\":false,\"pos\":{\"x\":7.0765,\"y\":1.3822,\"z\":-61.1605},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"da7c52\":{\"lock\":false,\"pos\":{\"x\":19.3435,\"y\":1.3445,\"z\":-84.1675},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"dcdc56\":{\"lock\":false,\"pos\":{\"x\":10.6139,\"y\":1.3754,\"z\":-88.74},\"rot\":{\"x\":0.0208,\"y\":269.982,\"z\":0.0168}},\"e154df\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3513,\"z\":-61.1679},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"e89298\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3499,\"z\":-65.7675},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"ec2a0a\":{\"lock\":false,\"pos\":{\"x\":10.6296,\"y\":1.3768,\"z\":-84.148},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"f44a10\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3856,\"z\":-49.6605},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"f5bd90\":{\"lock\":false,\"pos\":{\"x\":19.3437,\"y\":1.3472,\"z\":-74.9677},\"rot\":{\"x\":0.0208,\"y\":269.9984,\"z\":0.0168}},\"f9a147\":{\"lock\":false,\"pos\":{\"x\":7.0766,\"y\":1.3829,\"z\":-58.8605},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -770895,6 +816107,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770910,12 +816124,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97104d" }, { @@ -770943,6 +816158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -770958,12 +816175,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9f87f" }, { @@ -770991,6 +816209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771006,12 +816226,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c714e7" }, { @@ -771039,6 +816260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771054,12 +816277,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d621cc" }, { @@ -771087,6 +816311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771102,12 +816328,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72e666" }, { @@ -771135,6 +816362,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771150,12 +816379,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35aa98" }, { @@ -771183,6 +816413,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771198,12 +816430,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27902c" }, { @@ -771231,6 +816464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771246,12 +816481,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8d40c" }, { @@ -771279,6 +816515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771294,12 +816532,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e154df" }, { @@ -771327,6 +816566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771342,12 +816583,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d85671" }, { @@ -771375,6 +816617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771390,12 +816634,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e89298" }, { @@ -771423,6 +816668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771438,12 +816685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abdf7c" }, { @@ -771471,6 +816719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771486,12 +816736,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb5558" }, { @@ -771519,6 +816770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771534,12 +816787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79ab41" }, { @@ -771567,6 +816821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771582,12 +816838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5bd90" }, { @@ -771615,6 +816872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771630,12 +816889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae7294" }, { @@ -771663,6 +816923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771678,12 +816940,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d77af0" }, { @@ -771711,6 +816974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771726,12 +816991,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b118e" }, { @@ -771759,6 +817025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771774,12 +817042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da7c52" }, { @@ -771807,6 +817076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771822,12 +817093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73a5e8" }, { @@ -771855,6 +817127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771870,12 +817144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d6e58" }, { @@ -771903,6 +817178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771918,12 +817195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d723" }, { @@ -771951,6 +817229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -771966,12 +817246,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcdc56" }, { @@ -771999,6 +817280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772014,12 +817297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ceb0da" }, { @@ -772047,6 +817331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772062,12 +817348,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec2a0a" }, { @@ -772095,6 +817382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772110,12 +817399,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77985f" }, { @@ -772143,6 +817433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772158,12 +817450,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b166d" }, { @@ -772191,6 +817484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772206,12 +817501,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c278c" }, { @@ -772239,6 +817535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772254,12 +817552,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ef336" }, { @@ -772287,6 +817586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772302,12 +817603,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "934f13" }, { @@ -772335,6 +817637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772350,12 +817654,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2df79f" }, { @@ -772383,6 +817688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772398,12 +817705,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "014d37" }, { @@ -772431,6 +817739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772446,12 +817756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81c616" }, { @@ -772479,6 +817790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772494,12 +817807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "394267" }, { @@ -772527,6 +817841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772542,12 +817858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d7bbe" }, { @@ -772575,6 +817892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772590,12 +817909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b68125" }, { @@ -772623,6 +817943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772638,12 +817960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8930" }, { @@ -772671,6 +817994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772686,12 +818011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da33cc" }, { @@ -772719,6 +818045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772734,12 +818062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b0cff" }, { @@ -772767,6 +818096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772782,12 +818113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9a147" }, { @@ -772815,6 +818147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772830,12 +818164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "217f03" }, { @@ -772863,6 +818198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772878,12 +818215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c43ea2" }, { @@ -772911,6 +818249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772926,12 +818266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ed0fb" }, { @@ -772959,6 +818300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -772974,12 +818317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "079cbb" }, { @@ -773007,6 +818351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773022,12 +818368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e25de" }, { @@ -773055,6 +818402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773070,12 +818419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c068ac" }, { @@ -773103,6 +818453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773118,12 +818470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6c37b" }, { @@ -773151,6 +818504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773166,12 +818521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f44a10" }, { @@ -773199,6 +818555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773214,12 +818572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3866c0" }, { @@ -773247,6 +818606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773262,12 +818623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37f218" } ], @@ -773301,6 +818663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773329,9 +818693,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"043971\":{\"lock\":false,\"pos\":{\"x\":44.2207,\"y\":1.3516,\"z\":-91.0972},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"066c18\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.359,\"z\":-61.2128},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"0c278c\":{\"lock\":false,\"pos\":{\"x\":52.9455,\"y\":1.3574,\"z\":-81.9203},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"0c2f37\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3662,\"z\":-52.0202},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1408ad\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3628,\"z\":-63.5202},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"15fa11\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3603,\"z\":-61.2007},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"17f807\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3623,\"z\":-54.3007},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"187591\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3648,\"z\":-56.6202},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1c0bcd\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3597,\"z\":-58.9128},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"1e7f9a\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3556,\"z\":-77.3005},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"1fc1f4\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3596,\"z\":-63.5007},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"218e04\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.363,\"z\":-52.0007},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"22256f\":{\"lock\":false,\"pos\":{\"x\":44.2302,\"y\":1.3542,\"z\":-81.9008},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"2901ee\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3569,\"z\":-72.7006},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2b76c6\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3594,\"z\":-75.0202},\"rot\":{\"x\":0.0208,\"y\":269.9984,\"z\":0.0168}},\"2badf6\":{\"lock\":false,\"pos\":{\"x\":52.9433,\"y\":1.3567,\"z\":-84.2201},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"32b458\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3637,\"z\":-49.7007},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"36ffa9\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3635,\"z\":-61.2202},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"3a622d\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3617,\"z\":-52.0128},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"3accaf\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3588,\"z\":-77.3201},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"3b042e\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3624,\"z\":-49.7128},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"537351\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3581,\"z\":-79.6201},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"5761c7\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3641,\"z\":-58.9202},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"596620\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3655,\"z\":-54.3202},\"rot\":{\"x\":0.0208,\"y\":270.0013,\"z\":0.0168}},\"5a4bb5\":{\"lock\":false,\"pos\":{\"x\":52.9435,\"y\":1.3561,\"z\":-86.5201},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"5a7137\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3617,\"z\":-56.6007},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"5cfb72\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3529,\"z\":-86.5005},\"rot\":{\"x\":0.0208,\"y\":270.0248,\"z\":0.0168}},\"62392c\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.361,\"z\":-58.9007},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"639a09\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3583,\"z\":-63.5128},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"650903\":{\"lock\":false,\"pos\":{\"x\":44.2128,\"y\":1.3522,\"z\":-88.7901},\"rot\":{\"x\":0.0208,\"y\":269.982,\"z\":0.0168}},\"661c3f\":{\"lock\":false,\"pos\":{\"x\":52.9277,\"y\":1.3554,\"z\":-88.8096},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"6c6340\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.361,\"z\":-54.3128},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"7ab680\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3604,\"z\":-56.6128},\"rot\":{\"x\":0.0208,\"y\":270.0165,\"z\":0.0168}},\"7dc42a\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3576,\"z\":-70.4006},\"rot\":{\"x\":0.0208,\"y\":269.9922,\"z\":0.0168}},\"80d5e3\":{\"lock\":false,\"pos\":{\"x\":44.2281,\"y\":1.3536,\"z\":-84.2005},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"80fafa\":{\"lock\":false,\"pos\":{\"x\":58.0989,\"y\":1.3694,\"z\":-47.4709},\"rot\":{\"x\":0.0208,\"y\":269.9895,\"z\":0.0168}},\"88d2ba\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3675,\"z\":-47.4202},\"rot\":{\"x\":0.0208,\"y\":270.0012,\"z\":0.0168}},\"88fdeb\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3643,\"z\":-47.4007},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"8f5533\":{\"lock\":false,\"pos\":{\"x\":58.0989,\"y\":1.3687,\"z\":-49.7708},\"rot\":{\"x\":0.0208,\"y\":270.0021,\"z\":0.0168}},\"93381d\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3614,\"z\":-68.1201},\"rot\":{\"x\":0.0208,\"y\":269.9895,\"z\":0.0168}},\"a26425\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3549,\"z\":-79.6005},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"ab620e\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3668,\"z\":-49.7202},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"afef79\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3631,\"z\":-47.4128},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"bdffae\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.359,\"z\":-65.8006},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"c4018c\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3621,\"z\":-65.8201},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"d93397\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3601,\"z\":-72.7202},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"e1ef43\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3563,\"z\":-75.0006},\"rot\":{\"x\":0.0208,\"y\":269.999,\"z\":0.0168}},\"e3ae5c\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3608,\"z\":-70.4201},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"e56d1d\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3583,\"z\":-68.1006},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"f54b74\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3577,\"z\":-65.8127},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -773358,6 +818722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773373,12 +818739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80fafa" }, { @@ -773406,6 +818773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773421,12 +818790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f5533" }, { @@ -773454,6 +818824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773469,12 +818841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88d2ba" }, { @@ -773502,6 +818875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773517,12 +818892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab620e" }, { @@ -773550,6 +818926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773565,12 +818943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c2f37" }, { @@ -773598,6 +818977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773613,12 +818994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "596620" }, { @@ -773646,6 +819028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773661,12 +819045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "187591" }, { @@ -773694,6 +819079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773709,12 +819096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5761c7" }, { @@ -773742,6 +819130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773757,12 +819147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36ffa9" }, { @@ -773790,6 +819181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773805,12 +819198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1408ad" }, { @@ -773838,6 +819232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773853,12 +819249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4018c" }, { @@ -773886,6 +819283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773901,12 +819300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93381d" }, { @@ -773934,6 +819334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773949,12 +819351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3ae5c" }, { @@ -773982,6 +819385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -773997,12 +819402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d93397" }, { @@ -774030,6 +819436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774045,12 +819453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b76c6" }, { @@ -774078,6 +819487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774093,12 +819504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3accaf" }, { @@ -774126,6 +819538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774141,12 +819555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "537351" }, { @@ -774174,6 +819589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774189,12 +819606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c278c" }, { @@ -774222,6 +819640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774237,12 +819657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2badf6" }, { @@ -774270,6 +819691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774285,12 +819708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a4bb5" }, { @@ -774318,6 +819742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774333,12 +819759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "661c3f" }, { @@ -774366,6 +819793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774381,12 +819810,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "043971" }, { @@ -774414,6 +819844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774429,12 +819861,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "650903" }, { @@ -774462,6 +819895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774477,12 +819912,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5cfb72" }, { @@ -774510,6 +819946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774525,12 +819963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80d5e3" }, { @@ -774558,6 +819997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774573,12 +820014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22256f" }, { @@ -774606,6 +820048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774621,12 +820065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a26425" }, { @@ -774654,6 +820099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774669,12 +820116,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e7f9a" }, { @@ -774702,6 +820150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774717,12 +820167,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1ef43" }, { @@ -774750,6 +820201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774765,12 +820218,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2901ee" }, { @@ -774798,6 +820252,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774813,12 +820269,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dc42a" }, { @@ -774846,6 +820303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774861,12 +820320,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e56d1d" }, { @@ -774894,6 +820354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774909,12 +820371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdffae" }, { @@ -774942,6 +820405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -774957,12 +820422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fc1f4" }, { @@ -774990,6 +820456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775005,12 +820473,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15fa11" }, { @@ -775038,6 +820507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775053,12 +820524,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "639a09" }, { @@ -775086,6 +820558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775101,12 +820575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f54b74" }, { @@ -775134,6 +820609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775149,12 +820626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c0bcd" }, { @@ -775182,6 +820660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775197,12 +820677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "066c18" }, { @@ -775230,6 +820711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775245,12 +820728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62392c" }, { @@ -775278,6 +820762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775293,12 +820779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a7137" }, { @@ -775326,6 +820813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775341,12 +820830,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ab680" }, { @@ -775374,6 +820864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775389,12 +820881,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c6340" }, { @@ -775422,6 +820915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775437,12 +820932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17f807" }, { @@ -775470,6 +820966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775485,12 +820983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "218e04" }, { @@ -775518,6 +821017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775533,12 +821034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a622d" }, { @@ -775566,6 +821068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775581,12 +821085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "32b458" }, { @@ -775614,6 +821119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775629,12 +821136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b042e" }, { @@ -775662,6 +821170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775677,12 +821187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "afef79" }, { @@ -775710,6 +821221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775725,12 +821238,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88fdeb" }, { @@ -775758,6 +821272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775786,9 +821302,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,0,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,2}, rotation={0,0,0}, height=350, width=750,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"043971\":{\"lock\":false,\"pos\":{\"x\":44.2207,\"y\":1.3516,\"z\":-91.0972},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"066c18\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.359,\"z\":-61.2128},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"0c278c\":{\"lock\":false,\"pos\":{\"x\":52.9455,\"y\":1.3574,\"z\":-81.9203},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"0c2f37\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3662,\"z\":-52.0202},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1408ad\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3628,\"z\":-63.5202},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"15fa11\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3603,\"z\":-61.2007},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"17f807\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3623,\"z\":-54.3007},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"187591\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3648,\"z\":-56.6202},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"1c0bcd\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3597,\"z\":-58.9128},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"1e7f9a\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3556,\"z\":-77.3005},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"1fc1f4\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3596,\"z\":-63.5007},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"218e04\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.363,\"z\":-52.0007},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"22256f\":{\"lock\":false,\"pos\":{\"x\":44.2302,\"y\":1.3542,\"z\":-81.9008},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"2901ee\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3569,\"z\":-72.7006},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2b76c6\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3594,\"z\":-75.0202},\"rot\":{\"x\":0.0208,\"y\":269.9984,\"z\":0.0168}},\"2badf6\":{\"lock\":false,\"pos\":{\"x\":52.9433,\"y\":1.3567,\"z\":-84.2201},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"32b458\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3637,\"z\":-49.7007},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"36ffa9\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3635,\"z\":-61.2202},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"3a622d\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3617,\"z\":-52.0128},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"3accaf\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3588,\"z\":-77.3201},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"3b042e\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3624,\"z\":-49.7128},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"537351\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3581,\"z\":-79.6201},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"5761c7\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3641,\"z\":-58.9202},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"596620\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3655,\"z\":-54.3202},\"rot\":{\"x\":0.0208,\"y\":270.0013,\"z\":0.0168}},\"5a4bb5\":{\"lock\":false,\"pos\":{\"x\":52.9435,\"y\":1.3561,\"z\":-86.5201},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"5a7137\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3617,\"z\":-56.6007},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"5cfb72\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3529,\"z\":-86.5005},\"rot\":{\"x\":0.0208,\"y\":270.0248,\"z\":0.0168}},\"62392c\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.361,\"z\":-58.9007},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"639a09\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3583,\"z\":-63.5128},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"650903\":{\"lock\":false,\"pos\":{\"x\":44.2128,\"y\":1.3522,\"z\":-88.7901},\"rot\":{\"x\":0.0208,\"y\":269.982,\"z\":0.0168}},\"661c3f\":{\"lock\":false,\"pos\":{\"x\":52.9277,\"y\":1.3554,\"z\":-88.8096},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"6c6340\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.361,\"z\":-54.3128},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"7ab680\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3604,\"z\":-56.6128},\"rot\":{\"x\":0.0208,\"y\":270.0165,\"z\":0.0168}},\"7dc42a\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3576,\"z\":-70.4006},\"rot\":{\"x\":0.0208,\"y\":269.9922,\"z\":0.0168}},\"80d5e3\":{\"lock\":false,\"pos\":{\"x\":44.2281,\"y\":1.3536,\"z\":-84.2005},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"80fafa\":{\"lock\":false,\"pos\":{\"x\":58.0989,\"y\":1.3694,\"z\":-47.4709},\"rot\":{\"x\":0.0208,\"y\":269.9895,\"z\":0.0168}},\"88d2ba\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3675,\"z\":-47.4202},\"rot\":{\"x\":0.0208,\"y\":270.0012,\"z\":0.0168}},\"88fdeb\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3643,\"z\":-47.4007},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"8f5533\":{\"lock\":false,\"pos\":{\"x\":58.0989,\"y\":1.3687,\"z\":-49.7708},\"rot\":{\"x\":0.0208,\"y\":270.0021,\"z\":0.0168}},\"93381d\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3614,\"z\":-68.1201},\"rot\":{\"x\":0.0208,\"y\":269.9895,\"z\":0.0168}},\"a26425\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3549,\"z\":-79.6005},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"ab620e\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3668,\"z\":-49.7202},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"afef79\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3631,\"z\":-47.4128},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"bdffae\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.359,\"z\":-65.8006},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"c4018c\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3621,\"z\":-65.8201},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"d93397\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3601,\"z\":-72.7202},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"e1ef43\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3563,\"z\":-75.0006},\"rot\":{\"x\":0.0208,\"y\":269.999,\"z\":0.0168}},\"e3ae5c\":{\"lock\":false,\"pos\":{\"x\":52.9434,\"y\":1.3608,\"z\":-70.4201},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"e56d1d\":{\"lock\":false,\"pos\":{\"x\":44.2282,\"y\":1.3583,\"z\":-68.1006},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"f54b74\":{\"lock\":false,\"pos\":{\"x\":40.6755,\"y\":1.3577,\"z\":-65.8127},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -775815,6 +821331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775830,12 +821348,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80fafa" }, { @@ -775863,6 +821382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775878,12 +821399,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f5533" }, { @@ -775911,6 +821433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775926,12 +821450,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88d2ba" }, { @@ -775959,6 +821484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -775974,12 +821501,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab620e" }, { @@ -776007,6 +821535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776022,12 +821552,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c2f37" }, { @@ -776055,6 +821586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776070,12 +821603,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "596620" }, { @@ -776103,6 +821637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776118,12 +821654,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "187591" }, { @@ -776151,6 +821688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776166,12 +821705,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5761c7" }, { @@ -776199,6 +821739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776214,12 +821756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36ffa9" }, { @@ -776247,6 +821790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776262,12 +821807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1408ad" }, { @@ -776295,6 +821841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776310,12 +821858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4018c" }, { @@ -776343,6 +821892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776358,12 +821909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93381d" }, { @@ -776391,6 +821943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776406,12 +821960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3ae5c" }, { @@ -776439,6 +821994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776454,12 +822011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d93397" }, { @@ -776487,6 +822045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776502,12 +822062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b76c6" }, { @@ -776535,6 +822096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776550,12 +822113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3accaf" }, { @@ -776583,6 +822147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776598,12 +822164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "537351" }, { @@ -776631,6 +822198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776646,12 +822215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c278c" }, { @@ -776679,6 +822249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776694,12 +822266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2badf6" }, { @@ -776727,6 +822300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776742,12 +822317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a4bb5" }, { @@ -776775,6 +822351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776790,12 +822368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "661c3f" }, { @@ -776823,6 +822402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776838,12 +822419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "043971" }, { @@ -776871,6 +822453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776886,12 +822470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "650903" }, { @@ -776919,6 +822504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776934,12 +822521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5cfb72" }, { @@ -776967,6 +822555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -776982,12 +822572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80d5e3" }, { @@ -777015,6 +822606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777030,12 +822623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22256f" }, { @@ -777063,6 +822657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777078,12 +822674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a26425" }, { @@ -777111,6 +822708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777126,12 +822725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e7f9a" }, { @@ -777159,6 +822759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777174,12 +822776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1ef43" }, { @@ -777207,6 +822810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777222,12 +822827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2901ee" }, { @@ -777255,6 +822861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777270,12 +822878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dc42a" }, { @@ -777303,6 +822912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777318,12 +822929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e56d1d" }, { @@ -777351,6 +822963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777366,12 +822980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdffae" }, { @@ -777399,6 +823014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777414,12 +823031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fc1f4" }, { @@ -777447,6 +823065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777462,12 +823082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15fa11" }, { @@ -777495,6 +823116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777510,12 +823133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "639a09" }, { @@ -777543,6 +823167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777558,12 +823184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f54b74" }, { @@ -777591,6 +823218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777606,12 +823235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c0bcd" }, { @@ -777639,6 +823269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777654,12 +823286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "066c18" }, { @@ -777687,6 +823320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777702,12 +823337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62392c" }, { @@ -777735,6 +823371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777750,12 +823388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a7137" }, { @@ -777783,6 +823422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777798,12 +823439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ab680" }, { @@ -777831,6 +823473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777846,12 +823490,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c6340" }, { @@ -777879,6 +823524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777894,12 +823541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17f807" }, { @@ -777927,6 +823575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777942,12 +823592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "218e04" }, { @@ -777975,6 +823626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -777990,12 +823643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a622d" }, { @@ -778023,6 +823677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778038,12 +823694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "32b458" }, { @@ -778071,6 +823728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778086,12 +823745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b042e" }, { @@ -778119,6 +823779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778134,12 +823796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "afef79" }, { @@ -778167,6 +823830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778182,12 +823847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88fdeb" } ], @@ -778199,9 +823865,9 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 1.755315, - "posY": 1.57838917, - "posZ": -14.1874752, + "posX": 1.7553165, + "posY": 1.578389, + "posZ": -14.187479, "rotX": 359.931335, "rotY": 315.009064, "rotZ": 359.955139, @@ -778221,6 +823887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778249,19 +823917,19 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function onCollisionEnter(collision_info)\r\n self.shuffle() \r\n self.shuffle() \r\n self.shuffle() \r\nend", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", "Transform": { - "posX": -48.538784, - "posY": 2.0073154, - "posZ": 4.50848055, - "rotX": 359.920135, - "rotY": 269.97467, - "rotZ": 0.0169066116, + "posX": -52.1020241, + "posY": 1.71156025, + "posZ": 6.92665958, + "rotX": 359.886, + "rotY": 269.978943, + "rotZ": 354.777222, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 @@ -778278,6 +823946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778285,7 +823955,7 @@ "HideWhenFaceDown": false, "Hands": false, "CustomImage": { - "ImageURL": "https://i.imgur.com/VzhJJaH.png", + "ImageURL": "https://i.imgur.com/lns4fhz.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, @@ -778296,202 +823966,10 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "8da6ff" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -10.6612959, - "posY": 4.504573, - "posZ": 27.849432, - "rotX": 0.0, - "rotY": 260.0, - "rotZ": 0.0, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/w3XbrCC.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -10.6612959, - "posY": 4.504573, - "posZ": 27.849432, - "rotX": 0.0, - "rotY": 260.0, - "rotZ": 0.0, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/btEtVfd.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": 1.75448167, - "posY": 2.362014, - "posZ": -14.185729, - "rotX": 359.9404, - "rotY": 315.009216, - "rotZ": 359.9652, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/w3XbrCC.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1699e6" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -10.6612959, - "posY": 4.504573, - "posZ": 27.849432, - "rotX": 0.0, - "rotY": 260.0, - "rotZ": 0.0, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/bfTg2hb.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "" + "GUID": "163ca4" }, { "Name": "Custom_Tile", @@ -778518,6 +823996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778536,9 +824016,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73747d" }, { @@ -778566,6 +824046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778584,9 +824066,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "" }, { @@ -778614,6 +824096,58 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/btEtVfd.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": 1.75448167, + "posY": 2.362014, + "posZ": -14.185729, + "rotX": 359.9404, + "rotY": 315.009216, + "rotZ": 359.9652, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778632,10 +824166,10 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "" + "XmlUI": "", + "GUID": "1699e6" }, { "Name": "Custom_Tile", @@ -778662,6 +824196,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778680,20 +824216,20 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d1c68" }, { "Name": "Custom_Tile", "Transform": { - "posX": -20.2173214, - "posY": 1.99118471, - "posZ": -23.67844, - "rotX": 0.01688737, - "rotY": 179.9888, - "rotZ": 0.07987342, + "posX": -52.1016121, + "posY": 1.63770664, + "posZ": 5.83287573, + "rotX": 359.920227, + "rotY": 269.974731, + "rotZ": 0.0185068, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 @@ -778710,6 +824246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778717,7 +824255,7 @@ "HideWhenFaceDown": false, "Hands": false, "CustomImage": { - "ImageURL": "https://i.imgur.com/uIx8jbY.png", + "ImageURL": "https://i.imgur.com/bfTg2hb.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, @@ -778728,58 +824266,10 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "6a68fe" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -52.1020241, - "posY": 1.71156025, - "posZ": 6.92665958, - "rotX": 359.886, - "rotY": 269.978943, - "rotZ": 354.777222, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/lns4fhz.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "163ca4" + "GUID": "d1ebf6" }, { "Name": "Custom_Tile", @@ -778806,6 +824296,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778813,7 +824305,7 @@ "HideWhenFaceDown": false, "Hands": false, "CustomImage": { - "ImageURL": "https://i.imgur.com/btEtVfd.png", + "ImageURL": "https://i.imgur.com/w3XbrCC.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, @@ -778824,9 +824316,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "" }, { @@ -778854,6 +824346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778872,9 +824366,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be93cf" }, { @@ -778902,6 +824396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778909,7 +824405,7 @@ "HideWhenFaceDown": false, "Hands": false, "CustomImage": { - "ImageURL": "https://i.imgur.com/stbBxtx.png", + "ImageURL": "https://i.imgur.com/btEtVfd.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, @@ -778920,9 +824416,109 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", + "GUID": "" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -48.538784, + "posY": 2.0073154, + "posZ": 4.50848055, + "rotX": 359.920135, + "rotY": 269.97467, + "rotZ": 0.0169066116, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/VzhJJaH.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8da6ff" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -10.6612959, + "posY": 4.504573, + "posZ": 27.849432, + "rotX": 0.0, + "rotY": 260.0, + "rotZ": 0.0, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/bfTg2hb.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", "GUID": "" }, { @@ -778950,6 +824546,158 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/w3XbrCC.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -10.6612959, + "posY": 4.504573, + "posZ": 27.849432, + "rotX": 0.0, + "rotY": 260.0, + "rotZ": 0.0, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/stbBxtx.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -20.2173214, + "posY": 1.99118471, + "posZ": -23.67844, + "rotX": 0.01688737, + "rotY": 179.9888, + "rotZ": 0.07987342, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/uIx8jbY.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6a68fe" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -10.6612959, + "posY": 4.504573, + "posZ": 27.849432, + "rotX": 0.0, + "rotY": 260.0, + "rotZ": 0.0, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -778968,58 +824716,10 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -52.1016121, - "posY": 1.63770664, - "posZ": 5.83287573, - "rotX": 359.920227, - "rotY": 269.974731, - "rotZ": 0.0185068, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/bfTg2hb.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d1ebf6" } ], "GUID": "fea079" @@ -779027,12 +824727,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 51.7485771, - "posY": 1.41776729, - "posZ": 28.5304737, + "posX": 51.7485924, + "posY": 1.41776741, + "posZ": 28.53048, "rotX": 359.920135, - "rotY": 269.986633, - "rotZ": 0.016891636, + "rotY": 269.986572, + "rotZ": 0.01689184, "scaleX": 1.0, "scaleY": 0.139652729, "scaleZ": 1.0 @@ -779049,6 +824749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779077,9 +824779,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={1.5,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-1.2,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-4,5,6}, rotation={0,0,0}, height=500, width=1000,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1.35,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1.25,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-6,1,0}, rotation={0,90,0}, height=500, width=1200,\r\n-- font_size=350, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"2130f0\":{\"lock\":false,\"pos\":{\"x\":12.11,\"y\":1.4624,\"z\":-7.5798},\"rot\":{\"x\":359.9201,\"y\":270.0006,\"z\":0.0169}},\"667111\":{\"lock\":false,\"pos\":{\"x\":12.1101,\"y\":1.4668,\"z\":7.2458},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"c38c96\":{\"lock\":false,\"pos\":{\"x\":12.11,\"y\":1.4646,\"z\":-0.0592},\"rot\":{\"x\":359.9201,\"y\":270.0097,\"z\":0.0169}},\"e0c3e7\":{\"lock\":false,\"pos\":{\"x\":-1.4655,\"y\":1.4756,\"z\":-26.9304},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -779106,6 +824808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779134,9 +824838,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"01fdf4\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0027,\"z\":0.0803}},\"377b20\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"37feeb\":{\"lock\":false,\"pos\":{\"x\":-3.8378,\"y\":1.5825,\"z\":-14.6275},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}},\"54354d\":{\"lock\":false,\"pos\":{\"x\":-12.216,\"y\":1.6735,\"z\":8.0664},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"835751\":{\"lock\":false,\"pos\":{\"x\":1.6961,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"91957f\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0038,\"z\":0.0803}},\"a08994\":{\"lock\":false,\"pos\":{\"x\":-3.2599,\"y\":1.4055,\"z\":15.3217},\"rot\":{\"x\":359.9832,\"y\":0.0018,\"z\":359.9197}},\"a22908\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.013,\"z\":0.0168}},\"d85823\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7451,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":180.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -779163,6 +824867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779182,12 +824888,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -779214,6 +824921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779229,12 +824938,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76e312" }, { @@ -779262,6 +824972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779277,12 +824989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -779310,6 +825023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779325,12 +825040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e352ec" } ], @@ -779361,6 +825077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779376,12 +825094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -779409,6 +825128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779427,9 +825148,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Devourer Below'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "37feeb" }, { @@ -779457,6 +825178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779479,12 +825202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -779511,6 +825235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779526,12 +825252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8e04b" }, { @@ -779559,6 +825286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779574,12 +825303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09c961" }, { @@ -779607,6 +825337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779622,12 +825354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47ac26" }, { @@ -779655,6 +825388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779670,12 +825405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "861e20" }, { @@ -779703,6 +825439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779718,12 +825456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90029" }, { @@ -779751,6 +825490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779766,12 +825507,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" } ], @@ -779802,6 +825544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779820,9 +825564,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -779849,6 +825593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779870,12 +825616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -779902,6 +825649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779917,12 +825666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -779950,6 +825700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -779965,12 +825717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec86a2" }, { @@ -779998,6 +825751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780013,12 +825768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad2df0" }, { @@ -780046,6 +825802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780061,12 +825819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a12fd2" }, { @@ -780094,6 +825853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780109,12 +825870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -780145,6 +825907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780160,12 +825924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -780193,6 +825958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780211,9 +825978,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3d96a" }, { @@ -780241,6 +826008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780256,12 +826025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -780289,6 +826059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780304,12 +826076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "372a95" } ], @@ -780353,6 +826126,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780372,12 +826147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -780404,6 +826180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780419,12 +826197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac3a7b" }, { @@ -780452,6 +826231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780467,12 +826248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed5537" }, { @@ -780500,6 +826282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780515,12 +826299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a57395" } ], @@ -780551,6 +826336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780559,9 +826346,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -780588,6 +826375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780608,12 +826397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -780640,6 +826430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780655,12 +826447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cf636" }, { @@ -780688,6 +826481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780703,12 +826498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a845" }, { @@ -780736,6 +826532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780751,12 +826549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -780784,6 +826583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780799,12 +826600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc5fa" } ], @@ -780835,6 +826637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780855,12 +826659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -780887,6 +826692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780902,12 +826709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "796db7" }, { @@ -780935,6 +826743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780950,12 +826760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47ed9e" }, { @@ -780983,6 +826794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -780998,12 +826811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -781031,6 +826845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781046,12 +826862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfd69a" } ], @@ -781082,6 +826899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781102,12 +826921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -781134,6 +826954,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781149,12 +826971,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4ae63" }, { @@ -781182,6 +827005,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781197,12 +827022,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f2e83" }, { @@ -781230,6 +827056,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781245,12 +827073,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4ae63" }, { @@ -781278,6 +827107,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781293,12 +827124,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -781329,6 +827161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781349,12 +827183,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -781381,6 +827216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781396,12 +827233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad01d5" }, { @@ -781429,6 +827267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781444,12 +827284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e4b6f" }, { @@ -781477,6 +827318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781492,12 +827335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -781525,6 +827369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781540,12 +827386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c04b5" } ], @@ -781579,6 +827426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781594,12 +827443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a22908" }, { @@ -781627,6 +827477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781668,12 +827520,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -781700,6 +827553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781715,12 +827570,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d63054" }, { @@ -781748,6 +827604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781763,12 +827621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b347d1" }, { @@ -781796,6 +827655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781811,12 +827672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36612" }, { @@ -781844,6 +827706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781859,12 +827723,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50fdc5" }, { @@ -781892,6 +827757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781907,12 +827774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4911f2" }, { @@ -781940,6 +827808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -781955,12 +827825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -781988,6 +827859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782003,12 +827876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -782036,6 +827910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782051,12 +827927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "272ea4" }, { @@ -782084,6 +827961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782099,12 +827978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -782132,6 +828012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782147,12 +828029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99efa0" }, { @@ -782180,6 +828063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782195,12 +828080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" }, { @@ -782228,6 +828114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782243,12 +828131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30bb55" }, { @@ -782276,6 +828165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782291,12 +828182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" }, { @@ -782324,6 +828216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782339,12 +828233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -782372,6 +828267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782387,12 +828284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -782420,6 +828318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782435,12 +828335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -782468,6 +828369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782483,12 +828386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -782516,6 +828420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782531,12 +828437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -782564,6 +828471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782579,12 +828488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -782612,6 +828522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782627,12 +828539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -782660,6 +828573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782675,12 +828590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -782708,6 +828624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782723,12 +828641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -782756,6 +828675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782771,12 +828692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -782804,6 +828726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782819,12 +828743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "085cc8" }, { @@ -782852,6 +828777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782867,12 +828794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e472" } ], @@ -782926,6 +828854,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782954,9 +828884,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"254c1f\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"377b20\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"3b18af\":{\"lock\":false,\"pos\":{\"x\":-3.6736,\"y\":1.6627,\"z\":14.7634},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.6961,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"92d5f1\":{\"lock\":false,\"pos\":{\"x\":-3.6998,\"y\":1.5822,\"z\":-15.1453},\"rot\":{\"x\":359.9197,\"y\":270.0052,\"z\":0.0168}},\"9af3a1\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9997,\"z\":0.0803}},\"b053dc\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.009,\"z\":0.0803}},\"f98bcc\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7504,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -782983,6 +828913,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -782998,12 +828930,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "254c1f" }, { @@ -783031,6 +828964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783046,12 +828981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -783079,6 +829015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783097,9 +829035,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -783126,6 +829064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783141,12 +829081,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af188b" }, { @@ -783174,6 +829115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783189,12 +829132,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -783222,6 +829166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783237,12 +829183,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3ccaf" }, { @@ -783270,6 +829217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783285,12 +829234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfcb21" }, { @@ -783318,6 +829268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783333,12 +829285,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce8846" }, { @@ -783366,6 +829319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783381,12 +829336,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -783430,6 +829386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783448,9 +829406,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "92d5f1" }, { @@ -783478,6 +829436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783497,12 +829457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -783529,6 +829490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783544,12 +829507,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c8849" }, { @@ -783577,6 +829541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783592,12 +829558,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c593b7" }, { @@ -783625,6 +829592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783640,12 +829609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" } ], @@ -783676,6 +829646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783695,12 +829667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -783727,6 +829700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783742,12 +829717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -783775,6 +829751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783790,12 +829768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ea05e" }, { @@ -783823,6 +829802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783838,12 +829819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" } ], @@ -783874,6 +829856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783916,12 +829900,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -783948,6 +829933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -783963,12 +829950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -783996,6 +829984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784011,12 +830001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -784044,6 +830035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784059,12 +830052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -784092,6 +830086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784107,12 +830103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" }, { @@ -784140,6 +830137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784155,12 +830154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -784188,6 +830188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784203,12 +830205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -784236,6 +830239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784251,12 +830256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -784284,6 +830290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784299,12 +830307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -784332,6 +830341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784347,12 +830358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -784380,6 +830392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784395,12 +830409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -784428,6 +830443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784443,12 +830460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -784476,6 +830494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784491,12 +830511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -784524,6 +830545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784539,12 +830562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -784572,6 +830596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784587,12 +830613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -784620,6 +830647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784635,12 +830664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -784668,6 +830698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784683,12 +830715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "272ea4" }, { @@ -784716,6 +830749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784731,12 +830766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -784764,6 +830800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784779,12 +830817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99efa0" }, { @@ -784812,6 +830851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784827,12 +830868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" }, { @@ -784860,6 +830902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784875,12 +830919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30bb55" }, { @@ -784908,6 +830953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784923,12 +830970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" }, { @@ -784956,6 +831004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -784971,12 +831021,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -785004,6 +831055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785019,12 +831072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2cf85" }, { @@ -785052,6 +831106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785067,12 +831123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -785100,6 +831157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785115,12 +831174,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -785148,6 +831208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785163,12 +831225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cab587" } ], @@ -785222,6 +831285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785250,9 +831315,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"076b61\":{\"lock\":false,\"pos\":{\"x\":-31.9633,\"y\":1.8288,\"z\":0.0339},\"rot\":{\"x\":4.7395,\"y\":270.0055,\"z\":0.0075}},\"19e7d8\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9205,\"y\":270.0006,\"z\":0.0176}},\"1aa7cb\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.0298},\"rot\":{\"x\":359.9201,\"y\":270.0016,\"z\":0.0168}},\"23b896\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":0.0169}},\"28e161\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7237,\"z\":5.757},\"rot\":{\"x\":359.9197,\"y\":269.9996,\"z\":180.0168}},\"377b20\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":0.0169}},\"50a9d7\":{\"lock\":false,\"pos\":{\"x\":-20.4665,\"y\":1.6122,\"z\":7.3646},\"rot\":{\"x\":0.0799,\"y\":90.0003,\"z\":359.9831}},\"5f4d79\":{\"lock\":false,\"pos\":{\"x\":-21.121,\"y\":1.61,\"z\":-3.2557},\"rot\":{\"x\":0.0684,\"y\":135.0004,\"z\":0.0446}},\"692e5f\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9981,\"z\":0.0169}},\"6a2978\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9998,\"z\":0.0799}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9995,\"z\":0.08}},\"75ffdc\":{\"lock\":false,\"pos\":{\"x\":-26.9897,\"y\":1.6181,\"z\":-3.5596},\"rot\":{\"x\":0.0253,\"y\":30.0002,\"z\":359.9224}},\"775f4f\":{\"lock\":false,\"pos\":{\"x\":-26.9925,\"y\":1.6213,\"z\":7.2863},\"rot\":{\"x\":0.0799,\"y\":89.9998,\"z\":359.9831}},\"8112ff\":{\"lock\":false,\"pos\":{\"x\":-3.692,\"y\":1.5822,\"z\":-14.9167},\"rot\":{\"x\":359.9197,\"y\":270.0211,\"z\":0.0168}},\"83358c\":{\"lock\":false,\"pos\":{\"x\":-27.0804,\"y\":1.6203,\"z\":3.49},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"a22908\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}},\"af8db2\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6862,\"z\":-0.0278},\"rot\":{\"x\":359.9201,\"y\":269.9992,\"z\":0.0169}},\"b5b8db\":{\"lock\":false,\"pos\":{\"x\":-15.6844,\"y\":1.7271,\"z\":-0.0291},\"rot\":{\"x\":0.0879,\"y\":269.9867,\"z\":359.877}},\"c6f13f\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3734},\"rot\":{\"x\":0.0168,\"y\":180.0051,\"z\":0.0803}},\"d2ad6e\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9966,\"z\":0.0169}},\"d716a1\":{\"lock\":false,\"pos\":{\"x\":-27.2073,\"y\":1.6194,\"z\":-0.1216},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"d85d68\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9995,\"z\":0.0799}},\"d9c370\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9996,\"z\":0.0799}},\"e1b8fc\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9992,\"z\":0.0169}},\"e1f778\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9996,\"z\":0.0799}},\"e4821e\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"f859a4\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6555,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9984,\"z\":0.0803}},\"fac63b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -785279,6 +831344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785294,12 +831361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "076b61" }, { @@ -785327,6 +831395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785342,12 +831412,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19e7d8" }, { @@ -785375,6 +831446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785390,12 +831463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1aa7cb" }, { @@ -785423,6 +831497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785438,12 +831514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23b896" }, { @@ -785471,6 +831548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785508,12 +831587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -785540,6 +831620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785555,12 +831637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -785588,6 +831671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785603,12 +831688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4904d0" }, { @@ -785636,6 +831722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785651,12 +831739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d63054" }, { @@ -785684,6 +831773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785699,12 +831790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b347d1" }, { @@ -785732,6 +831824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785747,12 +831841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36612" }, { @@ -785780,6 +831875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785795,12 +831892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50fdc5" }, { @@ -785828,6 +831926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785843,12 +831943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4911f2" }, { @@ -785876,6 +831977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785891,12 +831994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -785924,6 +832028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785939,12 +832045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e04da" }, { @@ -785972,6 +832079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -785987,12 +832096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d0c1c" }, { @@ -786020,6 +832130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786035,12 +832147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -786068,6 +832181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786083,12 +832198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b75b70" }, { @@ -786116,6 +832232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786131,12 +832249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -786164,6 +832283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786179,12 +832300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -786212,6 +832334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786227,12 +832351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -786260,6 +832385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786275,12 +832402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" }, { @@ -786308,6 +832436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786323,12 +832453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "057d5f" }, { @@ -786356,6 +832487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786371,12 +832504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ceae2" }, { @@ -786404,6 +832538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786419,12 +832555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8fcf" }, { @@ -786452,6 +832589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786467,12 +832606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -786500,6 +832640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786515,12 +832657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfaf" } ], @@ -786551,6 +832694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786566,12 +832711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -786599,6 +832745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786617,9 +832765,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50a9d7", "States": { "2": { @@ -786647,6 +832795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786665,9 +832815,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -786695,6 +832845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786713,9 +832865,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -786745,6 +832897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786763,9 +832917,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f4d79", "States": { "2": { @@ -786793,6 +832947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786811,9 +832967,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -786841,6 +832997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786859,9 +833017,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -786891,6 +833049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786906,12 +833066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "692e5f" }, { @@ -786939,6 +833100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -786957,9 +833120,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a2978", "States": { "2": { @@ -786987,6 +833150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787005,9 +833170,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -787035,6 +833200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787053,9 +833220,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -787085,6 +833252,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787103,9 +833272,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -787133,6 +833302,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787151,9 +833322,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -787181,6 +833352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787199,9 +833372,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -787231,6 +833404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787249,9 +833424,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75ffdc", "States": { "2": { @@ -787279,6 +833454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787297,9 +833474,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -787327,6 +833504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787345,9 +833524,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -787377,6 +833556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787395,9 +833576,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "775f4f", "States": { "2": { @@ -787425,6 +833606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787443,9 +833626,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -787473,6 +833656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787491,9 +833676,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -787523,6 +833708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787541,9 +833728,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "8112ff" }, { @@ -787571,6 +833758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787589,9 +833778,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83358c", "States": { "2": { @@ -787619,6 +833808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787637,9 +833828,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -787667,6 +833858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787685,9 +833878,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -787717,6 +833910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787732,12 +833927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a22908" }, { @@ -787765,6 +833961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787780,12 +833978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af8db2" }, { @@ -787813,6 +834012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787828,12 +834029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5b8db" }, { @@ -787861,6 +834063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787879,7 +834083,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2321": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -787887,12 +834092,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -787919,6 +834125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787934,12 +834142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -787967,6 +834176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -787982,12 +834193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c19e2" } ], @@ -788018,6 +834230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788033,12 +834247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2ad6e" }, { @@ -788066,6 +834281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788084,9 +834301,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d716a1", "States": { "2": { @@ -788114,6 +834331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788132,9 +834351,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -788162,6 +834381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788180,9 +834401,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -788212,6 +834433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788230,9 +834453,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d85d68", "States": { "2": { @@ -788260,6 +834483,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788278,9 +834503,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -788308,6 +834533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788326,9 +834553,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -788358,6 +834585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788376,9 +834605,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9c370", "States": { "2": { @@ -788406,6 +834635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788424,9 +834655,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -788454,6 +834685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788472,9 +834705,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -788504,6 +834737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788519,12 +834754,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1b8fc" }, { @@ -788552,6 +834788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788570,9 +834808,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1f778", "States": { "2": { @@ -788600,6 +834838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788618,9 +834858,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -788648,6 +834888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788666,9 +834908,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -788698,6 +834940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788716,9 +834960,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -788745,6 +834989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788766,12 +835012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -788798,6 +835045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788813,12 +835062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -788846,6 +835096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788861,12 +835113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec86a2" }, { @@ -788894,6 +835147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788909,12 +835164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad2df0" }, { @@ -788942,6 +835198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -788957,12 +835215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a12fd2" }, { @@ -788990,6 +835249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789005,12 +835266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -789041,6 +835303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789056,12 +835320,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -789105,6 +835370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789120,12 +835387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f859a4" }, { @@ -789153,6 +835421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789168,12 +835438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fac63b" } ], @@ -789224,6 +835495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789242,9 +835515,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --First checkbox\r\n {\r\n pos = {-0.62,0.1,0.056},\r\n size = 400,\r\n state = false\r\n },\r\n --Second checkbox\r\n {\r\n pos = {-0.629,0.1,0.199},\r\n size = 400,\r\n state = false\r\n },\r\n --Third checkbox\r\n {\r\n pos = {-0.594,0.1,0.355},\r\n size = 400,\r\n state = false\r\n },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n {\r\n pos = {-0.7,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one counter 2\r\n {\r\n pos = {-0.52,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one xp 1\r\n {\r\n pos = {-0.517,0.1,-0.5},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 1\r\n {\r\n pos = {-0.274,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 2\r\n {\r\n pos = {-0.074,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two xp 1\r\n {\r\n pos = {-0.061,0.1,-0.5},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 1\r\n {\r\n pos = {0.153,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 2\r\n {\r\n pos = {0.379,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three xp 1\r\n {\r\n pos = {0.38,0.1,-0.5},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 1\r\n {\r\n pos = {0.614,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 2\r\n {\r\n pos = {0.82,0.1,-0.4},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four xp 1\r\n {\r\n pos = {0.827,0.1,-0.5},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --Slot one player\r\n {\r\n pos = {-0.637,0.1,-0.66},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one investigator\r\n {\r\n pos = {-0.637,0.1,-0.58},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one story\r\n {\r\n pos = {-0.637,0.1,-0.28},\r\n rows = 3,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two player\r\n {\r\n pos = {-0.2,0.1,-0.66},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two investigator\r\n {\r\n pos = {-0.2,0.1,-0.58},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two story\r\n {\r\n pos = {-0.2,0.1,-0.28},\r\n rows = 3,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three player\r\n {\r\n pos = {0.241,0.1,-0.66},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three investigator\r\n {\r\n pos = {0.237,0.1,-0.58},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three story\r\n {\r\n pos = {0.24,0.1,-0.28},\r\n rows = 3,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four player\r\n {\r\n pos = {0.671,0.1,-0.66},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four investigator\r\n {\r\n pos = {0.671,0.1,-0.58},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four story\r\n {\r\n pos = {0.671,0.1,-0.28},\r\n rows = 3,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Killed Textbox\r\n {\r\n pos = {-0.4,0.1,0.68},\r\n rows = 8,\r\n width = 3800,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes\r\n {\r\n pos = {0.507,0.1,0.15},\r\n rows = 8,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Cultists interrogated\r\n {\r\n pos = {0.507,0.1,0.509},\r\n rows = 4,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Cultists got away\r\n {\r\n pos = {0.507,0.1,0.771},\r\n rows = 4,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend", "LuaScriptState": "{\"checkbox\":[{\"pos\":[-0.62,0.1,0.056],\"size\":400,\"state\":false},{\"pos\":[-0.629,0.1,0.199],\"size\":400,\"state\":false},{\"pos\":[-0.594,0.1,0.355],\"size\":400,\"state\":false}],\"counter\":[{\"hideBG\":true,\"pos\":[-0.7,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.52,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.517,0.1,-0.5],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[-0.274,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.074,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.061,0.1,-0.5],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.153,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.379,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.38,0.1,-0.5],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.614,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.82,0.1,-0.4],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.827,0.1,-0.5],\"size\":300,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.66],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.58],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.28],\"rows\":3,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.66],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.58],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.28],\"rows\":3,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.241,0.1,-0.66],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.237,0.1,-0.58],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.24,0.1,-0.28],\"rows\":3,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.66],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.58],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.28],\"rows\":3,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[-0.4,0.1,0.68],\"rows\":8,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[0.507,0.1,0.15],\"rows\":8,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[0.507,0.1,0.509],\"rows\":4,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[0.507,0.1,0.771],\"rows\":4,\"value\":\"\",\"width\":3500}]}", + "XmlUI": "", "GUID": "e0c3e7" } ], @@ -789253,12 +835526,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 51.6531258, - "posY": 1.41376877, - "posZ": 14.500123, + "posX": 51.6531448, + "posY": 1.41376889, + "posZ": 14.5001268, "rotX": 359.9201, - "rotY": 270.0176, - "rotZ": 0.01684844, + "rotY": 270.0175, + "rotZ": 0.01684839, "scaleX": 1.0, "scaleY": 0.139652729, "scaleZ": 1.0 @@ -789275,6 +835548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789303,9 +835578,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 4\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={1.5,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-1.2,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-4,5,6}, rotation={0,0,0}, height=500, width=1000,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1.35,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1.25,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-6,1,0}, rotation={0,90,0}, height=500, width=1200,\r\n-- font_size=350, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"022ddf\":{\"lock\":false,\"pos\":{\"x\":12.2506,\"y\":1.4582,\"z\":-21.3054},\"rot\":{\"x\":359.9201,\"y\":270.0059,\"z\":0.0169}},\"30684d\":{\"lock\":false,\"pos\":{\"x\":12.2504,\"y\":1.4633,\"z\":-3.9198},\"rot\":{\"x\":359.9201,\"y\":269.9969,\"z\":0.0169}},\"3f6ab6\":{\"lock\":false,\"pos\":{\"x\":-1.2999,\"y\":1.4754,\"z\":-26.7614},\"rot\":{\"x\":359.9201,\"y\":269.9921,\"z\":0.0169}},\"51c0d9\":{\"lock\":false,\"pos\":{\"x\":12.2521,\"y\":1.4735,\"z\":30.8264},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0169}},\"684060\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4557,\"z\":-30.0549},\"rot\":{\"x\":359.9201,\"y\":270.0261,\"z\":0.0168}},\"87adbf\":{\"lock\":false,\"pos\":{\"x\":12.2504,\"y\":1.4684,\"z\":13.4375},\"rot\":{\"x\":359.9201,\"y\":270.019,\"z\":0.0168}},\"afe7ce\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4607,\"z\":-12.6661},\"rot\":{\"x\":359.9201,\"y\":270.0073,\"z\":0.0169}},\"d6e449\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4658,\"z\":4.6878},\"rot\":{\"x\":359.9201,\"y\":270.0107,\"z\":0.0169}},\"e3aa5c\":{\"lock\":false,\"pos\":{\"x\":12.2507,\"y\":1.4709,\"z\":22.0769},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -789332,6 +835607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789360,9 +835637,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0f29d2\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6865,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"1d3069\":{\"lock\":false,\"pos\":{\"x\":-3.9272,\"y\":1.8463,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"24d46d\":{\"lock\":false,\"pos\":{\"x\":-5.8948,\"y\":1.5,\"z\":-14.5194},\"rot\":{\"x\":359.9817,\"y\":0,\"z\":359.953}},\"27d0df\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9939,\"z\":0.0803}},\"6c39d5\":{\"lock\":false,\"pos\":{\"x\":-20.6956,\"y\":1.6103,\"z\":-0.0915},\"rot\":{\"x\":359.9201,\"y\":269.9926,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-26.7596,\"y\":1.6187,\"z\":-0.2422},\"rot\":{\"x\":359.9201,\"y\":269.9926,\"z\":0.0169}},\"768494\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6956,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"80236e\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0169}},\"a621ae\":{\"lock\":false,\"pos\":{\"x\":-3.9907,\"y\":1.5827,\"z\":-14.7887},\"rot\":{\"x\":359.9206,\"y\":270.0058,\"z\":0.0172}},\"aa50e4\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"b0b20f\":{\"lock\":false,\"pos\":{\"x\":1.6959,\"y\":1.5583,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"b47b11\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6543,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"b858d0\":{\"lock\":false,\"pos\":{\"x\":-3.7524,\"y\":1.6624,\"z\":15.1757},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"d3ae26\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":0.0169}},\"d5b919\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9976,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -789389,6 +835666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789407,9 +835686,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Where Doom Awaits'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "a621ae" }, { @@ -789437,6 +835716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789445,9 +835726,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -789474,6 +835755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789492,9 +835775,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dedbb0" }, { @@ -789522,6 +835805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789540,9 +835825,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53c7c5" }, { @@ -789570,6 +835855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789588,9 +835875,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5100b" }, { @@ -789618,6 +835905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789636,9 +835925,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ce53d" } ], @@ -789669,6 +835958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789684,12 +835975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -789717,6 +836009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789738,12 +836032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -789770,6 +836065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789785,12 +836082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "881e29" }, { @@ -789818,6 +836116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789833,12 +836133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "905f01" }, { @@ -789866,6 +836167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789881,12 +836184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65d096" }, { @@ -789914,6 +836218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789929,12 +836235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "950fcf" }, { @@ -789962,6 +836269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -789977,12 +836286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -790013,6 +836323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790031,12 +836343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -790063,6 +836376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790078,12 +836393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5d928" }, { @@ -790111,6 +836427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790126,12 +836444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -790162,6 +836481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790222,7 +836543,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2330": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/", @@ -790230,7 +836552,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2662": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -790238,12 +836561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -790270,6 +836594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790285,12 +836611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef7cab" }, { @@ -790318,6 +836645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790333,12 +836662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "651a9e" }, { @@ -790366,6 +836696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790381,12 +836713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c53c4a" }, { @@ -790414,6 +836747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790429,12 +836764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "077019" }, { @@ -790462,6 +836798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790477,12 +836815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -790510,6 +836849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790525,12 +836866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e80a5" }, { @@ -790558,6 +836900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790573,12 +836917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -790606,6 +836951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790621,12 +836968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb0b3" }, { @@ -790654,6 +837002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790669,12 +837019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -790702,6 +837053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790717,12 +837070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -790750,6 +837104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790765,12 +837121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42d459" }, { @@ -790798,6 +837155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790813,12 +837172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -790846,6 +837206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790861,12 +837223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3e2e4" }, { @@ -790894,6 +837257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790909,12 +837274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b6ae2" }, { @@ -790942,6 +837308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -790957,12 +837325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3e2e4" }, { @@ -790990,6 +837359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791005,12 +837376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -791038,6 +837410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791053,12 +837427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "52824c" }, { @@ -791086,6 +837461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791101,12 +837478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -791134,6 +837512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791149,12 +837529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -791182,6 +837563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791197,12 +837580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ec8cc" }, { @@ -791230,6 +837614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791245,12 +837631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -791278,6 +837665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791293,12 +837682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -791326,6 +837716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791341,12 +837733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -791374,6 +837767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791389,12 +837784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f3d39" }, { @@ -791422,6 +837818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791437,12 +837835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e44036" }, { @@ -791470,6 +837869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791485,12 +837886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbe20d" }, { @@ -791518,6 +837920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791533,12 +837937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b9792" }, { @@ -791566,6 +837971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791581,12 +837988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76139c" }, { @@ -791614,6 +838022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791629,12 +838039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -791662,6 +838073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791677,12 +838090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c2f4a" }, { @@ -791710,6 +838124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791725,12 +838141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -791758,6 +838175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791773,12 +838192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -791806,6 +838226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791821,12 +838243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -791854,6 +838277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791869,12 +838294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -791902,6 +838328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791917,12 +838345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -791950,6 +838379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -791965,12 +838396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -791998,6 +838430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792013,12 +838447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -792046,6 +838481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792061,12 +838498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -792094,6 +838532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792109,12 +838549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -792142,6 +838583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792157,12 +838600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -792190,6 +838634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792205,12 +838651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -792238,6 +838685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792253,12 +838702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -792286,6 +838736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792301,12 +838753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -792334,6 +838787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792349,12 +838804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" } ], @@ -792385,6 +838841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792404,12 +838862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -792436,6 +838895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792451,12 +838912,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "919fa0" }, { @@ -792484,6 +838946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792499,12 +838963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -792532,6 +838997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792547,12 +839014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b1dd5" } ], @@ -792583,6 +839051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792601,9 +839071,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -792630,6 +839100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792645,12 +839117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" } ], @@ -792694,6 +839167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792709,12 +839184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5b919" }, { @@ -792742,6 +839218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792760,9 +839238,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c39d5", "States": { "2": { @@ -792790,6 +839268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792808,9 +839288,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -792838,6 +839318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792856,9 +839338,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -792888,6 +839370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792903,12 +839387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3ae26" }, { @@ -792936,6 +839421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -792954,9 +839441,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -792984,6 +839471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793002,9 +839491,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -793032,6 +839521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793050,9 +839541,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -793082,6 +839573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793097,12 +839590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80236e" }, { @@ -793130,6 +839624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793150,12 +839646,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -793182,6 +839679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793197,12 +839696,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd637" }, { @@ -793230,6 +839730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793245,12 +839747,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d05756" }, { @@ -793278,6 +839781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793293,12 +839798,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7239aa" }, { @@ -793326,6 +839832,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793341,12 +839849,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49a3cd" } ], @@ -793377,6 +839886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793397,12 +839908,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -793429,6 +839941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793444,12 +839958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "493726" }, { @@ -793477,6 +839992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793492,12 +840009,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66af3c" }, { @@ -793525,6 +840043,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793540,12 +840060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "becc3c" }, { @@ -793573,6 +840094,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793588,12 +840111,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d2043" } ], @@ -793647,6 +840171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793675,9 +840201,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0504b5\":{\"lock\":false,\"pos\":{\"x\":-11.2927,\"y\":1.6709,\"z\":10.4744},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"073668\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"188869\":{\"lock\":false,\"pos\":{\"x\":-33.7877,\"y\":1.6274,\"z\":-4.1144},\"rot\":{\"x\":359.9316,\"y\":314.9952,\"z\":359.9554}},\"35bf8e\":{\"lock\":false,\"pos\":{\"x\":-26.6194,\"y\":1.6208,\"z\":7.5118},\"rot\":{\"x\":0.0799,\"y\":89.9971,\"z\":359.9831}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9836,\"y\":0.3774,\"z\":359.92}},\"47ff0e\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"55cac8\":{\"lock\":false,\"pos\":{\"x\":-11.1326,\"y\":1.4142,\"z\":7.5416},\"rot\":{\"x\":359.9831,\"y\":-0.0023,\"z\":359.92}},\"5b01f6\":{\"lock\":false,\"pos\":{\"x\":-33.432,\"y\":1.6303,\"z\":7.3588},\"rot\":{\"x\":0.0799,\"y\":89.997,\"z\":359.9831}},\"69b78e\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9983,\"z\":0.0799}},\"7b8844\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"82f7d9\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7664,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"84963c\":{\"lock\":false,\"pos\":{\"x\":-33.5151,\"y\":1.6282,\"z\":-0.0061},\"rot\":{\"x\":0.0799,\"y\":90.0005,\"z\":359.9831}},\"92b54a\":{\"lock\":false,\"pos\":{\"x\":-3.4005,\"y\":1.5817,\"z\":-15.4017},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"bd431f\":{\"lock\":false,\"pos\":{\"x\":-26.8466,\"y\":1.6179,\"z\":-3.4794},\"rot\":{\"x\":0.0446,\"y\":45.01,\"z\":359.9316}},\"c5df1c\":{\"lock\":false,\"pos\":{\"x\":-26.718,\"y\":1.6187,\"z\":-0.1288},\"rot\":{\"x\":0.0799,\"y\":90.0005,\"z\":359.9831}},\"d9037e\":{\"lock\":false,\"pos\":{\"x\":-3.6238,\"y\":1.6738,\"z\":14.82},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"ec1b56\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9983,\"z\":0.0799}},\"eda3e2\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9982,\"z\":0.0799}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -793704,6 +840230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793726,12 +840254,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -793758,6 +840287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793773,12 +840304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb489f" }, { @@ -793806,6 +840338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793821,12 +840355,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5da81c" }, { @@ -793854,6 +840389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793869,12 +840406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b2e99" }, { @@ -793902,6 +840440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793917,12 +840457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5bca1" }, { @@ -793950,6 +840491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -793965,12 +840508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -793998,6 +840542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794013,12 +840559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -794049,6 +840596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794067,9 +840616,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -794096,6 +840645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794111,12 +840662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f96ed0" }, { @@ -794144,6 +840696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794159,12 +840713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49f43a" }, { @@ -794192,6 +840747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794207,12 +840764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb0272" }, { @@ -794240,6 +840798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794255,12 +840815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" } ], @@ -794304,6 +840865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794349,7 +840912,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -794357,12 +840921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -794389,6 +840954,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794404,12 +840971,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36342a" }, { @@ -794437,6 +841005,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794452,12 +841022,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebb8db" }, { @@ -794485,6 +841056,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794500,12 +841073,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -794533,6 +841107,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794548,12 +841124,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -794581,6 +841158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794596,12 +841175,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "830622" }, { @@ -794629,6 +841209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794644,12 +841226,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c9b2a" }, { @@ -794677,6 +841260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794692,12 +841277,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "830622" }, { @@ -794725,6 +841311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794740,12 +841328,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfd751" }, { @@ -794773,6 +841362,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794788,12 +841379,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26556a" }, { @@ -794821,6 +841413,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794836,12 +841430,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfd751" }, { @@ -794869,6 +841464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794884,12 +841481,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e0f1" }, { @@ -794917,6 +841515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794932,12 +841532,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b8170" }, { @@ -794965,6 +841566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -794980,12 +841583,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -795013,6 +841617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795028,12 +841634,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e13f3" }, { @@ -795061,6 +841668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795076,12 +841685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -795109,6 +841719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795124,12 +841736,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95f4d1" }, { @@ -795157,6 +841770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795172,12 +841787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -795205,6 +841821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795220,12 +841838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60ef9e" }, { @@ -795253,6 +841872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795268,12 +841889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40e9d0" }, { @@ -795301,6 +841923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795316,12 +841940,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -795349,6 +841974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795364,12 +841991,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61c583" }, { @@ -795397,6 +842025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795412,12 +842042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -795445,6 +842076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795460,12 +842093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e04da" }, { @@ -795493,6 +842127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795508,12 +842144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d0c1c" }, { @@ -795541,6 +842178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795556,12 +842195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -795589,6 +842229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795604,12 +842246,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b75b70" }, { @@ -795637,6 +842280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795652,12 +842297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -795685,6 +842331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795700,12 +842348,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -795733,6 +842382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795748,12 +842399,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" } ], @@ -795784,6 +842436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795803,12 +842457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -795835,6 +842490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795850,12 +842507,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6286f9" }, { @@ -795883,6 +842541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795898,12 +842558,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f5a49" }, { @@ -795931,6 +842592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -795946,12 +842609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abf877" } ], @@ -795982,6 +842646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796000,12 +842666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -796032,6 +842699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796047,12 +842716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "960a29" }, { @@ -796080,6 +842750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796095,12 +842767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -796131,6 +842804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796146,12 +842821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -796179,6 +842855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796197,9 +842875,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Blood on the Altar'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "92b54a" }, { @@ -796227,6 +842905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796235,9 +842915,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -796264,6 +842944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796282,12 +842964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -796314,6 +842997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796329,12 +843014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0f3d" }, { @@ -796362,6 +843048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796377,12 +843065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce3bcc" } ], @@ -796413,6 +843102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796431,12 +843122,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -796463,6 +843155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796478,12 +843172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a909a" }, { @@ -796511,6 +843206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796526,12 +843223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159555" } ], @@ -796562,6 +843260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796580,12 +843280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -796612,6 +843313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796627,12 +843330,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "084254" }, { @@ -796660,6 +843364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796675,12 +843381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8579aa" } ], @@ -796711,6 +843418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796729,12 +843438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -796761,6 +843471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796776,12 +843488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c4849" }, { @@ -796809,6 +843522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796824,12 +843539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "943aea" } ], @@ -796860,6 +843576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796878,12 +843596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -796910,6 +843629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796925,12 +843646,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19ce2b" }, { @@ -796958,6 +843680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -796973,12 +843697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2559b7" } ], @@ -797009,6 +843734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797027,12 +843754,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -797059,6 +843787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797074,12 +843804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f3193" }, { @@ -797107,6 +843838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797122,12 +843855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "333962" } ], @@ -797161,6 +843895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797182,12 +843918,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -797214,6 +843951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797229,12 +843968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6714b2" }, { @@ -797262,6 +844002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797277,12 +844019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f14dce" }, { @@ -797310,6 +844053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797325,12 +844070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f03306" }, { @@ -797358,6 +844104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797373,12 +844121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42806b" }, { @@ -797406,6 +844155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797421,12 +844172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66197b" } ], @@ -797457,6 +844209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797475,9 +844229,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec1b56", "States": { "2": { @@ -797505,6 +844259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797523,9 +844279,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -797553,6 +844309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797571,9 +844329,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -797603,6 +844361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797621,9 +844381,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35bf8e", "States": { "2": { @@ -797651,6 +844411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797669,9 +844431,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -797699,6 +844461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797717,9 +844481,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -797749,6 +844513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797767,9 +844533,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -797797,6 +844563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797815,9 +844583,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -797845,6 +844613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797863,9 +844633,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5d320" } } @@ -797895,6 +844665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797913,9 +844685,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b01f6", "States": { "2": { @@ -797943,6 +844715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -797961,9 +844735,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -797991,6 +844765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798009,9 +844785,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -798041,6 +844817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798059,9 +844837,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eda3e2", "States": { "2": { @@ -798089,6 +844867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798107,9 +844887,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -798137,6 +844917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798155,9 +844937,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -798187,6 +844969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798205,9 +844989,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84963c", "States": { "2": { @@ -798235,6 +845019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798253,9 +845039,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -798283,6 +845069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798301,9 +845089,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -798333,6 +845121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798348,12 +845138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47ff0e" }, { @@ -798381,6 +845172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798399,9 +845192,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -798429,6 +845222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798447,9 +845242,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -798477,6 +845272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798495,9 +845292,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -798527,6 +845324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798545,9 +845344,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "188869", "States": { "2": { @@ -798575,6 +845374,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798593,9 +845394,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -798623,6 +845424,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798641,9 +845444,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -798673,6 +845476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798691,9 +845496,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd431f", "States": { "2": { @@ -798721,6 +845526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798739,9 +845546,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -798769,6 +845576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798787,9 +845596,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -798819,6 +845628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798837,9 +845648,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5df1c", "States": { "2": { @@ -798867,6 +845678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798885,9 +845698,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -798915,6 +845728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -798933,9 +845748,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -798988,6 +845803,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799006,9 +845823,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --First checkbox\r\n-- {\r\n-- pos = {-0.62,0.1,0.056},\r\n-- size = 400,\r\n-- state = false\r\n-- },\r\n --Second checkbox\r\n-- {\r\n-- pos = {-0.629,0.1,0.199},\r\n-- size = 400,\r\n-- state = false\r\n-- },\r\n --Third checkbox\r\n-- {\r\n-- pos = {-0.594,0.1,0.355},\r\n-- size = 400,\r\n-- state = false\r\n-- },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n {\r\n pos = {-0.7,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one counter 2\r\n {\r\n pos = {-0.52,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one xp 1\r\n {\r\n pos = {-0.517,0.1,-0.55},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 1\r\n {\r\n pos = {-0.274,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 2\r\n {\r\n pos = {-0.074,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two xp 1\r\n {\r\n pos = {-0.061,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 1\r\n {\r\n pos = {0.153,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 2\r\n {\r\n pos = {0.379,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three xp 1\r\n {\r\n pos = {0.38,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 1\r\n {\r\n pos = {0.614,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 2\r\n {\r\n pos = {0.82,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four xp 1\r\n {\r\n pos = {0.827,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --Slot one player\r\n {\r\n pos = {-0.637,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one investigator\r\n {\r\n pos = {-0.637,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one story\r\n {\r\n pos = {-0.637,0.1,-0.25},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two player\r\n {\r\n pos = {-0.2,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two investigator\r\n {\r\n pos = {-0.2,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two story\r\n {\r\n pos = {-0.2,0.1,-0.25},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three player\r\n {\r\n pos = {0.241,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three investigator\r\n {\r\n pos = {0.237,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three story\r\n {\r\n pos = {0.24,0.1,-0.25},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four player\r\n {\r\n pos = {0.671,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four investigator\r\n {\r\n pos = {0.671,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four story\r\n {\r\n pos = {0.671,0.1,-0.25},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes\r\n {\r\n pos = {-0.45,0.1,0.55},\r\n rows =18,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes 2\r\n {\r\n pos = {0.384,0.1,0.228},\r\n rows = 8,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Cultists interrogated\r\n {\r\n pos = {0.384,0.1,0.69},\r\n rows = 8,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", "LuaScriptState": "{\"checkbox\":[],\"counter\":[{\"hideBG\":true,\"pos\":[-0.7,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.52,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.517,0.1,-0.55],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[-0.274,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.074,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.061,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.153,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.379,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.38,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.614,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.82,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.827,0.1,-0.54],\"size\":300,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.25],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.25],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.241,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.237,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.24,0.1,-0.25],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.25],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[-0.45,0.1,0.55],\"rows\":18,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[0.384,0.1,0.228],\"rows\":8,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[0.384,0.1,0.69],\"rows\":8,\"value\":\"\",\"width\":3500}]}", + "XmlUI": "", "GUID": "3f6ab6", "States": { "2": { @@ -799036,6 +845853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799054,9 +845873,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --1 checkbox\r\n {\r\n pos = {-0.847,0.1,-0.649},\r\n size = 250,\r\n state = false\r\n },\r\n --2 checkbox\r\n {\r\n pos = {-0.514,0.1,-0.733},\r\n size = 250,\r\n state = false\r\n },\r\n --3 checkbox\r\n {\r\n pos = {-0.512,0.1,-0.612},\r\n size = 250,\r\n state = false\r\n },\r\n --4 checkbox\r\n {\r\n pos = {0.175,0.1,-0.708},\r\n size = 250,\r\n state = false\r\n },\r\n --5 checkbox\r\n {\r\n pos = {0.174,0.1,-0.574},\r\n size = 250,\r\n state = false\r\n },\r\n --6 checkbox\r\n {\r\n pos = {-0.035,0.1,-0.408},\r\n size = 250,\r\n state = false\r\n },\r\n --7 checkbox\r\n {\r\n pos = {-0.818,0.1,-0.373},\r\n size = 250,\r\n state = false\r\n },\r\n --8 checkbox\r\n {\r\n pos = {-0.361,0.1,-0.235},\r\n size = 250,\r\n state = false\r\n },\r\n --9 checkbox\r\n {\r\n pos = {0.323,0.1,-0.091},\r\n size = 250,\r\n state = false\r\n },\r\n --10 checkbox\r\n {\r\n pos = {-0.099,0.1,0.027},\r\n size = 250,\r\n state = false\r\n },\r\n --11 checkbox\r\n {\r\n pos = {-0.778,0.1,0.126},\r\n size = 250,\r\n state = false\r\n },\r\n --12 checkbox\r\n {\r\n pos = {-0.256,0.1,0.296},\r\n size = 250,\r\n state = false\r\n },\r\n --13 checkbox\r\n {\r\n pos = {0.179,0.1,0.461},\r\n size = 250,\r\n state = false\r\n },\r\n --14 checkbox\r\n {\r\n pos = {0.289,0.1,0.726},\r\n size = 250,\r\n state = false\r\n },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n\r\n --Campaign Notes\r\n {\r\n pos = {-0.4,0.1,0.652},\r\n rows =6,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", "LuaScriptState": "{\"checkbox\":[{\"pos\":[-0.847,0.1,-0.649],\"size\":250,\"state\":false},{\"pos\":[-0.514,0.1,-0.733],\"size\":250,\"state\":false},{\"pos\":[-0.512,0.1,-0.612],\"size\":250,\"state\":false},{\"pos\":[0.175,0.1,-0.708],\"size\":250,\"state\":false},{\"pos\":[0.174,0.1,-0.574],\"size\":250,\"state\":false},{\"pos\":[-0.035,0.1,-0.408],\"size\":250,\"state\":false},{\"pos\":[-0.818,0.1,-0.373],\"size\":250,\"state\":false},{\"pos\":[-0.361,0.1,-0.235],\"size\":250,\"state\":false},{\"pos\":[0.323,0.1,-0.091],\"size\":250,\"state\":false},{\"pos\":[-0.099,0.1,0.027],\"size\":250,\"state\":false},{\"pos\":[-0.778,0.1,0.126],\"size\":250,\"state\":false},{\"pos\":[-0.256,0.1,0.296],\"size\":250,\"state\":false},{\"pos\":[0.179,0.1,0.461],\"size\":250,\"state\":false},{\"pos\":[0.289,0.1,0.726],\"size\":250,\"state\":false}],\"counter\":[],\"textbox\":[{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[-0.4,0.1,0.652],\"rows\":6,\"value\":\"\",\"width\":3500}]}", + "XmlUI": "", "GUID": "72c448" } } @@ -799086,6 +845905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799114,9 +845935,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0f2974\":{\"lock\":false,\"pos\":{\"x\":-20.7735,\"y\":1.6115,\"z\":3.5115},\"rot\":{\"x\":0.0684,\"y\":135.0002,\"z\":0.0446}},\"1dc5c6\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7824,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"2503af\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"286219\":{\"lock\":false,\"pos\":{\"x\":-20.5694,\"y\":1.6091,\"z\":-3.7571},\"rot\":{\"x\":359.9747,\"y\":209.9971,\"z\":0.0776}},\"4541f6\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"45f91d\":{\"lock\":false,\"pos\":{\"x\":-17.1267,\"y\":1.6748,\"z\":-7.6938},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"487f5f\":{\"lock\":false,\"pos\":{\"x\":-20.7003,\"y\":1.6125,\"z\":7.3831},\"rot\":{\"x\":0.0799,\"y\":90,\"z\":359.9831}},\"6cdee5\":{\"lock\":false,\"pos\":{\"x\":-20.2528,\"y\":1.6097,\"z\":0.0039},\"rot\":{\"x\":0.0799,\"y\":89.9994,\"z\":359.9831}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"72b0c4\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"9abec6\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"ad24b9\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9798,\"z\":0.0799}},\"b26fdd\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9798,\"z\":0.0799}},\"b90f89\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9978,\"z\":0.0803}},\"c33d1f\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"db7433\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"e7dfe0\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"f5db25\":{\"lock\":false,\"pos\":{\"x\":-3.6233,\"y\":1.5823,\"z\":-14.5603},\"rot\":{\"x\":359.9197,\"y\":269.9996,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -799143,6 +845964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799161,9 +845984,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f2974", "States": { "2": { @@ -799191,6 +846014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799209,9 +846034,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -799239,6 +846064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799257,9 +846084,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -799289,6 +846116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799337,7 +846166,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -799345,12 +846175,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -799377,6 +846208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799392,12 +846225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -799425,6 +846259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799440,12 +846276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb0b3" }, { @@ -799473,6 +846310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799488,12 +846327,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -799521,6 +846361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799536,12 +846378,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -799569,6 +846412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799584,12 +846429,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42d459" }, { @@ -799617,6 +846463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799632,12 +846480,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -799665,6 +846514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799680,12 +846531,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d6b0f" }, { @@ -799713,6 +846565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799728,12 +846582,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db1aee" }, { @@ -799761,6 +846616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799776,12 +846633,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "851dc1" }, { @@ -799809,6 +846667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799824,12 +846684,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8906a9" }, { @@ -799857,6 +846718,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799872,12 +846735,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -799905,6 +846769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799920,12 +846786,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d91086" }, { @@ -799953,6 +846820,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -799968,12 +846837,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e44036" }, { @@ -800001,6 +846871,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800016,12 +846888,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbe20d" }, { @@ -800049,6 +846922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800064,12 +846939,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b9792" }, { @@ -800097,6 +846973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800112,12 +846990,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76139c" }, { @@ -800145,6 +847024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800160,12 +847041,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -800193,6 +847075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800208,12 +847092,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c2f4a" }, { @@ -800241,6 +847126,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800256,12 +847143,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60ef9e" }, { @@ -800289,6 +847177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800304,12 +847194,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40e9d0" }, { @@ -800337,6 +847228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800352,12 +847245,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -800385,6 +847279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800400,12 +847296,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61c583" }, { @@ -800433,6 +847330,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800448,12 +847347,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -800481,6 +847381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800496,12 +847398,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -800529,6 +847432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800544,12 +847449,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -800577,6 +847483,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800592,12 +847500,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -800625,6 +847534,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800640,12 +847551,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -800673,6 +847585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800688,12 +847602,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4904d0" }, { @@ -800721,6 +847636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800736,12 +847653,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad01d5" }, { @@ -800769,6 +847687,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800784,12 +847704,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e4b6f" }, { @@ -800817,6 +847738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800832,12 +847755,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -800865,6 +847789,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800880,12 +847806,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c04b5" } ], @@ -800916,6 +847843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800931,12 +847860,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2503af" }, { @@ -800964,6 +847894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -800982,9 +847914,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "286219", "States": { "2": { @@ -801012,6 +847944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801030,9 +847964,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -801060,6 +847994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801078,9 +848014,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -801110,6 +848046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801125,12 +848063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4541f6" }, { @@ -801158,6 +848097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801173,12 +848114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45f91d" }, { @@ -801206,6 +848148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801224,9 +848168,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "487f5f", "States": { "2": { @@ -801254,6 +848198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801272,9 +848218,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -801302,6 +848248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801320,9 +848268,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -801352,6 +848300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801370,9 +848320,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6cdee5", "States": { "2": { @@ -801400,6 +848350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801418,9 +848370,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -801448,6 +848400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801466,9 +848420,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -801498,6 +848452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801513,12 +848469,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -801546,6 +848503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801565,12 +848524,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -801597,6 +848557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801612,12 +848574,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae9906" }, { @@ -801645,6 +848608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801660,12 +848625,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7ee8a" }, { @@ -801693,6 +848659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801708,12 +848676,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -801744,6 +848713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801762,9 +848733,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -801791,6 +848762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801806,12 +848779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66197b" }, { @@ -801839,6 +848813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801854,12 +848830,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "685c14" }, { @@ -801887,6 +848864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801902,12 +848881,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd02ba" }, { @@ -801935,6 +848915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801950,12 +848932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42806b" }, { @@ -801983,6 +848966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -801998,12 +848983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c7371" }, { @@ -802031,6 +849017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802046,12 +849034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85d21d" }, { @@ -802079,6 +849068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802094,12 +849085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "379ac4" }, { @@ -802127,6 +849119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802145,12 +849139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -802177,6 +849172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802192,12 +849189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c567d" }, { @@ -802225,6 +849223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802240,12 +849240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fda8e" } ], @@ -802292,6 +849293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802310,9 +849313,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad24b9", "States": { "2": { @@ -802340,6 +849343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802358,9 +849363,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -802388,6 +849393,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802406,9 +849413,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -802438,6 +849445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802456,9 +849465,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b26fdd", "States": { "2": { @@ -802486,6 +849495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802504,9 +849515,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -802534,6 +849545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802552,9 +849565,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -802584,6 +849597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802603,12 +849618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -802635,6 +849651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802650,12 +849668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fac5d" }, { @@ -802683,6 +849702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802698,12 +849719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1cd6b" }, { @@ -802731,6 +849753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802746,12 +849770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -802782,6 +849807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802797,12 +849824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c33d1f" }, { @@ -802830,6 +849858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802845,12 +849875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db7433" }, { @@ -802878,6 +849909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802893,12 +849926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7dfe0" }, { @@ -802926,6 +849960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -802944,9 +849980,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Dunwich Legacy'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5db25" } ], @@ -802997,6 +850033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803025,9 +850063,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"18fe65\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"64a607\":{\"lock\":false,\"pos\":{\"x\":-4.0506,\"y\":1.5828,\"z\":-14.8887},\"rot\":{\"x\":359.9197,\"y\":269.9735,\"z\":0.0169}},\"680d25\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"72053e\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"726813\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.8357,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"8662fa\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"aa50e4\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -803054,6 +850092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803072,9 +850112,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -803101,6 +850141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803116,12 +850158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -803149,6 +850192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803164,12 +850209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8985b" }, { @@ -803197,6 +850243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803212,12 +850260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bcbc5" } ], @@ -803261,6 +850310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803319,7 +850370,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -803327,7 +850379,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -803335,12 +850388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -803367,6 +850421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803382,12 +850438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8e111" }, { @@ -803415,6 +850472,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803430,12 +850489,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bf115" }, { @@ -803463,6 +850523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803478,12 +850540,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8e111" }, { @@ -803511,6 +850574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803526,12 +850591,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bed20e" }, { @@ -803559,6 +850625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803574,12 +850642,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d22809" }, { @@ -803607,6 +850676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803622,12 +850693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -803655,6 +850727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803670,12 +850744,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab9229" }, { @@ -803703,6 +850778,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803718,12 +850795,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -803751,6 +850829,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803766,12 +850846,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04fae6" }, { @@ -803799,6 +850880,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803814,12 +850897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f9f0a" }, { @@ -803847,6 +850931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803862,12 +850948,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -803895,6 +850982,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803910,12 +850999,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "224e79" }, { @@ -803943,6 +851033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -803958,12 +851050,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "816c6e" }, { @@ -803991,6 +851084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804006,12 +851101,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a817e8" }, { @@ -804039,6 +851135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804054,12 +851152,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c704c2" }, { @@ -804087,6 +851186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804102,12 +851203,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c0430" }, { @@ -804135,6 +851237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804150,12 +851254,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ccf98" }, { @@ -804183,6 +851288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804198,12 +851305,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8100cf" }, { @@ -804231,6 +851339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804246,12 +851356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b1dac" }, { @@ -804279,6 +851390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804294,12 +851407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -804327,6 +851441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804342,12 +851458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "788a8c" }, { @@ -804375,6 +851492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804390,12 +851509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -804423,6 +851543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804438,12 +851560,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -804471,6 +851594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804486,12 +851611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -804519,6 +851645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804534,12 +851662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb0b3" }, { @@ -804567,6 +851696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804582,12 +851713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -804615,6 +851747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804630,12 +851764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -804663,6 +851798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804678,12 +851815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42d459" }, { @@ -804711,6 +851849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804726,12 +851866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -804759,6 +851900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804774,12 +851917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d6b0f" }, { @@ -804807,6 +851951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804822,12 +851968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db1aee" }, { @@ -804855,6 +852002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804870,12 +852019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "851dc1" }, { @@ -804903,6 +852053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804918,12 +852070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8906a9" }, { @@ -804951,6 +852104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -804966,12 +852121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -804999,6 +852155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805014,12 +852172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d91086" }, { @@ -805047,6 +852206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805062,12 +852223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "919fa0" }, { @@ -805095,6 +852257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805110,12 +852274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -805143,6 +852308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805158,12 +852325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b1dd5" }, { @@ -805191,6 +852359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805206,12 +852376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad01d5" }, { @@ -805239,6 +852410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805254,12 +852427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e4b6f" }, { @@ -805287,6 +852461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805302,12 +852478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -805335,6 +852512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805350,12 +852529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c04b5" } ], @@ -805386,6 +852566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805406,12 +852588,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -805438,6 +852621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805453,12 +852638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3bf03" }, { @@ -805486,6 +852672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805501,12 +852689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "930050" }, { @@ -805534,6 +852723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805549,12 +852740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19793c" }, { @@ -805582,6 +852774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805597,12 +852791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -805633,6 +852828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805653,12 +852850,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -805685,6 +852883,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805700,12 +852900,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36ab3e" }, { @@ -805733,6 +852934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805748,12 +852951,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ff26a" }, { @@ -805781,6 +852985,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805796,12 +853002,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85ddfb" }, { @@ -805829,6 +853036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805844,12 +853053,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -805880,6 +853090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805895,12 +853107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -805928,6 +853141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805946,9 +853161,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Lost in Time and Space'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "64a607" }, { @@ -805976,6 +853191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -805991,12 +853208,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8662fa" } ], @@ -806047,6 +853265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806075,9 +853295,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0727ee\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"0b0c58\":{\"lock\":false,\"pos\":{\"x\":-5.7816,\"y\":1.6687,\"z\":15.6917},\"rot\":{\"x\":359.9197,\"y\":270.0067,\"z\":180.0168}},\"2eb7a1\":{\"lock\":false,\"pos\":{\"x\":-21.4944,\"y\":1.7855,\"z\":-7.738},\"rot\":{\"x\":356.077,\"y\":270.0019,\"z\":0.0175}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-20.5196,\"y\":1.6101,\"z\":-0.0882},\"rot\":{\"x\":359.9201,\"y\":269.9942,\"z\":0.0169}},\"5a6870\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"62c028\":{\"lock\":false,\"pos\":{\"x\":-3.9268,\"y\":1.793,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"633816\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"6571a3\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"703373\":{\"lock\":false,\"pos\":{\"x\":-4.1502,\"y\":1.5829,\"z\":-14.7443},\"rot\":{\"x\":359.9197,\"y\":269.9849,\"z\":0.0169}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"b24a2a\":{\"lock\":false,\"pos\":{\"x\":-2.4995,\"y\":1.6602,\"z\":15.6924},\"rot\":{\"x\":359.9197,\"y\":270.0029,\"z\":0.0168}},\"c3915f\":{\"lock\":false,\"pos\":{\"x\":-21.5971,\"y\":1.7953,\"z\":7.5353},\"rot\":{\"x\":355.8867,\"y\":269.984,\"z\":0.0177}},\"cf40fc\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"d2eb25\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6884,\"z\":7.5698},\"rot\":{\"x\":359.9185,\"y\":270.0043,\"z\":0.0158}},\"dbdfa1\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"fa04c2\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"fcb3e4\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.684,\"z\":-7.7002},\"rot\":{\"x\":359.9186,\"y\":270.0033,\"z\":0.0158}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -806104,6 +853324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806122,9 +853344,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -806151,6 +853373,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806166,12 +853390,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -806199,6 +853424,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806214,12 +853441,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d45f10" }, { @@ -806247,6 +853475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806262,12 +853492,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40c516" }, { @@ -806295,6 +853526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806310,12 +853543,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e88ba8" } ], @@ -806359,6 +853593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806374,12 +853610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b0c58" }, { @@ -806407,6 +853644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806422,12 +853661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2eb7a1" }, { @@ -806455,6 +853695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806473,9 +853715,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -806503,6 +853745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806521,9 +853765,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -806551,6 +853795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806569,9 +853815,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -806601,6 +853847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806619,9 +853867,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a6870", "States": { "3": { @@ -806649,6 +853897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806667,9 +853917,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "2": { @@ -806697,6 +853947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806715,9 +853967,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" } } @@ -806747,6 +853999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806797,7 +854051,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -806805,12 +854060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -806837,6 +854093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806852,12 +854110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f4382" }, { @@ -806885,6 +854144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806900,12 +854161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe4557" }, { @@ -806933,6 +854195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806948,12 +854212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf889d" }, { @@ -806981,6 +854246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -806996,12 +854263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd9bc9" }, { @@ -807029,6 +854297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807044,12 +854314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee2862" }, { @@ -807077,6 +854348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807092,12 +854365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e2895" }, { @@ -807125,6 +854399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807140,12 +854416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee2862" }, { @@ -807173,6 +854450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807188,12 +854467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c35c1" }, { @@ -807221,6 +854501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807236,12 +854518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "969c50" }, { @@ -807269,6 +854552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807284,12 +854569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -807317,6 +854603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807332,12 +854620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8cc8c" }, { @@ -807365,6 +854654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807380,12 +854671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d6b4c" }, { @@ -807413,6 +854705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807428,12 +854722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8cc8c" }, { @@ -807461,6 +854756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807476,12 +854773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -807509,6 +854807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807524,12 +854824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64281b" }, { @@ -807557,6 +854858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807572,12 +854875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -807605,6 +854909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807620,12 +854926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -807653,6 +854960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807668,12 +854977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb0b3" }, { @@ -807701,6 +855011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807716,12 +855028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d56ff7" }, { @@ -807749,6 +855062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807764,12 +855079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -807797,6 +855113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807812,12 +855130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42d459" }, { @@ -807845,6 +855164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807860,12 +855181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -807893,6 +855215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807908,12 +855232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d6b0f" }, { @@ -807941,6 +855266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -807956,12 +855283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db1aee" }, { @@ -807989,6 +855317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808004,12 +855334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "851dc1" }, { @@ -808037,6 +855368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808052,12 +855385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8906a9" }, { @@ -808085,6 +855419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808100,12 +855436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -808133,6 +855470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808148,12 +855487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d91086" }, { @@ -808181,6 +855521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808196,12 +855538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -808229,6 +855572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808244,12 +855589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -808277,6 +855623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808292,12 +855640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -808325,6 +855674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808340,12 +855691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" }, { @@ -808373,6 +855725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808388,12 +855742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -808421,6 +855776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808436,12 +855793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4904d0" } ], @@ -808472,6 +855830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808487,12 +855847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633816" }, { @@ -808520,6 +855881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808540,12 +855903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -808572,6 +855936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808587,12 +855953,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aaceb4" }, { @@ -808620,6 +855987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808635,12 +856004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "588bec" }, { @@ -808668,6 +856038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808683,12 +856055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "726ac2" }, { @@ -808716,6 +856089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808731,12 +856106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -808767,6 +856143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808785,9 +856163,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Miskatonic Museum'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "703373" }, { @@ -808815,6 +856193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808830,12 +856210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -808863,6 +856244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808884,12 +856267,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -808916,6 +856300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808931,12 +856317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3ffb6" }, { @@ -808964,6 +856351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -808979,12 +856368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "563240" }, { @@ -809012,6 +856402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809027,12 +856419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63e894" }, { @@ -809060,6 +856453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809075,12 +856470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e872c5" }, { @@ -809108,6 +856504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809123,12 +856521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da02ea" } ], @@ -809159,6 +856558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809174,12 +856575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3915f" }, { @@ -809207,6 +856609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809222,12 +856626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf40fc" }, { @@ -809255,6 +856660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809270,12 +856677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2eb25" }, { @@ -809303,6 +856711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809322,12 +856732,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -809354,6 +856765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809369,12 +856782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70a774" }, { @@ -809402,6 +856816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809417,12 +856833,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "742cea" }, { @@ -809450,6 +856867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809465,12 +856884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -809501,6 +856921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809519,9 +856941,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa04c2", "States": { "3": { @@ -809549,6 +856971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809567,9 +856991,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "2": { @@ -809597,6 +857021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809615,9 +857041,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dc30c" } } @@ -809647,6 +857073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809662,12 +857090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcb3e4" } ], @@ -809718,6 +857147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809746,9 +857177,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"04861e\":{\"lock\":false,\"pos\":{\"x\":-22.0986,\"y\":1.8285,\"z\":-0.0798},\"rot\":{\"x\":354.603,\"y\":270.0026,\"z\":0.007}},\"05b0dd\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9203,\"y\":270.0002,\"z\":0.0157}},\"2ee2b1\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7877,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"2ee4bd\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"393c71\":{\"lock\":false,\"pos\":{\"x\":-3.9621,\"y\":1.5828,\"z\":-14.419},\"rot\":{\"x\":359.9197,\"y\":270.0058,\"z\":0.0168}},\"42e1b7\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6839,\"z\":-7.7},\"rot\":{\"x\":359.9203,\"y\":269.9948,\"z\":0.016}},\"57d9e9\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9841,\"z\":0.0799}},\"584b1a\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"6a83c1\":{\"lock\":false,\"pos\":{\"x\":1.6961,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":224.9912,\"z\":0.0687}},\"6c7a0b\":{\"lock\":false,\"pos\":{\"x\":-26.7378,\"y\":1.6177,\"z\":-3.6631},\"rot\":{\"x\":0.0684,\"y\":135.0119,\"z\":0.0446}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.1206,\"y\":1.6042,\"z\":-3.8228},\"rot\":{\"x\":0.0169,\"y\":179.9841,\"z\":0.0799}},\"7310f8\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6748,\"z\":-7.6998},\"rot\":{\"x\":359.9201,\"y\":270.0028,\"z\":0.0168}},\"7b8d65\":{\"lock\":false,\"pos\":{\"x\":-22.5477,\"y\":1.6119,\"z\":-3.5447},\"rot\":{\"x\":0.0169,\"y\":179.984,\"z\":0.0799}},\"7ec61f\":{\"lock\":false,\"pos\":{\"x\":-20.3639,\"y\":1.6076,\"z\":-7.7951},\"rot\":{\"x\":359.9201,\"y\":269.8921,\"z\":0.017}},\"8dfbb1\":{\"lock\":false,\"pos\":{\"x\":-28.0507,\"y\":1.6219,\"z\":4.2514},\"rot\":{\"x\":0.0445,\"y\":44.9848,\"z\":359.9316}},\"995fe7\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.0299},\"rot\":{\"x\":359.9201,\"y\":270.0037,\"z\":0.0167}},\"a706b9\":{\"lock\":false,\"pos\":{\"x\":-18.493,\"y\":1.6085,\"z\":4.1367},\"rot\":{\"x\":0.0684,\"y\":135.0002,\"z\":0.0446}},\"aa50e4\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"ac4427\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6885,\"z\":7.5701},\"rot\":{\"x\":359.9201,\"y\":270.0025,\"z\":0.0167}},\"b1e332\":{\"lock\":false,\"pos\":{\"x\":-22.1463,\"y\":1.8278,\"z\":-7.6757},\"rot\":{\"x\":359.8872,\"y\":269.974,\"z\":0.0185}},\"c50379\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6953,\"z\":-0.03},\"rot\":{\"x\":359.9203,\"y\":270,\"z\":0.0153}},\"cda035\":{\"lock\":false,\"pos\":{\"x\":-15.6361,\"y\":1.7271,\"z\":0.0099},\"rot\":{\"x\":0.0912,\"y\":269.997,\"z\":359.8282}},\"cf4a62\":{\"lock\":false,\"pos\":{\"x\":-22.2065,\"y\":1.7384,\"z\":7.5782},\"rot\":{\"x\":359.9194,\"y\":270.0011,\"z\":0.0167}},\"e58475\":{\"lock\":false,\"pos\":{\"x\":-28.6386,\"y\":1.8371,\"z\":-0.0576},\"rot\":{\"x\":354.7658,\"y\":270.0023,\"z\":0.0155}},\"f37775\":{\"lock\":false,\"pos\":{\"x\":-3.1929,\"y\":1.661,\"z\":15.3806},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"f7dd31\":{\"lock\":false,\"pos\":{\"x\":-15.6663,\"y\":1.7247,\"z\":-7.6812},\"rot\":{\"x\":0.0765,\"y\":269.9943,\"z\":359.9739}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -809775,6 +857206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809796,12 +857229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -809828,6 +857262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809843,12 +857279,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "092c6d" }, { @@ -809876,6 +857313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809891,12 +857330,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d94dc8" }, { @@ -809924,6 +857364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809939,12 +857381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "092c6d" }, { @@ -809972,6 +857415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -809987,12 +857432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "092c6d" }, { @@ -810020,6 +857466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810035,12 +857483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3799cd" } ], @@ -810071,6 +857520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810089,9 +857540,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -810118,6 +857569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810138,12 +857591,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -810170,6 +857624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810185,12 +857641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66919a" }, { @@ -810218,6 +857675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810233,12 +857692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be5eb9" }, { @@ -810266,6 +857726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810281,12 +857743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "331c18" }, { @@ -810314,6 +857777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810329,12 +857794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66919a" } ], @@ -810381,6 +857847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810430,7 +857898,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -810438,7 +857907,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -810446,12 +857916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -810478,6 +857949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810493,12 +857966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -810526,6 +858000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810541,12 +858017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "653ad0" }, { @@ -810574,6 +858051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810589,12 +858068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -810622,6 +858102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810637,12 +858119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "174be7" }, { @@ -810670,6 +858153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810685,12 +858170,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -810718,6 +858204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810733,12 +858221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36006f" }, { @@ -810766,6 +858255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810781,12 +858272,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -810814,6 +858306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810829,12 +858323,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -810862,6 +858357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810877,12 +858374,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97a21e" }, { @@ -810910,6 +858408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810925,12 +858425,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -810958,6 +858459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -810973,12 +858476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3fba9" }, { @@ -811006,6 +858510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811021,12 +858527,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef7cab" }, { @@ -811054,6 +858561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811069,12 +858578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "651a9e" }, { @@ -811102,6 +858612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811117,12 +858629,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c53c4a" }, { @@ -811150,6 +858663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811165,12 +858680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "077019" }, { @@ -811198,6 +858714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811213,12 +858731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -811246,6 +858765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811261,12 +858782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e80a5" }, { @@ -811294,6 +858816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811309,12 +858833,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60ef9e" }, { @@ -811342,6 +858867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811357,12 +858884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40e9d0" }, { @@ -811390,6 +858918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811405,12 +858935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -811438,6 +858969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811453,12 +858986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61c583" }, { @@ -811486,6 +859020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811501,12 +859037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -811534,6 +859071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811549,12 +859088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36342a" }, { @@ -811582,6 +859122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811597,12 +859139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebb8db" }, { @@ -811630,6 +859173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811645,12 +859190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -811678,6 +859224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811693,12 +859241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -811726,6 +859275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811741,12 +859292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -811774,6 +859326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811789,12 +859343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -811822,6 +859377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811837,12 +859394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -811870,6 +859428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811885,12 +859445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -811918,6 +859479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811933,12 +859496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -811966,6 +859530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -811981,12 +859547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -812014,6 +859581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812029,12 +859598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -812065,6 +859635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812084,12 +859656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -812116,6 +859689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812131,12 +859706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e27853" }, { @@ -812164,6 +859740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812179,12 +859757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fed4b" }, { @@ -812212,6 +859791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812227,12 +859808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -812263,6 +859845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812281,12 +859865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -812313,6 +859898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812328,12 +859915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ccc8ee" }, { @@ -812361,6 +859949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812376,12 +859966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -812412,6 +860003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812427,12 +860020,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa50e4" }, { @@ -812460,6 +860054,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812478,9 +860074,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Undimensioned and Unseen'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "393c71" }, { @@ -812508,6 +860104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812523,12 +860121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cda035" }, { @@ -812556,6 +860155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812571,12 +860172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "995fe7" }, { @@ -812604,6 +860206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812622,9 +860226,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a706b9", "States": { "2": { @@ -812652,6 +860256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812670,9 +860276,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -812700,6 +860306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812718,9 +860326,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -812750,6 +860358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812768,9 +860378,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -812798,6 +860408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812816,9 +860428,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -812846,6 +860458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812864,9 +860478,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -812896,6 +860510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812911,12 +860527,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7dd31" }, { @@ -812944,6 +860561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -812959,12 +860578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7310f8" }, { @@ -812992,6 +860612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813010,9 +860632,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ec61f", "States": { "2": { @@ -813040,6 +860662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813058,9 +860682,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -813088,6 +860712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813106,9 +860732,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -813138,6 +860764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813153,12 +860781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1e332" }, { @@ -813186,6 +860815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813201,12 +860832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42e1b7" }, { @@ -813234,6 +860866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813252,9 +860886,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b8d65", "States": { "2": { @@ -813282,6 +860916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813300,9 +860936,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -813330,6 +860966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813348,9 +860986,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -813380,6 +861018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813395,12 +861035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04861e" }, { @@ -813428,6 +861069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813443,12 +861086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05b0dd" }, { @@ -813476,6 +861120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813494,9 +861140,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57d9e9", "States": { "2": { @@ -813524,6 +861170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813542,9 +861190,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -813572,6 +861220,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813590,9 +861240,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -813622,6 +861272,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813637,12 +861289,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf4a62" }, { @@ -813670,6 +861323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813685,12 +861340,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac4427" }, { @@ -813718,6 +861374,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813736,9 +861394,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dfbb1", "States": { "2": { @@ -813766,6 +861424,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813784,9 +861444,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -813814,6 +861474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813832,9 +861494,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -813864,6 +861526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813879,12 +861543,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c50379" }, { @@ -813912,6 +861577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813927,12 +861594,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e58475" }, { @@ -813960,6 +861628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -813978,9 +861648,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c7a0b", "States": { "2": { @@ -814008,6 +861678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814026,9 +861698,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -814056,6 +861728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814074,9 +861748,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -814129,6 +861803,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814157,9 +861833,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"247967\":{\"lock\":false,\"pos\":{\"x\":-3.502,\"y\":1.582,\"z\":-14.91},\"rot\":{\"x\":359.9204,\"y\":270.007,\"z\":0.0177}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.602,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":180.0002,\"z\":0.0799}},\"52dd93\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6721,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"588354\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6805,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":270.0007,\"z\":0.0169}},\"60a5f6\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6042,\"z\":-3.8287},\"rot\":{\"x\":359.9831,\"y\":-0.0041,\"z\":359.92}},\"655f00\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":-0.0041,\"z\":359.92}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"9f9330\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"ae73b7\":{\"lock\":false,\"pos\":{\"x\":-27.0013,\"y\":1.6236,\"z\":15.18},\"rot\":{\"x\":359.92,\"y\":270.2697,\"z\":0.0165}},\"ce23c7\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6087,\"z\":11.46},\"rot\":{\"x\":359.9831,\"y\":-0.004,\"z\":359.9201}},\"d30e98\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.656,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"dde8af\":{\"lock\":false,\"pos\":{\"x\":-20.5824,\"y\":1.6146,\"z\":15.1047},\"rot\":{\"x\":359.92,\"y\":270.4175,\"z\":0.0163}},\"eb094d\":{\"lock\":false,\"pos\":{\"x\":-3.9273,\"y\":1.7984,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"f58e95\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"ff051b\":{\"lock\":false,\"pos\":{\"x\":-5.6891,\"y\":1.4994,\"z\":-14.2727},\"rot\":{\"x\":0.0013,\"y\":359.939,\"z\":6.2808}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -814186,6 +861862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814204,9 +861882,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -814233,6 +861911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814253,12 +861933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -814285,6 +861966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814300,12 +861983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0707" }, { @@ -814333,6 +862017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814348,12 +862034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d1810" }, { @@ -814381,6 +862068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814396,12 +862085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb943f" }, { @@ -814429,6 +862119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814444,12 +862136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0707" } ], @@ -814496,6 +862189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814547,7 +862242,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2338": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/", @@ -814555,7 +862251,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -814563,12 +862260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -814595,6 +862293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814610,12 +862310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "979865" }, { @@ -814643,6 +862344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814658,12 +862361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f3a8e" }, { @@ -814691,6 +862395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814706,12 +862412,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -814739,6 +862446,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814754,12 +862463,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7a9ae" }, { @@ -814787,6 +862497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814802,12 +862514,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b21462" }, { @@ -814835,6 +862548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814850,12 +862565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66a478" }, { @@ -814883,6 +862599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814898,12 +862616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b21462" }, { @@ -814931,6 +862650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814946,12 +862667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -814979,6 +862701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -814994,12 +862718,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "761e27" }, { @@ -815027,6 +862752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815042,12 +862769,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02547a" }, { @@ -815075,6 +862803,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815090,12 +862820,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49f43a" }, { @@ -815123,6 +862854,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815138,12 +862871,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bc20d" }, { @@ -815171,6 +862905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815186,12 +862922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49f43a" }, { @@ -815219,6 +862956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815234,12 +862973,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d6b0f" }, { @@ -815267,6 +863007,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815282,12 +863024,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db1aee" }, { @@ -815315,6 +863058,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815330,12 +863075,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "851dc1" }, { @@ -815363,6 +863109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815378,12 +863126,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8906a9" }, { @@ -815411,6 +863160,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815426,12 +863177,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -815459,6 +863211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815474,12 +863228,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d91086" }, { @@ -815507,6 +863262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815522,12 +863279,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -815555,6 +863313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815570,12 +863330,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -815603,6 +863364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815618,12 +863381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -815651,6 +863415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815666,12 +863432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -815699,6 +863466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815714,12 +863483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -815747,6 +863517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815762,12 +863534,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -815795,6 +863568,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815810,12 +863585,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -815843,6 +863619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815858,12 +863636,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -815891,6 +863670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815906,12 +863687,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -815939,6 +863721,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -815954,12 +863738,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -815987,6 +863772,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816002,12 +863789,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d63054" }, { @@ -816035,6 +863823,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816050,12 +863840,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b347d1" }, { @@ -816083,6 +863874,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816098,12 +863891,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36612" }, { @@ -816131,6 +863925,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816146,12 +863942,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50fdc5" }, { @@ -816179,6 +863976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816194,12 +863993,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4911f2" }, { @@ -816227,6 +864027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816242,12 +864044,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -816278,6 +864081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816299,12 +864104,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -816331,6 +864137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816346,12 +864154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad8e9f" }, { @@ -816379,6 +864188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816394,12 +864205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22da82" }, { @@ -816427,6 +864239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816442,12 +864256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44ad52" }, { @@ -816475,6 +864290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816490,12 +864307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "54c524" }, { @@ -816523,6 +864341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816538,12 +864358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -816574,6 +864395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816592,12 +864415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -816624,6 +864448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816639,12 +864465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d207eb" }, { @@ -816672,6 +864499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816687,12 +864516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -816723,6 +864553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816738,12 +864570,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -816771,6 +864604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816789,9 +864624,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Essex County Express'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "247967" }, { @@ -816819,6 +864654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816827,9 +864664,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -816856,6 +864693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816874,9 +864713,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2c8c3" }, { @@ -816904,6 +864743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816922,9 +864763,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa839" }, { @@ -816952,6 +864793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -816970,9 +864813,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de80ff" }, { @@ -817000,6 +864843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817018,9 +864863,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6903e" } ], @@ -817051,6 +864896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817070,12 +864917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -817102,6 +864950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817117,12 +864967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03d617" }, { @@ -817150,6 +865001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817165,12 +865018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d60b80" }, { @@ -817198,6 +865052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817213,12 +865069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4b757" } ], @@ -817249,6 +865106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817267,9 +865126,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -817297,6 +865156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817315,9 +865176,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -817345,6 +865206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817363,9 +865226,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -817395,6 +865258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817413,9 +865278,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60a5f6", "States": { "2": { @@ -817443,6 +865308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817461,9 +865328,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -817491,6 +865358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817509,9 +865378,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -817541,6 +865410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817559,9 +865430,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "655f00", "States": { "2": { @@ -817589,6 +865460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817607,9 +865480,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -817637,6 +865510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817655,9 +865530,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -817687,6 +865562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817705,9 +865582,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce23c7", "States": { "2": { @@ -817735,6 +865612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817753,9 +865632,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -817783,6 +865662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817801,9 +865682,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -817833,6 +865714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817851,9 +865734,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dde8af", "States": { "2": { @@ -817881,6 +865764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817899,9 +865784,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -817929,6 +865814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817947,9 +865834,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -817979,6 +865866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -817997,9 +865886,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae73b7", "States": { "2": { @@ -818027,6 +865916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818045,9 +865936,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -818075,6 +865966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818093,9 +865986,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -818125,6 +866018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818149,12 +866044,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -818181,6 +866077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818196,12 +866094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62eb90" }, { @@ -818229,6 +866128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818244,12 +866145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "464528" }, { @@ -818277,6 +866179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818292,12 +866196,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cfca4" }, { @@ -818325,6 +866230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818340,12 +866247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0794a4" }, { @@ -818373,6 +866281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818388,12 +866298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3f902" }, { @@ -818421,6 +866332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818436,12 +866349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3a321" }, { @@ -818469,6 +866383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818484,12 +866400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c93d4" }, { @@ -818517,6 +866434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818532,12 +866451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fb5f0" } ], @@ -818591,6 +866511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818619,9 +866541,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0f9069\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.035,\"z\":0.0803}},\"45341b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"4b1874\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6862,\"z\":-0.0302},\"rot\":{\"x\":359.9201,\"y\":269.9984,\"z\":0.0169}},\"50fc37\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7131,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9994,\"z\":180.0168}},\"52f8d5\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":269.9973,\"z\":0.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.2217,\"y\":1.6097,\"z\":-0.0989},\"rot\":{\"x\":359.9201,\"y\":269.9951,\"z\":0.0169}},\"7faf81\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"8fffb7\":{\"lock\":false,\"pos\":{\"x\":-27.3821,\"y\":1.6202,\"z\":1.7908},\"rot\":{\"x\":359.9316,\"y\":315,\"z\":359.9554}},\"9a3039\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6965,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"acc7ef\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9975,\"z\":0.0803}},\"b5928a\":{\"lock\":false,\"pos\":{\"x\":-3.8443,\"y\":1.5826,\"z\":-14.5511},\"rot\":{\"x\":359.9197,\"y\":270.0014,\"z\":0.0168}},\"b68edf\":{\"lock\":false,\"pos\":{\"x\":-27.1598,\"y\":1.621,\"z\":5.5543},\"rot\":{\"x\":359.9554,\"y\":224.9998,\"z\":0.0684}},\"de3bd5\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6851,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"f797c9\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -818648,6 +866570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818666,9 +866590,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -818695,6 +866619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818710,12 +866636,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66197b" }, { @@ -818743,6 +866670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818762,12 +866691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -818794,6 +866724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818809,12 +866741,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce6ce6" }, { @@ -818842,6 +866775,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818857,12 +866792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc63df" }, { @@ -818890,6 +866826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818905,12 +866843,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cf7f9" } ], @@ -818941,6 +866880,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -818956,12 +866897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f03306" }, { @@ -818989,6 +866931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819004,12 +866948,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8359a3" }, { @@ -819037,6 +866982,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819052,12 +866999,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "911f8c" }, { @@ -819085,6 +867033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819108,12 +867058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -819140,6 +867091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819155,12 +867108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -819188,6 +867142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819203,12 +867159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -819236,6 +867193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819251,12 +867210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -819284,6 +867244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819299,12 +867261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -819332,6 +867295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819347,12 +867312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -819380,6 +867346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819395,12 +867363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -819428,6 +867397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819443,12 +867414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -819479,6 +867451,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819498,12 +867472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -819530,6 +867505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819545,12 +867522,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "919fa0" }, { @@ -819578,6 +867556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819593,12 +867573,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -819626,6 +867607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819641,12 +867624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b1dd5" } ], @@ -819693,6 +867677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819728,7 +867714,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -819736,12 +867723,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -819768,6 +867756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819783,12 +867773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8cc8c" }, { @@ -819816,6 +867807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819831,12 +867824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d6b4c" }, { @@ -819864,6 +867858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819879,12 +867875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8cc8c" }, { @@ -819912,6 +867909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819927,12 +867926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -819960,6 +867960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -819975,12 +867977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64281b" }, { @@ -820008,6 +868011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820023,12 +868028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -820056,6 +868062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820071,12 +868079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -820104,6 +868113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820119,12 +868130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3b1ad" }, { @@ -820152,6 +868164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820167,12 +868181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -820200,6 +868215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820215,12 +868232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41c162" }, { @@ -820248,6 +868266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820263,12 +868283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb489f" }, { @@ -820296,6 +868317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820311,12 +868334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5da81c" }, { @@ -820344,6 +868368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820359,12 +868385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b2e99" }, { @@ -820392,6 +868419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820407,12 +868436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5bca1" }, { @@ -820440,6 +868470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820455,12 +868487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -820488,6 +868521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820503,12 +868538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -820536,6 +868572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820551,12 +868589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -820584,6 +868623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820599,12 +868640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2cf85" }, { @@ -820632,6 +868674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820647,12 +868691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -820683,6 +868728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820702,12 +868749,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -820734,6 +868782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820749,12 +868799,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d9d42" }, { @@ -820782,6 +868833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820797,12 +868850,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f53012" }, { @@ -820830,6 +868884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820845,12 +868901,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -820881,6 +868938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820901,12 +868960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -820933,6 +868993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820948,12 +869010,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "145366" }, { @@ -820981,6 +869044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -820996,12 +869061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fdc9d7" }, { @@ -821029,6 +869095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821044,12 +869112,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f8d84" }, { @@ -821077,6 +869146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821092,12 +869163,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b5f59" } ], @@ -821128,6 +869200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821143,12 +869217,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70df0b" }, { @@ -821176,6 +869251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821194,9 +869271,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Dunwich Legacy'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5928a" }, { @@ -821224,6 +869301,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821239,12 +869318,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7faf81" }, { @@ -821272,6 +869352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821290,9 +869372,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -821320,6 +869402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821338,9 +869422,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -821368,6 +869452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821386,9 +869472,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -821418,6 +869504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821433,12 +869521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b1874" }, { @@ -821466,6 +869555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821481,12 +869572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de3bd5" }, { @@ -821514,6 +869606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821532,9 +869626,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f797c9", "States": { "2": { @@ -821562,6 +869656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821580,9 +869676,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -821610,6 +869706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821628,9 +869726,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -821660,6 +869758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821675,12 +869775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45341b" }, { @@ -821708,6 +869809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821726,9 +869829,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b68edf", "States": { "2": { @@ -821756,6 +869859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821774,9 +869879,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -821804,6 +869909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821822,9 +869929,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -821854,6 +869961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821872,9 +869981,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fffb7", "States": { "2": { @@ -821902,6 +870011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821920,9 +870031,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -821950,6 +870061,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -821968,9 +870081,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -822000,6 +870113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822015,12 +870130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a3039" } ], @@ -822052,12 +870168,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 51.65553, - "posY": 1.40953708, - "posZ": 0.14004299, + "posX": 51.6555443, + "posY": 1.4095372, + "posZ": 0.140044317, "rotX": 359.920135, - "rotY": 269.9988, - "rotZ": 0.0168745238, + "rotY": 269.998779, + "rotZ": 0.0168743916, "scaleX": 1.0, "scaleY": 0.139652729, "scaleZ": 1.0 @@ -822074,6 +870190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822102,9 +870220,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={1.5,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-1.2,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-4,5,6}, rotation={0,0,0}, height=500, width=1000,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1.35,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1.25,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-6,1,0}, rotation={0,90,0}, height=500, width=1200,\r\n-- font_size=350, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"42d2dc\":{\"lock\":false,\"pos\":{\"x\":12.2504,\"y\":1.4684,\"z\":13.438},\"rot\":{\"x\":359.9201,\"y\":270.0118,\"z\":0.0169}},\"6730a1\":{\"lock\":false,\"pos\":{\"x\":12.2502,\"y\":1.4709,\"z\":22.0782},\"rot\":{\"x\":359.9201,\"y\":270.0175,\"z\":0.0168}},\"83ccd4\":{\"lock\":false,\"pos\":{\"x\":12.2515,\"y\":1.4735,\"z\":30.8271},\"rot\":{\"x\":359.9201,\"y\":270.0338,\"z\":0.0168}},\"ae8317\":{\"lock\":false,\"pos\":{\"x\":-1.3869,\"y\":1.4756,\"z\":-26.5424},\"rot\":{\"x\":359.9201,\"y\":270.0018,\"z\":0.0169}},\"bd4167\":{\"lock\":false,\"pos\":{\"x\":12.2498,\"y\":1.4633,\"z\":-3.9192},\"rot\":{\"x\":359.9201,\"y\":270.0253,\"z\":0.0168}},\"ce5d30\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4556,\"z\":-30.0549},\"rot\":{\"x\":359.9201,\"y\":269.993,\"z\":0.0169}},\"dd8b0d\":{\"lock\":false,\"pos\":{\"x\":12.2511,\"y\":1.4582,\"z\":-21.3057},\"rot\":{\"x\":359.9201,\"y\":270.0436,\"z\":0.0168}},\"e7efa6\":{\"lock\":false,\"pos\":{\"x\":12.2492,\"y\":1.4658,\"z\":4.6891},\"rot\":{\"x\":359.9201,\"y\":270.044,\"z\":0.0168}},\"eb48ff\":{\"lock\":false,\"pos\":{\"x\":12.2496,\"y\":1.4607,\"z\":-12.6656},\"rot\":{\"x\":359.9201,\"y\":270.0235,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -822131,6 +870249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822159,9 +870279,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0a79b8\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9979,\"z\":0.0687}},\"106e0f\":{\"lock\":false,\"pos\":{\"x\":-20.5475,\"y\":1.6102,\"z\":0.004},\"rot\":{\"x\":359.9201,\"y\":269.9951,\"z\":0.0169}},\"188399\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9998,\"z\":0.0803}},\"30a233\":{\"lock\":false,\"pos\":{\"x\":-11.3366,\"y\":1.5603,\"z\":-23.6845},\"rot\":{\"x\":0.0799,\"y\":89.9921,\"z\":359.9831}},\"339e43\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.92}},\"452210\":{\"lock\":false,\"pos\":{\"x\":-4.0608,\"y\":1.5826,\"z\":-15.3593},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"4e601e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9985,\"z\":0.0169}},\"68f53e\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-27.264,\"y\":1.6194,\"z\":-0.2535},\"rot\":{\"x\":359.9201,\"y\":269.9951,\"z\":0.0169}},\"740ce6\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}},\"763978\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.9201}},\"77e479\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9997,\"z\":0.0803}},\"93aee3\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"9be8fd\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":0.0169}},\"aa08d4\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"ba0d96\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6902,\"z\":15.1901},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"cb4537\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.9201}},\"f2ab06\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7877,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0007,\"z\":180.0168}},\"f72ca3\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6811,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"fc0ccf\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6994,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"fe7779\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -822188,6 +870308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822206,9 +870328,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -822235,6 +870357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822250,12 +870374,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fd6d0" }, { @@ -822283,6 +870408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822298,12 +870425,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f295d9" }, { @@ -822331,6 +870459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822346,12 +870476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d30a1" }, { @@ -822379,6 +870510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822394,12 +870527,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46185e" }, { @@ -822427,6 +870561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822442,12 +870578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb8243" }, { @@ -822475,6 +870612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822490,12 +870629,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d81228" } ], @@ -822539,6 +870679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822588,7 +870730,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -822596,7 +870739,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2327": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -822604,7 +870748,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -822612,12 +870757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -822644,6 +870790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822659,12 +870807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bec6ce" }, { @@ -822692,6 +870841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822707,12 +870858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "829090" }, { @@ -822740,6 +870892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822755,12 +870909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77144e" }, { @@ -822788,6 +870943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822803,12 +870960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42def5" }, { @@ -822836,6 +870994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822851,12 +871011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77144e" }, { @@ -822884,6 +871045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822899,12 +871062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d4b6a" }, { @@ -822932,6 +871096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822947,12 +871113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "596a2f" }, { @@ -822980,6 +871147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -822995,12 +871164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d4b6a" }, { @@ -823028,6 +871198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823043,12 +871215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e20141" }, { @@ -823076,6 +871249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823091,12 +871266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "522968" }, { @@ -823124,6 +871300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823139,12 +871317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bf1f8" }, { @@ -823172,6 +871351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823187,12 +871368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" }, { @@ -823220,6 +871402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823235,12 +871419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcaaad" }, { @@ -823268,6 +871453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823283,12 +871470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" }, { @@ -823316,6 +871504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823331,12 +871521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "837dc0" }, { @@ -823364,6 +871555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823379,12 +871572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5a670" }, { @@ -823412,6 +871606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823427,12 +871623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a13701" }, { @@ -823460,6 +871657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823475,12 +871674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42b8dc" }, { @@ -823508,6 +871708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823523,12 +871725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec66a0" }, { @@ -823556,6 +871759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823571,12 +871776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bea40" }, { @@ -823604,6 +871810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823619,12 +871827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "057d5f" }, { @@ -823652,6 +871861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823667,12 +871878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -823700,6 +871912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823715,12 +871929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ceae2" }, { @@ -823748,6 +871963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823763,12 +871980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8fcf" }, { @@ -823796,6 +872014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823811,12 +872031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfaf" }, { @@ -823844,6 +872065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823859,12 +872082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -823892,6 +872116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823907,12 +872133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4904d0" }, { @@ -823940,6 +872167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -823955,12 +872184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d63054" }, { @@ -823988,6 +872218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824003,12 +872235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b347d1" }, { @@ -824036,6 +872269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824051,12 +872286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36612" }, { @@ -824084,6 +872320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824099,12 +872337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50fdc5" }, { @@ -824132,6 +872371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824147,12 +872388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4911f2" }, { @@ -824180,6 +872422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824195,12 +872439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -824231,6 +872476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824250,12 +872497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -824282,6 +872530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824297,12 +872547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae6790" }, { @@ -824330,6 +872581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824345,12 +872598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25a10f" }, { @@ -824378,6 +872632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824393,12 +872649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" } ], @@ -824429,6 +872686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824448,12 +872707,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -824480,6 +872740,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824495,12 +872757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3d6b80" }, { @@ -824528,6 +872791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824543,12 +872808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "452df1" }, { @@ -824576,6 +872842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824591,12 +872859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" } ], @@ -824627,6 +872896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824642,12 +872913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -824675,6 +872947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824693,9 +872967,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Echoes of the Past'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "452210" }, { @@ -824723,15 +872997,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30a233", "States": { "3": { @@ -824759,15 +873035,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "523ef3" }, "2": { @@ -824795,15 +873073,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7fbc9" } } @@ -824833,6 +873113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824852,12 +873134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -824884,6 +873167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824899,12 +873184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55844c" }, { @@ -824932,6 +873218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824947,12 +873235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b352f8" }, { @@ -824980,6 +873269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -824995,12 +873286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cf5d5" } ], @@ -825031,6 +873323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825050,12 +873344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -825082,6 +873377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825097,12 +873394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6a72" }, { @@ -825130,6 +873428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825145,12 +873445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40f79d" }, { @@ -825178,6 +873479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825193,12 +873496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" } ], @@ -825229,6 +873533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825248,12 +873554,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -825280,6 +873587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825295,12 +873604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7a098" }, { @@ -825328,6 +873638,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825343,12 +873655,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffd0fb" }, { @@ -825376,6 +873689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825391,12 +873706,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" } ], @@ -825427,6 +873743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825442,12 +873760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e601e" }, { @@ -825475,6 +873794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825490,12 +873811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93aee3" }, { @@ -825523,6 +873845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825541,9 +873865,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "106e0f", "States": { "2": { @@ -825571,6 +873895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825589,9 +873915,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -825619,6 +873945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825637,9 +873965,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -825669,6 +873997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825684,12 +874014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9be8fd" }, { @@ -825717,6 +874048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825735,9 +874068,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68f53e", "States": { "2": { @@ -825765,6 +874098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825783,9 +874118,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -825813,6 +874148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825831,9 +874168,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -825863,6 +874200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825881,9 +874220,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "740ce6", "States": { "2": { @@ -825911,6 +874250,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825929,9 +874270,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -825959,6 +874300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -825977,9 +874320,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -826009,6 +874352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826027,9 +874372,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe7779", "States": { "2": { @@ -826057,6 +874402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826075,9 +874422,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -826105,6 +874452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826123,9 +874472,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -826155,6 +874504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826173,9 +874524,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "763978", "States": { "2": { @@ -826203,6 +874554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826221,9 +874574,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -826251,6 +874604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826269,9 +874624,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -826301,6 +874656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826319,9 +874676,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb4537", "States": { "2": { @@ -826349,6 +874706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826367,9 +874726,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -826397,6 +874756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826415,9 +874776,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -826447,6 +874808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826465,9 +874828,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "339e43", "States": { "2": { @@ -826495,6 +874858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826513,9 +874878,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -826543,6 +874908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826561,9 +874928,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -826593,6 +874960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826611,9 +874980,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -826641,6 +875010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826659,9 +875030,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -826689,6 +875060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826707,9 +875080,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -826762,6 +875135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826790,9 +875165,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"01b9fa\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}},\"0e3277\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7291,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0004,\"z\":180.0168}},\"170d3d\":{\"lock\":false,\"pos\":{\"x\":-20.0997,\"y\":1.6105,\"z\":3.2408},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"1cbe12\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"3da436\":{\"lock\":false,\"pos\":{\"x\":-2.6883,\"y\":1.6555,\"z\":-5.0487},\"rot\":{\"x\":0.0163,\"y\":180.3896,\"z\":0.0804}},\"472b87\":{\"lock\":false,\"pos\":{\"x\":-27.4076,\"y\":1.6185,\"z\":-3.9855},\"rot\":{\"x\":359.9316,\"y\":315,\"z\":359.9554}},\"4b6478\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"657fc6\":{\"lock\":false,\"pos\":{\"x\":-20.5635,\"y\":1.6124,\"z\":7.5489},\"rot\":{\"x\":359.9201,\"y\":269.9948,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-26.7542,\"y\":1.6189,\"z\":0.1696},\"rot\":{\"x\":359.9201,\"y\":269.9948,\"z\":0.0169}},\"857d0d\":{\"lock\":false,\"pos\":{\"x\":-4.2848,\"y\":1.5829,\"z\":-15.6021},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"981fa3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"a2d9f5\":{\"lock\":false,\"pos\":{\"x\":-11.8925,\"y\":1.6719,\"z\":11.1211},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"aa08d4\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"b25fa2\":{\"lock\":false,\"pos\":{\"x\":-20.004,\"y\":1.6083,\"z\":-3.8134},\"rot\":{\"x\":359.9316,\"y\":315,\"z\":359.9554}},\"b3c25b\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"c605d3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"cce10d\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"d4d0a1\":{\"lock\":false,\"pos\":{\"x\":-27.2821,\"y\":1.6207,\"z\":3.8853},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"dd2d33\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"dda125\":{\"lock\":false,\"pos\":{\"x\":-11.9758,\"y\":1.6824,\"z\":14.6596},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"dfdabe\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.92}},\"f00abc\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0003,\"z\":0.0803}},\"f66b3b\":{\"lock\":false,\"pos\":{\"x\":-11.375,\"y\":1.5603,\"z\":-23.9299},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"f935dd\":{\"lock\":false,\"pos\":{\"x\":-20.4019,\"y\":1.6078,\"z\":-7.3231},\"rot\":{\"x\":359.9201,\"y\":269.9875,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -826819,6 +875194,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826837,9 +875214,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -826866,6 +875243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826881,12 +875260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bac668" } ], @@ -826930,6 +875310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -826968,7 +875350,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2332": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -826976,12 +875359,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -827008,6 +875392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827023,12 +875409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62736c" }, { @@ -827056,6 +875443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827071,12 +875460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de32ec" }, { @@ -827104,6 +875494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827119,12 +875511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f89d68" }, { @@ -827152,6 +875545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827167,12 +875562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7ccce" }, { @@ -827200,6 +875596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827215,12 +875613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c189a5" }, { @@ -827248,6 +875647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827263,12 +875664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74b258" }, { @@ -827296,6 +875698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827311,12 +875715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce7b8" }, { @@ -827344,6 +875749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827359,12 +875766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40c629" }, { @@ -827392,6 +875800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827407,12 +875817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "006497" }, { @@ -827440,6 +875851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827455,12 +875868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "068703" }, { @@ -827488,6 +875902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827503,12 +875919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fac08" }, { @@ -827536,6 +875953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827551,12 +875970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ccfdd" }, { @@ -827584,6 +876004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827599,12 +876021,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4ebc7" }, { @@ -827632,6 +876055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827647,12 +876072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5296" }, { @@ -827680,6 +876106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827695,12 +876123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b74e5" }, { @@ -827728,6 +876157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827743,12 +876174,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f5a02" }, { @@ -827776,6 +876208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827791,12 +876225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70009a" }, { @@ -827824,6 +876259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827839,12 +876276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c023fe" }, { @@ -827872,6 +876310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827887,12 +876327,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c321d" }, { @@ -827920,6 +876361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827935,12 +876378,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -827968,6 +876412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -827983,12 +876429,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -828016,6 +876463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828031,12 +876480,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" } ], @@ -828067,6 +876517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828085,12 +876537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -828117,6 +876570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828132,12 +876587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "798037" }, { @@ -828165,6 +876621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828180,12 +876638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70d1f2" } ], @@ -828216,6 +876675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828231,12 +876692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -828264,6 +876726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828279,12 +876743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd2d33" }, { @@ -828312,6 +876777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828330,9 +876797,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Last King'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "857d0d" }, { @@ -828360,6 +876827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828381,12 +876850,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -828413,6 +876883,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828428,12 +876900,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ecefb" }, { @@ -828461,6 +876934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828476,12 +876951,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b6382" }, { @@ -828509,6 +876985,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828524,12 +877002,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f2034" }, { @@ -828557,6 +877036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828572,12 +877053,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fd6d0" }, { @@ -828605,6 +877087,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828620,12 +877104,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f003bd" } ], @@ -828656,6 +877141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828677,12 +877164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -828709,6 +877197,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828724,12 +877214,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "560b08" }, { @@ -828757,6 +877248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828772,12 +877265,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6a957" }, { @@ -828805,6 +877299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828820,12 +877316,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce986e" }, { @@ -828853,6 +877350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828868,12 +877367,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1145d" }, { @@ -828901,6 +877401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828916,12 +877418,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" } ], @@ -828952,6 +877455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -828967,12 +877472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -829000,6 +877506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829018,9 +877526,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "657fc6", "States": { "2": { @@ -829048,6 +877556,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829066,9 +877576,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -829096,6 +877606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829114,9 +877626,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -829146,6 +877658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829161,12 +877675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c605d3" }, { @@ -829194,6 +877709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829212,9 +877729,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "472b87", "States": { "2": { @@ -829242,6 +877759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829260,9 +877779,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -829290,6 +877809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829308,9 +877829,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -829340,6 +877861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829355,12 +877878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3c25b" }, { @@ -829388,6 +877912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829406,9 +877932,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01b9fa", "States": { "2": { @@ -829436,6 +877962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829454,9 +877982,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -829484,6 +878012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829502,9 +878032,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -829534,6 +878064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829549,12 +878081,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "981fa3" }, { @@ -829582,6 +878115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829600,9 +878135,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfdabe", "States": { "2": { @@ -829630,6 +878165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829648,9 +878185,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -829678,6 +878215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829696,9 +878235,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -829728,6 +878267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829743,12 +878284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b6478" }, { @@ -829776,6 +878318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829794,9 +878338,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -829824,6 +878368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829842,9 +878388,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -829872,6 +878418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829890,9 +878438,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -829922,6 +878470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829940,9 +878490,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4d0a1", "States": { "2": { @@ -829970,6 +878520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -829988,9 +878540,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -830018,6 +878570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830036,9 +878590,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -830068,6 +878622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830086,9 +878642,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "170d3d", "States": { "2": { @@ -830116,6 +878672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830134,9 +878692,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -830164,6 +878722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830182,9 +878742,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -830214,6 +878774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830232,9 +878794,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b25fa2", "States": { "2": { @@ -830262,6 +878824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830280,9 +878844,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -830310,6 +878874,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830328,9 +878894,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -830360,6 +878926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830378,9 +878946,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f935dd", "States": { "2": { @@ -830408,6 +878976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830426,9 +878996,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -830456,6 +879026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830474,9 +879046,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -830506,6 +879078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830521,12 +879095,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cce10d" }, { @@ -830554,15 +879129,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f66b3b" } ], @@ -830613,6 +879190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830641,9 +879220,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0d3181\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"16562e\":{\"lock\":false,\"pos\":{\"x\":-3.8355,\"y\":1.5823,\"z\":-15.4104},\"rot\":{\"x\":359.9197,\"y\":269.9812,\"z\":0.0169}},\"344f37\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"355df1\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7824,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"37e3f9\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"3e4d11\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-20.5401,\"y\":1.6102,\"z\":0.1872},\"rot\":{\"x\":0.0799,\"y\":90.0061,\"z\":359.9831}},\"4906e9\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0003,\"z\":359.92}},\"57f68a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}},\"592384\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"67a96b\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"919566\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6543,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"9b59f2\":{\"lock\":false,\"pos\":{\"x\":-20.3102,\"y\":1.6109,\"z\":3.7456},\"rot\":{\"x\":359.9316,\"y\":315,\"z\":359.9554}},\"aa08d4\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -830670,6 +879249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830688,9 +879269,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -830717,6 +879298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830736,12 +879319,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -830768,6 +879352,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830783,12 +879369,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e83ec9" }, { @@ -830816,6 +879403,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830831,12 +879420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b75450" }, { @@ -830864,6 +879454,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830879,12 +879471,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0797a9" } ], @@ -830915,6 +879508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830934,12 +879529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -830966,6 +879562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -830981,12 +879579,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5134e0" }, { @@ -831014,6 +879613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831029,12 +879630,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7605cf" }, { @@ -831062,6 +879664,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831077,12 +879681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c1254" } ], @@ -831113,6 +879718,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831128,12 +879735,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58a463" }, { @@ -831161,6 +879769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831176,12 +879786,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6720ef" } ], @@ -831225,6 +879836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831273,7 +879886,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -831281,7 +879895,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -831289,12 +879904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -831321,6 +879937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831336,12 +879954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a6d8c" }, { @@ -831369,6 +879988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831384,12 +880005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6af6b" }, { @@ -831417,6 +880039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831432,12 +880056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -831465,6 +880090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831480,12 +880107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -831513,6 +880141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831528,12 +880158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afc45" }, { @@ -831561,6 +880192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831576,12 +880209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afc45" }, { @@ -831609,6 +880243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831624,12 +880260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "837dc0" }, { @@ -831657,6 +880294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831672,12 +880311,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5a670" }, { @@ -831705,6 +880345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831720,12 +880362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a13701" }, { @@ -831753,6 +880396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831768,12 +880413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42b8dc" }, { @@ -831801,6 +880447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831816,12 +880464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec66a0" }, { @@ -831849,6 +880498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831864,12 +880515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bea40" }, { @@ -831897,6 +880549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831912,12 +880566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d32e4" }, { @@ -831945,6 +880600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -831960,12 +880617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9349fd" }, { @@ -831993,6 +880651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832008,12 +880668,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ae587" }, { @@ -832041,6 +880702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832056,12 +880719,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "459f5a" }, { @@ -832089,6 +880753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832104,12 +880770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -832137,6 +880804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832152,12 +880821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -832185,6 +880855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832200,12 +880872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -832233,6 +880906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832248,12 +880923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -832281,6 +880957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832296,12 +880974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -832329,6 +881008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832344,12 +881025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -832377,6 +881059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832392,12 +881076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -832425,6 +881110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832440,12 +881127,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -832473,6 +881161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832488,12 +881178,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2cf85" }, { @@ -832521,6 +881212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832536,12 +881229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -832569,6 +881263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832584,12 +881280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e20141" }, { @@ -832617,6 +881314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832632,12 +881331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "522968" }, { @@ -832665,6 +881365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832680,12 +881382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bf1f8" }, { @@ -832713,6 +881416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832728,12 +881433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" }, { @@ -832761,6 +881467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832776,12 +881484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcaaad" }, { @@ -832809,6 +881518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832824,12 +881535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" } ], @@ -832860,6 +881572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832878,12 +881592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -832910,6 +881625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832925,12 +881642,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62cc79" }, { @@ -832958,6 +881676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -832973,12 +881693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d122dd" } ], @@ -833009,6 +881730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833030,12 +881753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -833062,6 +881786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833077,12 +881803,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c5a28" }, { @@ -833110,6 +881837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833125,12 +881854,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4f850" }, { @@ -833158,6 +881888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833173,12 +881905,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e25bf" }, { @@ -833206,6 +881939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833221,12 +881956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "94060e" }, { @@ -833254,6 +881990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833269,12 +882007,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eeaa39" } ], @@ -833305,6 +882044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833320,12 +882061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -833353,6 +882095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833371,9 +882115,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Path to Carcosa'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "16562e" }, { @@ -833401,6 +882145,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833416,12 +882162,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e4d11" }, { @@ -833449,6 +882196,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833464,12 +882213,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "592384" }, { @@ -833497,6 +882247,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833512,12 +882264,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67a96b" }, { @@ -833545,6 +882298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833560,12 +882315,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37e3f9" }, { @@ -833593,6 +882349,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833611,9 +882369,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4906e9", "States": { "2": { @@ -833641,6 +882399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833659,9 +882419,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -833689,6 +882449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833707,9 +882469,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -833739,6 +882501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833757,9 +882521,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57f68a", "States": { "2": { @@ -833787,6 +882551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833805,9 +882571,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -833835,6 +882601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833853,9 +882621,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -833885,6 +882653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833903,9 +882673,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b59f2", "States": { "2": { @@ -833933,6 +882703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833951,9 +882723,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -833981,6 +882753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -833999,9 +882773,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -834031,6 +882805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834049,9 +882825,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -834079,6 +882855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834097,9 +882875,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -834127,6 +882905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834145,9 +882925,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af" } } @@ -834200,6 +882980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834218,9 +883000,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --Doubt 1\r\n {\r\n pos = {-0.482,0.1,0.776},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 2\r\n {\r\n pos = {-0.43,0.1,0.776},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 3\r\n {\r\n pos = {-0.38,0.1,0.775},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 4\r\n {\r\n pos = {-0.325,0.1,0.778},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 5\r\n {\r\n pos = {-0.27,0.1,0.779},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 6\r\n {\r\n pos = {-0.219,0.1,0.778},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 7\r\n {\r\n pos = {-0.168,0.1,0.782},\r\n size = 200,\r\n state = false\r\n },\r\n --Doubt 8\r\n {\r\n pos = {-0.111,0.1,0.783},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 1\r\n {\r\n pos = {-0.736,0.1,0.868},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 2\r\n {\r\n pos = {-0.68,0.1,0.869},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 3\r\n {\r\n pos = {-0.626,0.1,0.869},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 4\r\n {\r\n pos = {-0.574,0.1,0.874},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 5\r\n {\r\n pos = {-0.519,0.1,0.874},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 6\r\n {\r\n pos = {-0.467,0.1,0.879},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 7\r\n {\r\n pos = {-0.416,0.1,0.876},\r\n size = 200,\r\n state = false\r\n },\r\n --Conviction 8\r\n {\r\n pos = {-0.357,0.1,0.879},\r\n size = 200,\r\n state = false\r\n },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n {\r\n pos = {-0.7,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one counter 2\r\n {\r\n pos = {-0.52,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one xp 1\r\n {\r\n pos = {-0.517,0.1,-0.55},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 1\r\n {\r\n pos = {-0.274,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 2\r\n {\r\n pos = {-0.074,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two xp 1\r\n {\r\n pos = {-0.061,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 1\r\n {\r\n pos = {0.153,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 2\r\n {\r\n pos = {0.379,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three xp 1\r\n {\r\n pos = {0.38,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 1\r\n {\r\n pos = {0.614,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 2\r\n {\r\n pos = {0.82,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four xp 1\r\n {\r\n pos = {0.827,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Chasing The Stranger\r\n {\r\n pos = {0.414,0.1,0.106},\r\n size = 500,\r\n value = 0,\r\n hideBG = true\r\n },\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --Slot one player\r\n {\r\n pos = {-0.637,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one investigator\r\n {\r\n pos = {-0.637,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one story\r\n {\r\n pos = {-0.637,0.1,-0.32},\r\n rows = 5,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two player\r\n {\r\n pos = {-0.2,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two investigator\r\n {\r\n pos = {-0.2,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two story\r\n {\r\n pos = {-0.2,0.1,-0.32},\r\n rows = 5,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three player\r\n {\r\n pos = {0.241,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three investigator\r\n {\r\n pos = {0.237,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three story\r\n {\r\n pos = {0.24,0.1,-0.32},\r\n rows = 5,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four player\r\n {\r\n pos = {0.671,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four investigator\r\n {\r\n pos = {0.671,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four story\r\n {\r\n pos = {0.671,0.1,-0.32},\r\n rows = 5,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes\r\n {\r\n pos = {-0.38,0.1,0.339},\r\n rows =16,\r\n width = 3200,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --VIPs Interviewed\r\n {\r\n pos = {0.43,0.1,0.338},\r\n rows = 6,\r\n width = 3500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --VIPs Slain\r\n {\r\n pos = {0.43,0.1,0.643},\r\n rows = 6,\r\n width = 3500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", "LuaScriptState": "{\"checkbox\":[{\"pos\":[-0.482,0.1,0.776],\"size\":200,\"state\":false},{\"pos\":[-0.43,0.1,0.776],\"size\":200,\"state\":false},{\"pos\":[-0.38,0.1,0.775],\"size\":200,\"state\":false},{\"pos\":[-0.325,0.1,0.778],\"size\":200,\"state\":false},{\"pos\":[-0.27,0.1,0.779],\"size\":200,\"state\":false},{\"pos\":[-0.219,0.1,0.778],\"size\":200,\"state\":false},{\"pos\":[-0.168,0.1,0.782],\"size\":200,\"state\":false},{\"pos\":[-0.111,0.1,0.783],\"size\":200,\"state\":false},{\"pos\":[-0.736,0.1,0.868],\"size\":200,\"state\":false},{\"pos\":[-0.68,0.1,0.869],\"size\":200,\"state\":false},{\"pos\":[-0.626,0.1,0.869],\"size\":200,\"state\":false},{\"pos\":[-0.574,0.1,0.874],\"size\":200,\"state\":false},{\"pos\":[-0.519,0.1,0.874],\"size\":200,\"state\":false},{\"pos\":[-0.467,0.1,0.879],\"size\":200,\"state\":false},{\"pos\":[-0.416,0.1,0.876],\"size\":200,\"state\":false},{\"pos\":[-0.357,0.1,0.879],\"size\":200,\"state\":false}],\"counter\":[{\"hideBG\":true,\"pos\":[-0.7,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.52,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.517,0.1,-0.55],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[-0.274,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.074,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.061,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.153,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.379,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.38,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.614,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.82,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.827,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.414,0.1,0.106],\"size\":500,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.32],\"rows\":5,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.32],\"rows\":5,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.241,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.237,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[0.24,0.1,-0.32],\"rows\":5,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.32],\"rows\":5,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[-0.38,0.1,0.339],\"rows\":16,\"value\":\"\",\"width\":3200},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.43,0.1,0.338],\"rows\":6,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.43,0.1,0.643],\"rows\":6,\"value\":\"\",\"width\":3500}]}", + "XmlUI": "", "GUID": "ae8317", "States": { "2": { @@ -834248,6 +883030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834266,9 +883050,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --1 checkbox\r\n {\r\n pos = {-0.678,0.1,-0.147},\r\n size = 250,\r\n state = false\r\n },\r\n --2 checkbox\r\n {\r\n pos = {-0.656,0.1,-0.049},\r\n size = 250,\r\n state = false\r\n },\r\n --3 checkbox\r\n {\r\n pos = {-0.629,0.1,0.148},\r\n size = 250,\r\n state = false\r\n },\r\n --4 checkbox\r\n {\r\n pos = {-0.615,0.1,0.248},\r\n size = 250,\r\n state = false\r\n },\r\n --5 checkbox\r\n {\r\n pos = {-0.588,0.1,0.44},\r\n size = 250,\r\n state = false\r\n },\r\n --6 checkbox\r\n {\r\n pos = {-0.573,0.1,0.54},\r\n size = 250,\r\n state = false\r\n },\r\n --7 checkbox\r\n {\r\n pos = {-0.561,0.1,0.624},\r\n size = 250,\r\n state = false\r\n },\r\n --8 checkbox\r\n {\r\n pos = {-0.546,0.1,0.723},\r\n size = 250,\r\n state = false\r\n },\r\n\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n\r\n --Campaign Notes\r\n {\r\n pos = {0.5,0.1,-0.637},\r\n rows =6,\r\n width = 3500,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", "LuaScriptState": "{\"checkbox\":[{\"pos\":[-0.678,0.1,-0.147],\"size\":250,\"state\":false},{\"pos\":[-0.656,0.1,-0.049],\"size\":250,\"state\":false},{\"pos\":[-0.629,0.1,0.148],\"size\":250,\"state\":false},{\"pos\":[-0.615,0.1,0.248],\"size\":250,\"state\":false},{\"pos\":[-0.588,0.1,0.44],\"size\":250,\"state\":false},{\"pos\":[-0.573,0.1,0.54],\"size\":250,\"state\":false},{\"pos\":[-0.561,0.1,0.624],\"size\":250,\"state\":false},{\"pos\":[-0.546,0.1,0.723],\"size\":250,\"state\":false}],\"counter\":[],\"textbox\":[{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[0.5,0.1,-0.637],\"rows\":6,\"value\":\"\",\"width\":3500}]}", + "XmlUI": "", "GUID": "3ebd39" } } @@ -834298,6 +883082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834326,9 +883112,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"065c64\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6748,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.9992,\"z\":0.0169}},\"06f9fa\":{\"lock\":false,\"pos\":{\"x\":-19.8902,\"y\":1.6082,\"z\":-3.4866},\"rot\":{\"x\":0.0684,\"y\":135,\"z\":0.0446}},\"09597e\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3734},\"rot\":{\"x\":0.0168,\"y\":180.0004,\"z\":0.0803}},\"09b690\":{\"lock\":false,\"pos\":{\"x\":-27.0584,\"y\":1.617,\"z\":-7.5965},\"rot\":{\"x\":359.9202,\"y\":269.9941,\"z\":0.0164}},\"0f0b44\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.602,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":0.0004,\"z\":359.9201}},\"17ba38\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"191fba\":{\"lock\":false,\"pos\":{\"x\":-25.0739,\"y\":1.773,\"z\":-7.7009},\"rot\":{\"x\":359.1676,\"y\":270.0221,\"z\":0.0181}},\"197e00\":{\"lock\":false,\"pos\":{\"x\":-19.8141,\"y\":1.6101,\"z\":3.4298},\"rot\":{\"x\":0.0446,\"y\":45.0001,\"z\":359.9316}},\"1af959\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"240f42\":{\"lock\":false,\"pos\":{\"x\":-21.1406,\"y\":1.6076,\"z\":-11.3468},\"rot\":{\"x\":0.0684,\"y\":135.0005,\"z\":0.0446}},\"2ea277\":{\"lock\":false,\"pos\":{\"x\":-20.5441,\"y\":1.6079,\"z\":-7.5006},\"rot\":{\"x\":0.0799,\"y\":90.0186,\"z\":359.9831}},\"31bba7\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"3e55d1\":{\"lock\":false,\"pos\":{\"x\":1.5609,\"y\":1.3939,\"z\":-1.1516},\"rot\":{\"x\":359.9196,\"y\":269.9993,\"z\":0.0169}},\"403e57\":{\"lock\":false,\"pos\":{\"x\":-25.09,\"y\":1.7792,\"z\":7.5693},\"rot\":{\"x\":359.1401,\"y\":269.9818,\"z\":0.0167}},\"45cbf9\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9924,\"z\":0.0687}},\"49daa1\":{\"lock\":false,\"pos\":{\"x\":-25.1038,\"y\":1.7366,\"z\":0.001},\"rot\":{\"x\":0.0426,\"y\":270.0369,\"z\":359.7644}},\"4a4785\":{\"lock\":false,\"pos\":{\"x\":-33.1186,\"y\":1.6264,\"z\":-4.4252},\"rot\":{\"x\":359.9315,\"y\":315.0001,\"z\":359.9554}},\"5358e2\":{\"lock\":false,\"pos\":{\"x\":1.6368,\"y\":1.3948,\"z\":2.1657},\"rot\":{\"x\":359.9196,\"y\":269.9966,\"z\":0.0169}},\"603ed0\":{\"lock\":false,\"pos\":{\"x\":-20.318,\"y\":1.612,\"z\":7.5175},\"rot\":{\"x\":0.0799,\"y\":90.0123,\"z\":359.9831}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.3511,\"y\":1.628,\"z\":-0.0848},\"rot\":{\"x\":359.9201,\"y\":269.9947,\"z\":0.0169}},\"77cab6\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7451,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":180.0168}},\"78e730\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.7096,\"z\":7.5708},\"rot\":{\"x\":359.1426,\"y\":269.9768,\"z\":0.017}},\"79ea7b\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6726,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"7b7fad\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"8612e0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9967,\"z\":0.0799}},\"8c21dc\":{\"lock\":false,\"pos\":{\"x\":-23.6756,\"y\":1.7044,\"z\":-7.6999},\"rot\":{\"x\":359.1705,\"y\":269.998,\"z\":0.0171}},\"a7a582\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"b20b8d\":{\"lock\":false,\"pos\":{\"x\":-4.3295,\"y\":1.5831,\"z\":-14.994},\"rot\":{\"x\":359.9197,\"y\":269.9786,\"z\":0.0169}},\"b52eaf\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"bf452a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9981,\"z\":0.0166}},\"cc943e\":{\"lock\":false,\"pos\":{\"x\":-26.9121,\"y\":1.6212,\"z\":7.3868},\"rot\":{\"x\":359.9201,\"y\":269.9945,\"z\":0.0167}},\"e3c737\":{\"lock\":false,\"pos\":{\"x\":-33.4568,\"y\":1.6293,\"z\":3.7544},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"e5b752\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}},\"f95052\":{\"lock\":false,\"pos\":{\"x\":-23.6768,\"y\":1.6134,\"z\":-3.8319},\"rot\":{\"x\":0.0169,\"y\":179.9968,\"z\":0.0799}},\"fb0cd1\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -834355,6 +883141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834373,9 +883161,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -834402,6 +883190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834417,12 +883207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b6382" }, { @@ -834450,6 +883241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834465,12 +883258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0a6a4" }, { @@ -834498,6 +883292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834518,12 +883314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -834550,6 +883347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834565,12 +883364,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "febed7" }, { @@ -834598,6 +883398,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834613,12 +883415,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44bb66" }, { @@ -834646,6 +883449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834661,12 +883466,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "febed7" }, { @@ -834694,6 +883500,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834709,12 +883517,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "febed7" } ], @@ -834761,6 +883570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834802,7 +883613,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2342": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -834810,12 +883622,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -834842,6 +883655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834857,12 +883672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "573722" }, { @@ -834890,6 +883706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834905,12 +883723,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f719ae" }, { @@ -834938,6 +883757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -834953,12 +883774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf1ccc" }, { @@ -834986,6 +883808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835001,12 +883825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8845b" }, { @@ -835034,6 +883859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835049,12 +883876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf1ccc" }, { @@ -835082,6 +883910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835097,12 +883927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "151647" }, { @@ -835130,6 +883961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835145,12 +883978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bba9fa" }, { @@ -835178,6 +884012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835193,12 +884029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "151647" }, { @@ -835226,6 +884063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835241,12 +884080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bb7ff" }, { @@ -835274,6 +884114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835289,12 +884131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38cc9a" }, { @@ -835322,6 +884165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835337,12 +884182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a6d8c" }, { @@ -835370,6 +884216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835385,12 +884233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6af6b" }, { @@ -835418,6 +884267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835433,12 +884284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -835466,6 +884318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835481,12 +884335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -835514,6 +884369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835529,12 +884386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60d096" }, { @@ -835562,6 +884420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835577,12 +884437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e7c00" }, { @@ -835610,6 +884471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835625,12 +884488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b323c1" }, { @@ -835658,6 +884522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835673,12 +884539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b323c1" }, { @@ -835706,6 +884573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835721,12 +884590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70009a" }, { @@ -835754,6 +884624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835769,12 +884641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c023fe" }, { @@ -835802,6 +884675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835817,12 +884692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c321d" }, { @@ -835850,6 +884726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835865,12 +884743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cf636" }, { @@ -835898,6 +884777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835913,12 +884794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a845" }, { @@ -835946,6 +884828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -835961,12 +884845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -835994,6 +884879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836009,12 +884896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc5fa" } ], @@ -836045,6 +884933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836064,12 +884954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -836096,6 +884987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836111,12 +885004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bd569" }, { @@ -836144,6 +885038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836159,12 +885055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90b52d" }, { @@ -836192,6 +885089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836207,12 +885106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" } ], @@ -836243,6 +885143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836251,9 +885153,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -836280,6 +885182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836298,12 +885202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -836330,6 +885235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836345,12 +885252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "402117" }, { @@ -836378,6 +885286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836393,12 +885303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "136abe" } ], @@ -836429,6 +885340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836449,7 +885362,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -836457,12 +885371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -836489,6 +885404,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836504,12 +885421,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afc45" }, { @@ -836537,6 +885455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836552,12 +885472,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1bceb" }, { @@ -836585,6 +885506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836600,12 +885523,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "057d5f" }, { @@ -836633,6 +885557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836648,12 +885574,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ceae2" } ], @@ -836687,6 +885614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836695,9 +885624,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -836724,6 +885653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836742,12 +885673,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -836774,6 +885706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836789,12 +885723,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09a07b" }, { @@ -836822,6 +885757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836837,12 +885774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be1a27" } ], @@ -836873,6 +885811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836894,7 +885834,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2333": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -836902,12 +885843,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -836934,6 +885876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836949,12 +885893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a37e3d" }, { @@ -836982,6 +885927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -836997,12 +885944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75bda2" }, { @@ -837030,6 +885978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837045,12 +885995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfaf" }, { @@ -837078,6 +886029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837093,12 +886046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8fcf" }, { @@ -837126,6 +886080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837141,12 +886097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -837180,6 +886137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837195,12 +886154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -837228,6 +886188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837246,9 +886208,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'A Phantom of Truth'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "b20b8d" }, { @@ -837276,6 +886238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837294,9 +886258,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f0b44", "States": { "2": { @@ -837324,6 +886288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837342,9 +886308,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -837372,6 +886338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837390,9 +886358,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -837422,6 +886390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837437,12 +886407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79ea7b" }, { @@ -837470,6 +886441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837485,12 +886458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "065c64" }, { @@ -837518,6 +886492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837533,12 +886509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31bba7" }, { @@ -837566,6 +886543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837584,9 +886563,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "603ed0", "States": { "2": { @@ -837614,6 +886593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837632,9 +886613,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -837662,6 +886643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837680,9 +886663,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -837712,6 +886695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837730,9 +886715,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "197e00", "States": { "2": { @@ -837760,6 +886745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837778,9 +886765,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -837808,6 +886795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837826,9 +886815,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -837858,6 +886847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837876,9 +886867,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06f9fa", "States": { "2": { @@ -837906,6 +886897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837924,9 +886917,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -837954,6 +886947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -837972,9 +886967,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -838004,6 +886999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838022,9 +887019,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ea277", "States": { "2": { @@ -838052,6 +887049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838070,9 +887069,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -838100,6 +887099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838118,9 +887119,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -838150,6 +887151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838168,9 +887171,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "240f42", "States": { "2": { @@ -838198,6 +887201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838216,9 +887221,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -838246,6 +887251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838264,9 +887271,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -838296,6 +887303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838311,12 +887320,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c21dc" }, { @@ -838344,6 +887354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838359,12 +887371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "191fba" }, { @@ -838392,6 +887405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838410,9 +887425,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09b690", "States": { "2": { @@ -838440,6 +887455,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838458,9 +887475,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -838488,6 +887505,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838506,9 +887525,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -838538,6 +887557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838553,12 +887574,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b7fad" }, { @@ -838586,6 +887608,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838604,9 +887628,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f95052", "States": { "2": { @@ -838634,6 +887658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838652,9 +887678,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -838682,6 +887708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838700,9 +887728,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -838732,6 +887760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838747,12 +887777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf452a" }, { @@ -838780,6 +887811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838798,9 +887831,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8612e0", "States": { "2": { @@ -838828,6 +887861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838846,9 +887881,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -838876,6 +887911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838894,9 +887931,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -838926,6 +887963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838941,12 +887980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78e730" }, { @@ -838974,6 +888014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -838989,12 +888031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49daa1" }, { @@ -839022,6 +888065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839040,9 +888085,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc943e", "States": { "2": { @@ -839070,6 +888115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839088,9 +888135,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -839118,6 +888165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839136,9 +888185,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -839168,6 +888217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839183,12 +888234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "403e57" }, { @@ -839216,6 +888268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839231,12 +888285,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1af959" }, { @@ -839264,6 +888319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839282,9 +888339,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5b752", "States": { "2": { @@ -839312,6 +888369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839330,9 +888389,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -839360,6 +888419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839378,9 +888439,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -839410,6 +888471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839425,12 +888488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17ba38" }, { @@ -839458,6 +888522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839476,9 +888542,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -839506,6 +888572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839524,9 +888592,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -839554,6 +888622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839572,9 +888642,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -839604,6 +888674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839622,9 +888694,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb0cd1", "States": { "2": { @@ -839652,6 +888724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839670,9 +888744,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -839700,6 +888774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839718,9 +888794,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -839750,6 +888826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839768,9 +888846,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a4785", "States": { "2": { @@ -839798,6 +888876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839816,9 +888896,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -839846,6 +888926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839864,9 +888946,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -839896,6 +888978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839914,9 +888998,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3c737", "States": { "2": { @@ -839944,6 +889028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -839962,9 +889048,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -839992,6 +889078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840010,9 +889098,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -840042,6 +889130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840057,12 +889147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7a582" } ], @@ -840113,6 +889204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840131,9 +889224,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"258731\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9773,\"z\":0.0799}},\"285de7\":{\"lock\":false,\"pos\":{\"x\":-2.6888,\"y\":1.3987,\"z\":-5.0485},\"rot\":{\"x\":359.9196,\"y\":269.9985,\"z\":0.0169}},\"546046\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.8037,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":180.0168}},\"691fe9\":{\"lock\":false,\"pos\":{\"x\":-33.3428,\"y\":1.6291,\"z\":3.818},\"rot\":{\"x\":359.9554,\"y\":225.0049,\"z\":0.0684}},\"714050\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.5583,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"739c55\":{\"lock\":false,\"pos\":{\"x\":-39.985,\"y\":1.6372,\"z\":-0.0256},\"rot\":{\"x\":0.0799,\"y\":90.0027,\"z\":359.9831}},\"85e306\":{\"lock\":false,\"pos\":{\"x\":1.2838,\"y\":1.3944,\"z\":-0.7698},\"rot\":{\"x\":359.9196,\"y\":270.0006,\"z\":0.0169}},\"868a4d\":{\"lock\":false,\"pos\":{\"x\":-20.1755,\"y\":1.6096,\"z\":-0.0593},\"rot\":{\"x\":0.0799,\"y\":90.0026,\"z\":359.9831}},\"9afdfd\":{\"lock\":false,\"pos\":{\"x\":-3.7313,\"y\":1.5823,\"z\":-14.7936},\"rot\":{\"x\":359.9197,\"y\":269.9989,\"z\":0.0168}},\"add354\":{\"lock\":false,\"pos\":{\"x\":-27.0048,\"y\":1.6202,\"z\":3.6609},\"rot\":{\"x\":0.0684,\"y\":134.9998,\"z\":0.0446}},\"b52eaf\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"c8ff2d\":{\"lock\":false,\"pos\":{\"x\":-33.276,\"y\":1.6267,\"z\":-3.9922},\"rot\":{\"x\":0.0683,\"y\":135.1402,\"z\":0.0447}},\"d28c77\":{\"lock\":false,\"pos\":{\"x\":-11.2153,\"y\":1.5602,\"z\":-23.7336},\"rot\":{\"x\":0.0799,\"y\":89.9926,\"z\":359.9831}},\"d6e210\":{\"lock\":false,\"pos\":{\"x\":-26.4601,\"y\":1.6173,\"z\":-3.7355},\"rot\":{\"x\":359.9554,\"y\":224.9996,\"z\":0.0684}},\"e96c38\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.8299},\"rot\":{\"x\":0.0169,\"y\":179.9773,\"z\":0.0799}},\"ebe737\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9989,\"z\":0.0803}},\"fbd1ad\":{\"lock\":false,\"pos\":{\"x\":1.3125,\"y\":1.6514,\"z\":1.9228},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -840160,6 +889253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840168,9 +889263,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -840197,6 +889292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840215,12 +889312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -840247,6 +889345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840262,12 +889362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "468c5f" }, { @@ -840295,6 +889396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840310,12 +889413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ccd8f5" } ], @@ -840346,6 +889450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840365,12 +889471,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -840397,6 +889504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840412,12 +889521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a36819" }, { @@ -840445,6 +889555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840460,12 +889572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "309dcd" }, { @@ -840493,6 +889606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840508,12 +889623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f897e5" } ], @@ -840544,6 +889660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840563,12 +889681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -840595,6 +889714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840610,12 +889731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea3b91" }, { @@ -840643,6 +889765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840658,12 +889782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa7e10" }, { @@ -840691,6 +889816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840706,12 +889833,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79295e" } ], @@ -840742,6 +889870,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840760,12 +889890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -840792,6 +889923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840807,12 +889940,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01030c" }, { @@ -840840,6 +889974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840855,12 +889991,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a53069" } ], @@ -840894,6 +890031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840913,12 +890052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -840945,6 +890085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -840960,12 +890102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2957b5" }, { @@ -840993,6 +890136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841008,12 +890153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1622d3" }, { @@ -841041,6 +890187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841056,12 +890204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82360a" } ], @@ -841092,6 +890241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841110,9 +890261,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -841139,6 +890290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841147,9 +890300,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -841176,6 +890329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841191,12 +890346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4475b1" } ], @@ -841227,6 +890383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841235,9 +890393,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -841264,6 +890422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841279,12 +890439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5276ed" } ], @@ -841315,6 +890476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841323,9 +890486,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -841352,6 +890515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841367,12 +890532,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" } ], @@ -841403,6 +890569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841418,12 +890586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c7c3" } ], @@ -841467,6 +890636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841486,12 +890657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -841518,6 +890690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841533,12 +890707,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1397c" }, { @@ -841566,6 +890741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841581,12 +890758,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09a5e0" }, { @@ -841614,6 +890792,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841629,12 +890809,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" } ], @@ -841665,6 +890846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841717,7 +890900,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2322": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -841725,7 +890909,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2696": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -841733,12 +890918,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -841765,6 +890951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841780,12 +890968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cf636" }, { @@ -841813,6 +891002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841828,12 +891019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a845" }, { @@ -841861,6 +891053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841876,12 +891070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -841909,6 +891104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841924,12 +891121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc5fa" }, { @@ -841957,6 +891155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -841972,12 +891172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1fe02" }, { @@ -842005,6 +891206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842020,12 +891223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c5c4" }, { @@ -842053,6 +891257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842068,12 +891274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -842101,6 +891308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842116,12 +891325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -842149,6 +891359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842164,12 +891376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -842197,6 +891410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842212,12 +891427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fcde7" }, { @@ -842245,6 +891461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842260,12 +891478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -842293,6 +891512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842308,12 +891529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bf800" }, { @@ -842341,6 +891563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842356,12 +891580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -842389,6 +891614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842404,12 +891631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -842437,6 +891665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842452,12 +891682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -842485,6 +891716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842500,12 +891733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "837dc0" }, { @@ -842533,6 +891767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842548,12 +891784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5a670" }, { @@ -842581,6 +891818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842596,12 +891835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a13701" }, { @@ -842629,6 +891869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842644,12 +891886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42b8dc" }, { @@ -842677,6 +891920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842692,12 +891937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec66a0" }, { @@ -842725,6 +891971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842740,12 +891988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bea40" }, { @@ -842773,6 +892022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842788,12 +892039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e20141" }, { @@ -842821,6 +892073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842836,12 +892090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "522968" }, { @@ -842869,6 +892124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842884,12 +892141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bf1f8" }, { @@ -842917,6 +892175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842932,12 +892192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" }, { @@ -842965,6 +892226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -842980,12 +892243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcaaad" }, { @@ -843013,6 +892277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843028,12 +892294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ada81" }, { @@ -843061,6 +892328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843076,12 +892345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9dc22" }, { @@ -843109,6 +892379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843124,12 +892396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d46d72" }, { @@ -843157,6 +892430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843172,12 +892447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -843205,6 +892481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843220,12 +892498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -843253,6 +892532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843268,12 +892549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -843301,6 +892583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843316,12 +892600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -843349,6 +892634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843364,12 +892651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -843397,6 +892685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843412,12 +892702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -843445,6 +892736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843460,12 +892753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -843496,6 +892790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843511,12 +892807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -843544,6 +892841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843552,9 +892851,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -843581,6 +892880,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843589,9 +892890,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -843618,6 +892919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843637,12 +892940,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -843669,6 +892973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843684,12 +892990,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "629941" }, { @@ -843717,6 +893024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843732,12 +893041,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90cf9" }, { @@ -843765,6 +893075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843780,12 +893092,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99d2b8" } ], @@ -843816,6 +893129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843835,12 +893150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -843867,6 +893183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843882,12 +893200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "629941" }, { @@ -843915,6 +893234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843930,12 +893251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "649b4f" }, { @@ -843963,6 +893285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -843978,12 +893302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99d2b8" } ], @@ -844017,6 +893342,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844036,12 +893363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -844068,6 +893396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844083,12 +893413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "629941" }, { @@ -844116,6 +893447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844131,12 +893464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e90cf9" }, { @@ -844164,6 +893498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844179,12 +893515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99d2b8" } ], @@ -844215,6 +893552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844234,12 +893573,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -844266,6 +893606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844281,12 +893623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "629941" }, { @@ -844314,6 +893657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844329,12 +893674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "649b4f" }, { @@ -844362,6 +893708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844377,12 +893725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99d2b8" } ], @@ -844413,6 +893762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844432,7 +893783,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2326": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -844440,12 +893792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -844472,6 +893825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844487,12 +893842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "629941" }, { @@ -844520,6 +893876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844535,12 +893893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09f32d" }, { @@ -844568,6 +893927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844583,12 +893944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99d2b8" } ], @@ -844622,6 +893984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844640,9 +894004,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Dim Carcosa'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "9afdfd" }, { @@ -844670,15 +894034,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d28c77", "States": { "2": { @@ -844706,15 +894072,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb3493" } } @@ -844744,6 +894112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844762,9 +894132,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6e210", "States": { "2": { @@ -844792,6 +894162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844810,9 +894182,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -844840,6 +894212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844858,9 +894232,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -844890,6 +894264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844908,9 +894284,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "add354", "States": { "2": { @@ -844938,6 +894314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -844956,9 +894334,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -844986,6 +894364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845004,9 +894384,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -845036,6 +894416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845054,9 +894436,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "868a4d", "States": { "2": { @@ -845084,6 +894466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845102,9 +894486,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -845132,6 +894516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845150,9 +894536,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -845182,6 +894568,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845200,9 +894588,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e96c38", "States": { "2": { @@ -845230,6 +894618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845248,9 +894638,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -845278,6 +894668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845296,9 +894688,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -845328,6 +894720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845346,9 +894740,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "258731", "States": { "2": { @@ -845376,6 +894770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845394,9 +894790,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -845424,6 +894820,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845442,9 +894840,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -845474,6 +894872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845492,9 +894892,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8ff2d", "States": { "2": { @@ -845522,6 +894922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845540,9 +894942,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -845570,6 +894972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845588,9 +894992,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -845620,6 +895024,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845638,9 +895044,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "691fe9", "States": { "2": { @@ -845668,6 +895074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845686,9 +895094,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -845716,6 +895124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845734,9 +895144,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -845766,6 +895176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845784,9 +895196,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "739c55", "States": { "2": { @@ -845814,6 +895226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845832,9 +895246,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -845862,6 +895276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845880,9 +895296,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -845935,6 +895351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -845963,9 +895381,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"014bd6\":{\"lock\":false,\"pos\":{\"x\":-25.1033,\"y\":1.7317,\"z\":-15.3069},\"rot\":{\"x\":359.9212,\"y\":270.0016,\"z\":0.0164}},\"04d6e6\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"106f19\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"1163a0\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"20c21d\":{\"lock\":false,\"pos\":{\"x\":-3.6194,\"y\":1.5818,\"z\":-15.7683},\"rot\":{\"x\":359.92,\"y\":269.9998,\"z\":0.0142}},\"20de8b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"38d12d\":{\"lock\":false,\"pos\":{\"x\":-23.6762,\"y\":1.6862,\"z\":-0.0302},\"rot\":{\"x\":359.9201,\"y\":270.0013,\"z\":0.0166}},\"425d3a\":{\"lock\":false,\"pos\":{\"x\":-5.9607,\"y\":1.4852,\"z\":-15.0445},\"rot\":{\"x\":359.9839,\"y\":359.9654,\"z\":5.3841}},\"5b38c6\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6122,\"z\":-7.7},\"rot\":{\"x\":359.9551,\"y\":225.2476,\"z\":0.0682}},\"5bebe6\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"69eae5\":{\"lock\":false,\"pos\":{\"x\":-18.5817,\"y\":1.7825,\"z\":-7.6924},\"rot\":{\"x\":0.1249,\"y\":269.9906,\"z\":359.9901}},\"73720d\":{\"lock\":false,\"pos\":{\"x\":-26.9588,\"y\":1.6168,\"z\":-7.6633},\"rot\":{\"x\":359.9201,\"y\":270.0027,\"z\":0.0169}},\"7c8232\":{\"lock\":false,\"pos\":{\"x\":1.0476,\"y\":1.3951,\"z\":0.5264},\"rot\":{\"x\":359.9196,\"y\":269.9857,\"z\":0.0169}},\"8d134d\":{\"lock\":false,\"pos\":{\"x\":-33.6312,\"y\":1.6262,\"z\":-7.6001},\"rot\":{\"x\":0.0799,\"y\":90,\"z\":359.9831}},\"93d8de\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"b52eaf\":{\"lock\":false,\"pos\":{\"x\":-2.8742,\"y\":1.6617,\"z\":15.2703},\"rot\":{\"x\":359.9198,\"y\":269.9966,\"z\":0.0165}},\"c0362a\":{\"lock\":false,\"pos\":{\"x\":-17.1182,\"y\":1.7151,\"z\":-7.6998},\"rot\":{\"x\":358.4415,\"y\":269.9998,\"z\":0.0171}},\"c2651e\":{\"lock\":false,\"pos\":{\"x\":-25.0901,\"y\":1.7362,\"z\":-0.0141},\"rot\":{\"x\":359.9211,\"y\":270.0266,\"z\":0.0163}},\"c380e4\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7717,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"c647a3\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.7022,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"c7ee02\":{\"lock\":false,\"pos\":{\"x\":-4.3053,\"y\":1.7116,\"z\":15.2833},\"rot\":{\"x\":0.0807,\"y\":270.0334,\"z\":359.9872}},\"d4528c\":{\"lock\":false,\"pos\":{\"x\":-20.4212,\"y\":1.6077,\"z\":-7.6621},\"rot\":{\"x\":359.9189,\"y\":270.0012,\"z\":0.0204}},\"db972a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6817,\"z\":-15.2798},\"rot\":{\"x\":359.9201,\"y\":270.0009,\"z\":0.0165}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -845992,6 +895410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846007,12 +895427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -846040,6 +895461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846055,12 +895478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7ee02" }, { @@ -846088,6 +895512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846134,7 +895560,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2336": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -846142,7 +895569,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2332": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -846150,12 +895578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -846182,6 +895611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846197,12 +895628,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -846230,6 +895662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846245,12 +895679,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0fa86" }, { @@ -846278,6 +895713,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846293,12 +895730,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -846326,6 +895764,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846341,12 +895781,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -846374,6 +895815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846389,12 +895832,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f76046" }, { @@ -846422,6 +895866,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846437,12 +895883,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -846470,6 +895917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846485,12 +895934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70009a" }, { @@ -846518,6 +895968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846533,12 +895985,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c023fe" }, { @@ -846566,6 +896019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846581,12 +896036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c321d" }, { @@ -846614,6 +896070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846629,12 +896087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a6d8c" }, { @@ -846662,6 +896121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846677,12 +896138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6af6b" }, { @@ -846710,6 +896172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846725,12 +896189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -846758,6 +896223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846773,12 +896240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0d34f" }, { @@ -846806,6 +896274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846821,12 +896291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afc45" }, { @@ -846854,6 +896325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846869,12 +896342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0afc45" }, { @@ -846902,6 +896376,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846917,12 +896393,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60d096" }, { @@ -846950,6 +896427,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -846965,12 +896444,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e7c00" }, { @@ -846998,6 +896478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847013,12 +896495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b323c1" }, { @@ -847046,6 +896529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847061,12 +896546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b323c1" }, { @@ -847094,6 +896580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847109,12 +896597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d63054" }, { @@ -847142,6 +896631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847157,12 +896648,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b347d1" }, { @@ -847190,6 +896682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847205,12 +896699,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36612" }, { @@ -847238,6 +896733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847253,12 +896750,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50fdc5" }, { @@ -847286,6 +896784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847301,12 +896801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4911f2" }, { @@ -847334,6 +896835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847349,12 +896852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -847382,6 +896886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847397,12 +896903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9dc22" }, { @@ -847430,6 +896937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847445,12 +896954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d46d72" }, { @@ -847478,6 +896988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847493,12 +897005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -847526,6 +897039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847541,12 +897056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -847574,6 +897090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847589,12 +897107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" } ], @@ -847625,6 +897144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847640,12 +897161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1163a0" }, { @@ -847673,6 +897195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847681,9 +897205,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -847710,6 +897234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847728,9 +897254,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81a1d7" }, { @@ -847758,6 +897284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847776,9 +897304,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2460df" }, { @@ -847806,6 +897334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847824,9 +897354,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1df0a5" }, { @@ -847854,6 +897384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847872,9 +897404,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7a9cb" } ], @@ -847905,6 +897437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847923,9 +897457,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Black Stars Rise'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "20c21d" }, { @@ -847953,6 +897487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847961,9 +897497,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -847990,6 +897526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -847998,9 +897536,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"59cd0a\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0803}},\"bb455a\":{\"lock\":false,\"pos\":{\"x\":1.6962,\"y\":1.5583,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":225.0057,\"z\":0.0687}},\"c01144\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9971,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -848027,6 +897565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848045,9 +897585,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -848074,6 +897614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848089,12 +897631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27b476" }, { @@ -848122,6 +897665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848137,12 +897682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e75ba8" }, { @@ -848170,6 +897716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848185,12 +897733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -848218,6 +897767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848233,12 +897784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a231c" }, { @@ -848266,6 +897818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848281,12 +897835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "230c98" }, { @@ -848314,6 +897869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848332,12 +897889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -848364,6 +897922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848379,12 +897939,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -848412,6 +897973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848427,12 +897990,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e6d15" } ], @@ -848463,6 +898027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848481,12 +898047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -848513,6 +898080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848528,12 +898097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -848561,6 +898131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848576,12 +898148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "617504" } ], @@ -848612,6 +898185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848627,12 +898202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c7c3" }, { @@ -848660,6 +898236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848675,12 +898253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df522" }, { @@ -848708,6 +898287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848723,12 +898304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "975cbd" } ], @@ -848772,6 +898354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848791,12 +898375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -848823,6 +898408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848838,12 +898425,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76a442" }, { @@ -848871,6 +898459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848886,12 +898476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60178d" }, { @@ -848919,6 +898510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848934,12 +898527,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c25af7" } ], @@ -848970,6 +898564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -848989,12 +898585,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -849021,6 +898618,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849036,12 +898635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9d5b6" }, { @@ -849069,6 +898669,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849084,12 +898686,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "374aae" }, { @@ -849117,6 +898720,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849132,12 +898737,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06b34f" } ], @@ -849171,6 +898777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849179,9 +898787,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"29532d\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0005,\"z\":0.0803}},\"62a4f3\":{\"lock\":false,\"pos\":{\"x\":1.6963,\"y\":1.5583,\"z\":14.2784},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"f812d6\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -849208,6 +898816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849226,9 +898836,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -849255,6 +898865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849270,12 +898882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f003bd" }, { @@ -849303,6 +898916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849318,12 +898933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79421c" }, { @@ -849351,6 +898967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849366,12 +898984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f3d21" }, { @@ -849399,6 +899018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849414,12 +899035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a231c" }, { @@ -849447,6 +899069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849462,12 +899086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -849495,6 +899120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849513,12 +899140,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -849545,6 +899173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849560,12 +899190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -849593,6 +899224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849608,12 +899241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e6d15" } ], @@ -849644,6 +899278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849662,12 +899298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -849694,6 +899331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849709,12 +899348,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -849742,6 +899382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849757,12 +899399,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "617504" } ], @@ -849793,6 +899436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849808,12 +899453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c7c3" }, { @@ -849841,6 +899487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849856,12 +899504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e572ec" }, { @@ -849889,6 +899538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849904,12 +899555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" } ], @@ -849953,6 +899605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -849972,12 +899626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -850004,6 +899659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850019,12 +899676,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ea66d" }, { @@ -850052,6 +899710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850067,12 +899727,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8228d2" }, { @@ -850100,6 +899761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850115,12 +899778,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97bb2d" } ], @@ -850151,6 +899815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850170,12 +899836,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -850202,6 +899869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850217,12 +899886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "317b57" }, { @@ -850250,6 +899920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850265,12 +899937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92b2ed" }, { @@ -850298,6 +899971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850313,12 +899988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "108932" } ], @@ -850355,6 +900031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850370,12 +900048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "014bd6" }, { @@ -850403,6 +900082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850418,12 +900099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "db972a" }, { @@ -850451,6 +900133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850469,9 +900153,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93d8de", "States": { "2": { @@ -850499,6 +900183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850517,9 +900203,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -850547,6 +900233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850565,9 +900253,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -850597,6 +900285,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850615,9 +900305,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6", "States": { "1": { @@ -850645,6 +900335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850663,9 +900355,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "010936" }, "2": { @@ -850693,6 +900385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850711,9 +900405,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" } } @@ -850743,6 +900437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850758,12 +900454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69eae5" }, { @@ -850791,6 +900488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850806,12 +900505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c0362a" }, { @@ -850839,6 +900539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850857,9 +900559,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4528c", "States": { "2": { @@ -850887,6 +900589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850905,9 +900609,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -850935,6 +900639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -850953,9 +900659,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -850985,6 +900691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851003,9 +900711,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73720d", "States": { "2": { @@ -851033,6 +900741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851051,9 +900761,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -851081,6 +900791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851099,9 +900811,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -851131,6 +900843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851146,12 +900860,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20de8b" }, { @@ -851179,6 +900894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851197,9 +900914,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d134d", "States": { "2": { @@ -851227,6 +900944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851245,9 +900964,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -851275,6 +900994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851293,9 +901014,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -851325,6 +901046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851340,12 +901063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c647a3" }, { @@ -851373,6 +901097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851391,9 +901117,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5bebe6", "States": { "2": { @@ -851421,6 +901147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851439,9 +901167,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -851469,6 +901197,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851487,9 +901217,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -851519,6 +901249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851534,12 +901266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38d12d" }, { @@ -851567,6 +901300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851582,12 +901317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2651e" }, { @@ -851615,6 +901351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851633,9 +901371,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04d6e6", "States": { "2": { @@ -851663,6 +901401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851681,9 +901421,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -851711,6 +901451,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851729,9 +901471,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -851761,6 +901503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851776,12 +901520,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "106f19" } ], @@ -851832,6 +901577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851860,9 +901607,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"02d2b1\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"0463eb\":{\"lock\":false,\"pos\":{\"x\":-5.9557,\"y\":1.6809,\"z\":15.3656},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"0b6538\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7344,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"163466\":{\"lock\":false,\"pos\":{\"x\":-11.1348,\"y\":1.5601,\"z\":-23.4519},\"rot\":{\"x\":0.0799,\"y\":90.0023,\"z\":359.9831}},\"1811ea\":{\"lock\":false,\"pos\":{\"x\":-20.2365,\"y\":1.6098,\"z\":0.1355},\"rot\":{\"x\":359.9201,\"y\":269.9744,\"z\":0.0169}},\"189f42\":{\"lock\":false,\"pos\":{\"x\":-31.7541,\"y\":1.8411,\"z\":-7.6825},\"rot\":{\"x\":359.9572,\"y\":269.9969,\"z\":0.0169}},\"249fd3\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6543,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0012,\"z\":0.0803}},\"3efbe9\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"416548\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6909,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"5762df\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"576595\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9211,\"y\":269.9999,\"z\":0.0182}},\"589ff6\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.7022,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"58fc68\":{\"lock\":false,\"pos\":{\"x\":-2.2261,\"y\":1.6757,\"z\":15.5638},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.5176,\"y\":1.626,\"z\":-7.5064},\"rot\":{\"x\":359.9201,\"y\":270.0873,\"z\":0.0168}},\"7b12e0\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.627,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":180.0001,\"z\":0.0799}},\"7c1343\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"87f45e\":{\"lock\":false,\"pos\":{\"x\":-3.2772,\"y\":1.5818,\"z\":-14.9074},\"rot\":{\"x\":359.921,\"y\":270.0005,\"z\":0.0192}},\"aa08d4\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":269.9996,\"z\":0.0168}},\"b37d1d\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"bec080\":{\"lock\":false,\"pos\":{\"x\":-26.8343,\"y\":1.6189,\"z\":0.0207},\"rot\":{\"x\":359.9201,\"y\":269.9,\"z\":0.017}},\"c9897f\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"d78c73\":{\"lock\":false,\"pos\":{\"x\":-5.5446,\"y\":1.4913,\"z\":-14.7034},\"rot\":{\"x\":359.9832,\"y\":359.972,\"z\":5.7946}},\"dcc1bf\":{\"lock\":false,\"pos\":{\"x\":-31.8093,\"y\":1.8413,\"z\":-0.0414},\"rot\":{\"x\":5.205,\"y\":269.9743,\"z\":0.0041}},\"e35136\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"e6a875\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6998,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"f33a5f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"f99530\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.0302},\"rot\":{\"x\":359.9211,\"y\":270.0014,\"z\":0.018}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -851889,6 +901636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851907,9 +901656,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -851936,6 +901685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -851951,12 +901702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ecefb" }, { @@ -851984,6 +901736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852004,12 +901758,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -852036,6 +901791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852051,12 +901808,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bab65" }, { @@ -852084,6 +901842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852099,12 +901859,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1acf71" }, { @@ -852132,6 +901893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852147,12 +901910,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "728ae0" }, { @@ -852180,6 +901944,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852195,12 +901961,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dcf73" } ], @@ -852231,6 +901998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852246,12 +902015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a71dcd" } ], @@ -852295,6 +902065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852318,12 +902090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -852350,6 +902123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852365,12 +902140,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9cf86" }, { @@ -852398,6 +902174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852413,12 +902191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b7d78" }, { @@ -852446,6 +902225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852461,12 +902242,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cc0d7" }, { @@ -852494,6 +902276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852509,12 +902293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce7b8" }, { @@ -852542,6 +902327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852557,12 +902344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40c629" }, { @@ -852590,6 +902378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852605,12 +902395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "006497" }, { @@ -852638,6 +902429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852653,12 +902446,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "068703" } ], @@ -852689,6 +902483,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852712,7 +902508,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2322": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -852720,12 +902517,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -852752,6 +902550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852767,12 +902567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fc5fa" }, { @@ -852800,6 +902601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852815,12 +902618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -852848,6 +902652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852863,12 +902669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83c7c3" }, { @@ -852896,6 +902703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852911,12 +902720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d46d72" }, { @@ -852944,6 +902754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -852959,12 +902771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9dc22" }, { @@ -852992,6 +902805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853007,12 +902822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd1c0a" }, { @@ -853040,6 +902856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853055,12 +902873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e66648" } ], @@ -853091,6 +902910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853130,7 +902951,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2322": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/", @@ -853138,12 +902960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -853170,6 +902993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853185,12 +903010,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4cf636" }, { @@ -853218,6 +903044,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853233,12 +903061,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a845" }, { @@ -853266,6 +903095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853281,12 +903112,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b71468" }, { @@ -853314,6 +903146,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853329,12 +903163,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf3597" }, { @@ -853362,6 +903197,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853377,12 +903214,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3dc93f" }, { @@ -853410,6 +903248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853425,12 +903265,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0308c" }, { @@ -853458,6 +903299,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853473,12 +903316,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a874d" }, { @@ -853506,6 +903350,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853521,12 +903367,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33902b" }, { @@ -853554,6 +903401,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853569,12 +903418,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab6c60" }, { @@ -853602,6 +903452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853617,12 +903469,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c189a5" }, { @@ -853650,6 +903503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853665,12 +903520,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74b258" }, { @@ -853698,6 +903554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853713,12 +903571,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "837dc0" }, { @@ -853746,6 +903605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853761,12 +903622,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5a670" }, { @@ -853794,6 +903656,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853809,12 +903673,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a13701" }, { @@ -853842,6 +903707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853857,12 +903724,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42b8dc" }, { @@ -853890,6 +903758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853905,12 +903775,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec66a0" }, { @@ -853938,6 +903809,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -853953,12 +903826,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bea40" }, { @@ -853986,6 +903860,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854001,12 +903877,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fac08" }, { @@ -854034,6 +903911,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854049,12 +903928,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ccfdd" }, { @@ -854082,6 +903962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854097,12 +903979,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4ebc7" }, { @@ -854130,6 +904013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854145,12 +904030,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5296" }, { @@ -854178,6 +904064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854193,12 +904081,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b74e5" }, { @@ -854226,6 +904115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854241,12 +904132,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f5a02" } ], @@ -854277,6 +904169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854296,12 +904190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -854328,6 +904223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854343,12 +904240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -854376,6 +904274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854391,12 +904291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87b92e" }, { @@ -854424,6 +904325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854439,12 +904342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a6817" } ], @@ -854475,6 +904379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854496,12 +904402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -854528,6 +904435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854543,12 +904452,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b42f4b" }, { @@ -854576,6 +904486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854591,12 +904503,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08b672" }, { @@ -854624,6 +904537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854639,12 +904554,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f4366" }, { @@ -854672,6 +904588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854687,12 +904605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "200091" }, { @@ -854720,6 +904639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854735,12 +904656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "38bfee" } ], @@ -854771,6 +904693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854786,12 +904710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa08d4" }, { @@ -854819,6 +904744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854837,9 +904764,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Unspeakable Oath'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "87f45e" }, { @@ -854867,6 +904794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854875,9 +904804,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -854904,6 +904833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854922,9 +904853,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1df0a5" }, { @@ -854952,6 +904883,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -854970,9 +904903,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "984eec" }, { @@ -855000,6 +904933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855018,9 +904953,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7a9cb" }, { @@ -855048,6 +904983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855066,9 +905003,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af600" } ], @@ -855099,15 +905036,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "163466", "States": { "3": { @@ -855135,15 +905074,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7c7a8" }, "2": { @@ -855171,15 +905112,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "350a26" } } @@ -855209,6 +905152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855224,12 +905169,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9897f" }, { @@ -855257,6 +905203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855275,9 +905223,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1811ea", "States": { "2": { @@ -855305,6 +905253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855323,9 +905273,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -855353,6 +905303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855371,9 +905323,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -855403,6 +905355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855418,12 +905372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b37d1d" }, { @@ -855451,6 +905406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855469,9 +905426,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bec080", "States": { "2": { @@ -855499,6 +905456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855517,9 +905476,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -855547,6 +905506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855565,9 +905526,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -855597,6 +905558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855612,12 +905575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dcc1bf" }, { @@ -855645,6 +905609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855663,9 +905629,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f33a5f", "States": { "2": { @@ -855693,6 +905659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855711,9 +905679,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -855741,6 +905709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855759,9 +905729,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -855791,6 +905761,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855806,12 +905778,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e35136" }, { @@ -855839,6 +905812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855857,9 +905832,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02d2b1", "States": { "2": { @@ -855887,6 +905862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855905,9 +905882,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -855935,6 +905912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -855953,9 +905932,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -855985,6 +905964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856003,9 +905984,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b12e0", "States": { "2": { @@ -856033,6 +906014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856051,9 +906034,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -856081,6 +906064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856099,9 +906084,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -856131,6 +906116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856146,12 +906133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6a875" }, { @@ -856179,6 +906167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856194,12 +906184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "576595" }, { @@ -856227,6 +906218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856245,9 +906238,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -856275,6 +906268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856293,9 +906288,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -856323,6 +906318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856341,9 +906338,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -856373,6 +906370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856388,12 +906387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "189f42" }, { @@ -856421,6 +906421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856436,12 +906438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "589ff6" }, { @@ -856469,6 +906472,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856487,9 +906492,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3efbe9", "States": { "2": { @@ -856517,6 +906522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856535,9 +906542,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -856565,6 +906572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856583,9 +906592,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -856615,6 +906624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856630,12 +906641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "416548" }, { @@ -856663,6 +906675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856678,12 +906692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f99530" }, { @@ -856711,6 +906726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856739,9 +906756,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"254c1f\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"2c2e26\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.002,\"z\":0.0169}},\"377b20\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6749,\"z\":-7.6999},\"rot\":{\"x\":359.9206,\"y\":270.0247,\"z\":0.018}},\"37ba8d\":{\"lock\":false,\"pos\":{\"x\":-26.7344,\"y\":1.6198,\"z\":3.3625},\"rot\":{\"x\":0.0684,\"y\":134.9986,\"z\":0.0446}},\"5229a9\":{\"lock\":false,\"pos\":{\"x\":-0.2945,\"y\":1.6505,\"z\":-10.4523},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"527f29\":{\"lock\":false,\"pos\":{\"x\":-4.0721,\"y\":1.583,\"z\":-14.3202},\"rot\":{\"x\":359.9197,\"y\":270.0043,\"z\":0.0168}},\"5d3bcc\":{\"lock\":false,\"pos\":{\"x\":-30.2071,\"y\":1.693,\"z\":-7.6951},\"rot\":{\"x\":359.9211,\"y\":268.7832,\"z\":0.0156}},\"670914\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"6ec50e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.08}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.5608,\"y\":1.6112,\"z\":3.4492},\"rot\":{\"x\":359.9554,\"y\":224.9951,\"z\":0.0684}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9981,\"z\":0.0687}},\"7f8292\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9998,\"z\":0.08}},\"9af3a1\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0006,\"z\":0.0803}},\"b053dc\":{\"lock\":false,\"pos\":{\"x\":-2.689,\"y\":1.655,\"z\":-5.0488},\"rot\":{\"x\":0.0168,\"y\":180.0131,\"z\":0.0803}},\"b3ccaf\":{\"lock\":false,\"pos\":{\"x\":-31.9435,\"y\":1.8269,\"z\":-7.7342},\"rot\":{\"x\":4.6861,\"y\":270.0046,\"z\":0.119}},\"c1f7de\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0075,\"z\":0.0169}},\"cfcb21\":{\"lock\":false,\"pos\":{\"x\":-18.8609,\"y\":1.8082,\"z\":-7.7211},\"rot\":{\"x\":4.7376,\"y\":270.007,\"z\":0.0117}},\"f28a24\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9953,\"z\":0.0169}},\"f98bcc\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7717,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -856768,6 +906785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856786,9 +906805,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -856815,6 +906834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856830,12 +906851,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af188b" }, { @@ -856863,6 +906885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856878,12 +906902,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -856911,6 +906936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856926,12 +906953,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -856959,6 +906987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -856974,12 +907004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -857007,6 +907038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857022,12 +907055,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -857055,6 +907089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857070,12 +907106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5fc31" } ], @@ -857119,6 +907156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857165,12 +907204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -857197,6 +907237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857212,12 +907254,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b4ef3" }, { @@ -857245,6 +907288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857260,12 +907305,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa916a" }, { @@ -857293,6 +907339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857308,12 +907356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b4ef3" }, { @@ -857341,6 +907390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857356,12 +907407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cadd49" }, { @@ -857389,6 +907441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857404,12 +907458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -857437,6 +907492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857452,12 +907509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d726b" }, { @@ -857485,6 +907543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857500,12 +907560,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -857533,6 +907594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857548,12 +907611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "891dd5" }, { @@ -857581,6 +907645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857596,12 +907662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -857629,6 +907696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857644,12 +907713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b29f35" }, { @@ -857677,6 +907747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857692,12 +907764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "832d7e" }, { @@ -857725,6 +907798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857740,12 +907815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -857773,6 +907849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857788,12 +907866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -857821,6 +907900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857836,12 +907917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -857869,6 +907951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857884,12 +907968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" }, { @@ -857917,6 +908002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857932,12 +908019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -857965,6 +908053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -857980,12 +908070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -858013,6 +908104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858028,12 +908121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -858061,6 +908155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858076,12 +908172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -858109,6 +908206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858124,12 +908223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -858157,6 +908257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858172,12 +908274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -858205,6 +908308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858220,12 +908325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -858253,6 +908359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858268,12 +908376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -858301,6 +908410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858316,12 +908427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -858349,6 +908461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858364,12 +908478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -858397,6 +908512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858412,12 +908529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -858445,6 +908563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858460,12 +908580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2cf85" }, { @@ -858493,6 +908614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858508,12 +908631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -858541,6 +908665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858556,12 +908682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -858589,6 +908716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858604,12 +908733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cab587" } ], @@ -858640,6 +908770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858659,12 +908791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -858691,6 +908824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858706,12 +908841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c8849" }, { @@ -858739,6 +908875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858754,12 +908892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c593b7" }, { @@ -858787,6 +908926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858802,12 +908943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" } ], @@ -858838,6 +908980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858857,12 +909001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -858889,6 +909034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858904,12 +909051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -858937,6 +909085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -858952,12 +909102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ea05e" }, { @@ -858985,6 +909136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859000,12 +909153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fba792" } ], @@ -859036,6 +909190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859054,9 +909210,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "527f29" }, { @@ -859084,6 +909240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859099,12 +909257,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "254c1f" }, { @@ -859132,6 +909291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859147,12 +909308,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5229a9" }, { @@ -859180,6 +909342,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859195,12 +909359,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c2e26" }, { @@ -859228,6 +909393,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859243,12 +909410,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f28a24" }, { @@ -859276,6 +909444,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859291,12 +909461,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "670914" }, { @@ -859324,6 +909495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859342,9 +909515,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ec50e", "States": { "2": { @@ -859372,6 +909545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859390,9 +909565,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -859420,6 +909595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859438,9 +909615,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -859470,6 +909647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859488,9 +909667,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "37ba8d", "States": { "2": { @@ -859518,6 +909697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859536,9 +909717,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -859566,6 +909747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859584,9 +909767,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -859616,6 +909799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859634,9 +909819,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -859664,6 +909849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859682,9 +909869,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -859712,6 +909899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859730,9 +909919,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -859762,6 +909951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859777,12 +909968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1f7de" }, { @@ -859810,6 +910002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859828,9 +910022,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f8292", "States": { "2": { @@ -859858,6 +910052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859876,9 +910072,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -859906,6 +910102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859924,9 +910122,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -859956,6 +910154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -859971,12 +910171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -860004,6 +910205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860019,12 +910222,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfcb21" }, { @@ -860052,6 +910256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860067,12 +910273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3ccaf" }, { @@ -860100,6 +910307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860115,12 +910324,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d3bcc" } ], @@ -860171,6 +910381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860199,9 +910411,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"076b61\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6954,\"z\":-0.0301},\"rot\":{\"x\":359.9206,\"y\":270.0013,\"z\":0.0179}},\"08e13b\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9202,\"y\":269.9998,\"z\":0.0159}},\"1aa7cb\":{\"lock\":false,\"pos\":{\"x\":-15.4694,\"y\":1.8129,\"z\":-0.0417},\"rot\":{\"x\":354.8361,\"y\":269.993,\"z\":0.0102}},\"2432ab\":{\"lock\":false,\"pos\":{\"x\":0.2826,\"y\":1.5763,\"z\":-16.3088},\"rot\":{\"x\":359.9197,\"y\":270.0286,\"z\":0.0168}},\"250d52\":{\"lock\":false,\"pos\":{\"x\":-6.1919,\"y\":1.7607,\"z\":-10.4684},\"rot\":{\"x\":3.6723,\"y\":270.0193,\"z\":0.0167}},\"261175\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9968,\"z\":0.0799}},\"28e161\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7344,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"377b20\":{\"lock\":false,\"pos\":{\"x\":-31.8945,\"y\":1.8341,\"z\":-0.002},\"rot\":{\"x\":4.9358,\"y\":269.9872,\"z\":0.0038}},\"40c3a4\":{\"lock\":false,\"pos\":{\"x\":-26.9844,\"y\":1.618,\"z\":-3.9073},\"rot\":{\"x\":0.0446,\"y\":45.0001,\"z\":359.9316}},\"453ebf\":{\"lock\":false,\"pos\":{\"x\":-17.1202,\"y\":1.6065,\"z\":3.8581},\"rot\":{\"x\":0.0169,\"y\":179.997,\"z\":0.0799}},\"47f3de\":{\"lock\":false,\"pos\":{\"x\":-3.3583,\"y\":1.5815,\"z\":-15.9833},\"rot\":{\"x\":359.9197,\"y\":270.0041,\"z\":0.0168}},\"5eee6e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9969,\"z\":0.0799}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-26.7605,\"y\":1.6188,\"z\":-0.014},\"rot\":{\"x\":359.9201,\"y\":269.9854,\"z\":0.0169}},\"814638\":{\"lock\":false,\"pos\":{\"x\":-20.2732,\"y\":1.612,\"z\":7.649},\"rot\":{\"x\":0.0797,\"y\":90.0001,\"z\":359.9679}},\"81d86f\":{\"lock\":false,\"pos\":{\"x\":-26.9036,\"y\":1.6213,\"z\":7.6326},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"86b480\":{\"lock\":false,\"pos\":{\"x\":-23.6782,\"y\":1.6862,\"z\":-0.0298},\"rot\":{\"x\":359.9203,\"y\":270.0107,\"z\":0.0152}},\"86faac\":{\"lock\":false,\"pos\":{\"x\":-15.735,\"y\":1.7293,\"z\":7.6008},\"rot\":{\"x\":359.9195,\"y\":269.9996,\"z\":0.0167}},\"88245c\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.92,\"y\":270.0002,\"z\":0.0163}},\"8aa8fd\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0168}},\"9afc26\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9968,\"z\":0.0799}},\"a22908\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4414},\"rot\":{\"x\":359.9193,\"y\":270.0122,\"z\":0.0159}},\"b28633\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7002},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"b42670\":{\"lock\":false,\"pos\":{\"x\":-20.2002,\"y\":1.6087,\"z\":-3.4434},\"rot\":{\"x\":0.0684,\"y\":135.0001,\"z\":0.0446}},\"b99f05\":{\"lock\":false,\"pos\":{\"x\":-2.7249,\"y\":1.4004,\"z\":0.3734},\"rot\":{\"x\":359.9832,\"y\":0,\"z\":359.9197}},\"cedb0a\":{\"lock\":false,\"pos\":{\"x\":-22.2395,\"y\":1.7728,\"z\":7.6364},\"rot\":{\"x\":0.7464,\"y\":269.9932,\"z\":359.9065}},\"da0b77\":{\"lock\":false,\"pos\":{\"x\":-21.9405,\"y\":1.815,\"z\":-0.0836},\"rot\":{\"x\":355.0874,\"y\":270.0023,\"z\":0.0167}},\"e0962c\":{\"lock\":false,\"pos\":{\"x\":-23.6771,\"y\":1.7063,\"z\":7.5699},\"rot\":{\"x\":0.5733,\"y\":270.0044,\"z\":0.0177}},\"e1b8fc\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9985,\"z\":0.0169}},\"e26fc3\":{\"lock\":false,\"pos\":{\"x\":-26.3742,\"y\":1.6195,\"z\":4.2633},\"rot\":{\"x\":0.0446,\"y\":45,\"z\":359.9316}},\"e4821e\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"e9bb0a\":{\"lock\":false,\"pos\":{\"x\":-15.488,\"y\":1.8123,\"z\":-7.6626},\"rot\":{\"x\":354.7832,\"y\":269.998,\"z\":0.0046}},\"f859a4\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6555,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.002,\"z\":0.0803}},\"fac63b\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -860228,6 +910440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860246,9 +910460,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -860275,6 +910489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860299,12 +910515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -860331,6 +910548,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860346,12 +910565,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f6d5c" }, { @@ -860379,6 +910599,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860394,12 +910616,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33870a" }, { @@ -860427,6 +910650,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860442,12 +910667,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -860475,6 +910701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860490,12 +910718,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -860523,6 +910752,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860538,12 +910769,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec86a2" }, { @@ -860571,6 +910803,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860586,12 +910820,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad2df0" }, { @@ -860619,6 +910854,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860634,12 +910871,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a12fd2" }, { @@ -860667,6 +910905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860682,12 +910922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -860718,6 +910959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860733,12 +910976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -860782,6 +911026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860821,12 +911067,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -860853,6 +911100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860868,12 +911117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b7c88" }, { @@ -860901,6 +911151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860916,12 +911168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62b6cd" }, { @@ -860949,6 +911202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -860964,12 +911219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53b9cb" }, { @@ -860997,6 +911253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861012,12 +911270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -861045,6 +911304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861060,12 +911321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0abaca" }, { @@ -861093,6 +911355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861108,12 +911372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -861141,6 +911406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861156,12 +911423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef3cf9" }, { @@ -861189,6 +911457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861204,12 +911474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "912e54" }, { @@ -861237,6 +911508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861252,12 +911525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -861285,6 +911559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861300,12 +911576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4904d0" }, { @@ -861333,6 +911610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861348,12 +911627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e04da" }, { @@ -861381,6 +911661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861396,12 +911678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d0c1c" }, { @@ -861429,6 +911712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861444,12 +911729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -861477,6 +911763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861492,12 +911780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b75b70" }, { @@ -861525,6 +911814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861540,12 +911831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -861573,6 +911865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861588,12 +911882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -861621,6 +911916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861636,12 +911933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -861669,6 +911967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861684,12 +911984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" }, { @@ -861717,6 +912018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861732,12 +912035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "057d5f" }, { @@ -861765,6 +912069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861780,12 +912086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ceae2" }, { @@ -861813,6 +912120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861828,12 +912137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8fcf" }, { @@ -861861,6 +912171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861876,12 +912188,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -861909,6 +912222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861924,12 +912239,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfaf" } ], @@ -861960,6 +912276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -861968,9 +912286,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -861997,6 +912315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862015,7 +912335,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2321": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -862023,12 +912344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -862055,6 +912377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862070,12 +912394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "633954" }, { @@ -862103,6 +912428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862118,12 +912445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c19e2" } ], @@ -862154,6 +912482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862172,7 +912502,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2321": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/", @@ -862180,12 +912511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -862212,6 +912544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862227,12 +912561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62f2fe" }, { @@ -862260,6 +912595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862275,12 +912612,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f364ec" } ], @@ -862314,6 +912652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862329,12 +912669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f859a4" }, { @@ -862362,6 +912703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862377,12 +912720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a22908" }, { @@ -862410,6 +912754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862425,12 +912771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "250d52" }, { @@ -862458,6 +912805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862476,9 +912825,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "47f3de" }, { @@ -862506,6 +912855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862524,9 +912875,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2432ab" }, { @@ -862554,6 +912905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862569,12 +912922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08e13b" }, { @@ -862602,6 +912956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862617,12 +912973,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1aa7cb" }, { @@ -862650,6 +913007,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862668,9 +913027,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "261175", "States": { "2": { @@ -862698,6 +913057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862716,9 +913077,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -862746,6 +913107,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862764,9 +913127,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -862796,6 +913159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862814,9 +913179,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "453ebf", "States": { "2": { @@ -862844,6 +913209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862862,9 +913229,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -862892,6 +913259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862910,9 +913279,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -862942,6 +913311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -862957,12 +913328,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86faac" }, { @@ -862990,6 +913362,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863005,12 +913379,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8aa8fd" }, { @@ -863038,6 +913413,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863053,12 +913430,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9bb0a" }, { @@ -863086,6 +913464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863101,12 +913481,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88245c" }, { @@ -863134,6 +913515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863152,9 +913535,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5eee6e", "States": { "2": { @@ -863182,6 +913565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863200,9 +913585,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -863230,6 +913615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863248,9 +913635,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -863280,6 +913667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863298,9 +913687,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b42670", "States": { "2": { @@ -863328,6 +913717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863346,9 +913737,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -863376,6 +913767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863394,9 +913787,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -863426,6 +913819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863441,12 +913836,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da0b77" }, { @@ -863474,6 +913870,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863489,12 +913887,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86b480" }, { @@ -863522,6 +913921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863537,12 +913938,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1b8fc" }, { @@ -863570,6 +913972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863585,12 +913989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b28633" }, { @@ -863618,6 +914023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863633,12 +914040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "076b61" }, { @@ -863666,6 +914074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863681,12 +914091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fac63b" }, { @@ -863714,6 +914125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863729,12 +914142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "377b20" }, { @@ -863762,6 +914176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863780,9 +914196,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -863810,6 +914226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863828,9 +914246,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -863858,6 +914276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863876,9 +914296,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -863908,6 +914328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863926,9 +914348,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "40c3a4", "States": { "2": { @@ -863956,6 +914378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -863974,9 +914398,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -864004,6 +914428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864022,9 +914448,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -864054,6 +914480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864072,9 +914500,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e26fc3", "States": { "2": { @@ -864102,6 +914530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864120,9 +914550,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -864150,6 +914580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864168,9 +914600,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -864200,6 +914632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864218,9 +914652,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81d86f", "States": { "2": { @@ -864248,6 +914682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864266,9 +914702,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -864296,6 +914732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864314,9 +914752,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -864346,6 +914784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864361,12 +914801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0962c" }, { @@ -864394,6 +914835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864412,9 +914855,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "814638", "States": { "2": { @@ -864442,6 +914885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864460,9 +914905,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -864490,6 +914935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864508,9 +914955,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -864540,6 +914987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864555,12 +915004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cedb0a" }, { @@ -864588,6 +915038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864606,9 +915058,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9afc26", "States": { "2": { @@ -864636,6 +915088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864654,9 +915108,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -864684,6 +915138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864702,9 +915158,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -864780,6 +915236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864808,9 +915266,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"628da0\":{\"lock\":false,\"pos\":{\"x\":-17.1203,\"y\":1.6795,\"z\":11.4606},\"rot\":{\"x\":359.9201,\"y\":270.0028,\"z\":0.0169}},\"8d2dcc\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"99e694\":{\"lock\":false,\"pos\":{\"x\":-3.5154,\"y\":1.4058,\"z\":15.1085},\"rot\":{\"x\":359.9196,\"y\":269.9993,\"z\":0.0169}},\"a4f23d\":{\"lock\":false,\"pos\":{\"x\":-11.2044,\"y\":1.5602,\"z\":-23.5972},\"rot\":{\"x\":0.0799,\"y\":89.9885,\"z\":359.9831}},\"b52eaf\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"b63667\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7717,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0051,\"z\":180.0168}},\"bb070d\":{\"lock\":false,\"pos\":{\"x\":-4.3035,\"y\":1.5832,\"z\":-14.589},\"rot\":{\"x\":359.9197,\"y\":269.9802,\"z\":0.0169}},\"e48bc9\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9979,\"z\":0.0687}},\"fed701\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -864837,6 +915295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864855,9 +915315,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -864884,6 +915344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864899,12 +915361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f2034" } ], @@ -864948,6 +915411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -864956,9 +915421,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -864985,6 +915450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865000,12 +915467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bcab3" }, { @@ -865033,6 +915501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865048,12 +915518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "405a46" } ], @@ -865084,6 +915555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865130,7 +915603,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2668": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -865138,7 +915612,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2669": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -865146,12 +915621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -865178,6 +915654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865193,12 +915671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bce5af" }, { @@ -865226,6 +915705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865241,12 +915722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7485f9" }, { @@ -865274,6 +915756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865289,12 +915773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4f060" }, { @@ -865322,6 +915807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865337,12 +915824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "836888" }, { @@ -865370,6 +915858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865385,12 +915875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18dba0" }, { @@ -865418,6 +915909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865433,12 +915926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecffec" }, { @@ -865466,6 +915960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865481,12 +915977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6dd53" }, { @@ -865514,6 +916011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865529,12 +916028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69d084" }, { @@ -865562,6 +916062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865577,12 +916079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6feaea" }, { @@ -865610,6 +916113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865625,12 +916130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f4458" }, { @@ -865658,6 +916164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865673,12 +916181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be97e0" }, { @@ -865706,6 +916215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865721,12 +916232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c3204" }, { @@ -865754,6 +916266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865769,12 +916283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8c2bf" }, { @@ -865802,6 +916317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865817,12 +916334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec9c97" }, { @@ -865850,6 +916368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865865,12 +916385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f99335" }, { @@ -865898,6 +916419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865913,12 +916436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -865946,6 +916470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -865961,12 +916487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "272ea4" }, { @@ -865994,6 +916521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866009,12 +916538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -866042,6 +916572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866057,12 +916589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99efa0" }, { @@ -866090,6 +916623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866105,12 +916640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" }, { @@ -866138,6 +916674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866153,12 +916691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30bb55" }, { @@ -866186,6 +916725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866201,12 +916742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" }, { @@ -866234,6 +916776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866249,12 +916793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d32e4" }, { @@ -866282,6 +916827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866297,12 +916844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9349fd" }, { @@ -866330,6 +916878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866345,12 +916895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ae587" }, { @@ -866378,6 +916929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866393,12 +916946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "459f5a" }, { @@ -866426,6 +916980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866441,12 +916997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -866474,6 +917031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866489,12 +917048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -866522,6 +917082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866537,12 +917099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -866570,6 +917133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866585,12 +917150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" } ], @@ -866621,6 +917187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866641,12 +917209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -866673,6 +917242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866688,12 +917259,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3da436" }, { @@ -866721,6 +917293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866736,12 +917310,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "571edb" }, { @@ -866769,6 +917344,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866784,12 +917361,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "850fd2" }, { @@ -866817,6 +917395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866832,12 +917412,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "78351c" } ], @@ -866868,6 +917449,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866886,7 +917469,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2325": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/", @@ -866894,12 +917478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -866926,6 +917511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866941,12 +917528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0437b7" }, { @@ -866974,6 +917562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -866989,12 +917579,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "64d9ff" } ], @@ -867025,6 +917616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867040,12 +917633,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b52eaf" }, { @@ -867073,6 +917667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867091,9 +917687,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Pallid Mask'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb070d" }, { @@ -867121,6 +917717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867149,12 +917747,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -867181,6 +917780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867196,12 +917797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1237c" }, { @@ -867229,6 +917831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867244,12 +917848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3151e" }, { @@ -867277,6 +917882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867292,12 +917899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30c7a6" }, { @@ -867325,6 +917933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867340,12 +917950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5efda5" }, { @@ -867373,6 +917984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867388,12 +918001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e3d00" }, { @@ -867421,6 +918035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867436,12 +918052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66b81f" }, { @@ -867469,6 +918086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867484,12 +918103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29170f" }, { @@ -867517,6 +918137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867532,12 +918154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b08255" }, { @@ -867565,6 +918188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867580,12 +918205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fb3fc" }, { @@ -867613,6 +918239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867628,12 +918256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c7f4a" }, { @@ -867661,6 +918290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867676,12 +918307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80cf41" }, { @@ -867709,6 +918341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867724,12 +918358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5ce90" } ], @@ -867760,15 +918395,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4f23d", "States": { "2": { @@ -867796,15 +918433,17 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2009a2" } } @@ -867839,11 +918478,11 @@ "Name": "Custom_Model_Bag", "Transform": { "posX": -9.742425, - "posY": 1.30773151, + "posY": 1.30773163, "posZ": -49.81, - "rotX": 0.0208093561, + "rotX": 0.0208095014, "rotY": 270.003174, - "rotZ": 0.0167715233, + "rotZ": 0.0167714544, "scaleX": 0.5, "scaleY": 0.139652729, "scaleZ": 0.5 @@ -867860,6 +918499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867888,15 +918529,15 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor +12\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=800, width=800,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,3,-7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100,\r\n font_size=400, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={2.4,3,7}, rotation={0,0,0}, height=850, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"011254\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2688,\"z\":-76.9456},\"rot\":{\"x\":359.9792,\"y\":90.0002,\"z\":359.9832}},\"02abdb\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2711,\"z\":-69.0606},\"rot\":{\"x\":359.9792,\"y\":89.9998,\"z\":359.9832}},\"0d6388\":{\"lock\":false,\"pos\":{\"x\":-26.3001,\"y\":1.2734,\"z\":-61.241},\"rot\":{\"x\":359.9792,\"y\":89.9999,\"z\":359.9832}},\"0de2c4\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.36,\"z\":-67.8206},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"171f17\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3806,\"z\":-53.4381},\"rot\":{\"x\":0.0168,\"y\":180.0172,\"z\":359.9792}},\"1f564c\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3695,\"z\":-61.2414},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":359.9792}},\"226716\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3592,\"z\":-70.2906},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"25e2db\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3668,\"z\":-76.946},\"rot\":{\"x\":0.0168,\"y\":180.0102,\"z\":359.9792}},\"307044\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.355,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"3ddfeb\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3554,\"z\":-83.5415},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"41bfc7\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3615,\"z\":-62.4609},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"4ad11b\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3573,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"543164\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3596,\"z\":-69.0603},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"5e04b0\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3818,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":269.9929,\"z\":0.0168}},\"6330da\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3645,\"z\":-52.152},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"779aa6\":{\"lock\":false,\"pos\":{\"x\":-16.6394,\"y\":1.3546,\"z\":-86.0186},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"7a6af2\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3657,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0193,\"z\":0.0168}},\"9015b4\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3691,\"z\":-69.0756},\"rot\":{\"x\":0.0168,\"y\":180.0103,\"z\":359.9792}},\"90ea00\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3645,\"z\":-84.8185},\"rot\":{\"x\":0.0168,\"y\":180.0103,\"z\":359.9792}},\"965031\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3726,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":270.0054,\"z\":0.0168}},\"978a0e\":{\"lock\":false,\"pos\":{\"x\":-26.3,\"y\":1.2757,\"z\":-53.4368},\"rot\":{\"x\":359.9792,\"y\":90.0002,\"z\":359.9832}},\"9e80b9\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3638,\"z\":-54.6207},\"rot\":{\"x\":0.0208,\"y\":270.0121,\"z\":0.0168}},\"bde4a6\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3642,\"z\":-53.3904},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"bed196\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3703,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":270.0321,\"z\":0.0168}},\"d6fdbf\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3622,\"z\":-60.001},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"d9fb86\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3569,\"z\":-78.1756},\"rot\":{\"x\":0.0208,\"y\":270.0092,\"z\":0.0168}},\"dc27c7\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.2665,\"z\":-84.818},\"rot\":{\"x\":359.9792,\"y\":90.0028,\"z\":359.9832}},\"de216f\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3619,\"z\":-61.231},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"e04b48\":{\"lock\":false,\"pos\":{\"x\":-16.6426,\"y\":1.3576,\"z\":-75.6992},\"rot\":{\"x\":0.0209,\"y\":269.806,\"z\":0.0167}},\"e9ad05\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.368,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":269.9964,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", "Transform": { "posX": -26.3002, - "posY": 1.26881123, + "posY": 1.26881135, "posZ": -76.9456, "rotX": 359.979156, "rotY": 90.00021, @@ -867917,6 +918558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867935,9 +918578,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -867964,6 +918607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -867979,12 +918624,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "576d70" }, { @@ -868012,6 +918658,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868027,12 +918675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7275bc" }, { @@ -868060,6 +918709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868108,7 +918759,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2096": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -868116,7 +918768,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2303": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/", @@ -868124,7 +918777,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2306": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -868132,7 +918786,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2305": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -868140,12 +918795,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -868172,6 +918828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868187,12 +918845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8ea95" }, { @@ -868220,6 +918879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868235,12 +918896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f474b1" }, { @@ -868268,6 +918930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868283,12 +918947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e103" }, { @@ -868316,6 +918981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868331,12 +918998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b76c9" }, { @@ -868364,6 +919032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868379,12 +919049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f34090" }, { @@ -868412,6 +919083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868427,12 +919100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" }, { @@ -868460,6 +919134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868475,12 +919151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "593deb" }, { @@ -868508,6 +919185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868523,12 +919202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e1b" }, { @@ -868556,6 +919236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868571,12 +919253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "078efb" }, { @@ -868604,6 +919287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868619,12 +919304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88d3c0" }, { @@ -868652,6 +919338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868667,12 +919355,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab8719" }, { @@ -868700,6 +919389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868715,12 +919406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "322e4b" }, { @@ -868748,6 +919440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868763,12 +919457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd7e4c" }, { @@ -868796,6 +919491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868811,12 +919508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1a147" }, { @@ -868844,6 +919542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868859,12 +919559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08b691" }, { @@ -868892,6 +919593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868907,12 +919610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad2fff" }, { @@ -868940,6 +919644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -868955,12 +919661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3205cf" }, { @@ -868988,6 +919695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869003,12 +919712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "544159" }, { @@ -869036,6 +919746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869051,12 +919763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "270009" }, { @@ -869084,6 +919797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869099,12 +919814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1db6c" }, { @@ -869132,6 +919848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869147,12 +919865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "105884" }, { @@ -869180,6 +919899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869195,12 +919916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7653c0" }, { @@ -869228,6 +919950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869243,12 +919967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a828e7" }, { @@ -869276,6 +920001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869291,12 +920018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9338de" }, { @@ -869324,6 +920052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869339,12 +920069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "789971" }, { @@ -869372,6 +920103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869387,12 +920120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "465a09" }, { @@ -869420,6 +920154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869435,12 +920171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edb657" }, { @@ -869468,6 +920205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869483,12 +920222,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fbdf0" }, { @@ -869516,6 +920256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869531,12 +920273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "002e8e" }, { @@ -869564,6 +920307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869579,12 +920324,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "195ce3" }, { @@ -869612,6 +920358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869627,12 +920375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4791d2" }, { @@ -869660,6 +920409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869675,12 +920426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "144a66" } ], @@ -869706,7 +920458,7 @@ "Name": "Custom_Model_Bag", "Transform": { "posX": -26.3002, - "posY": 1.27111948, + "posY": 1.27112007, "posZ": -69.0606, "rotX": 359.979156, "rotY": 89.99982, @@ -869727,6 +920479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869745,9 +920499,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -869774,6 +920528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869789,12 +920545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02777c" }, { @@ -869822,6 +920579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869837,12 +920596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "527f1c" }, { @@ -869870,6 +920630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -869918,7 +920680,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2305": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -869926,7 +920689,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -869934,7 +920698,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2098": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -869942,7 +920707,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2099": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -869950,7 +920716,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2100": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -869958,7 +920725,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2096": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -869966,12 +920734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -869998,6 +920767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870013,12 +920784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3499c" }, { @@ -870046,6 +920818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870061,12 +920835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e0e7d" }, { @@ -870094,6 +920869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870109,12 +920886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f68ada" }, { @@ -870142,6 +920920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870157,12 +920937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b91450" }, { @@ -870190,6 +920971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870205,12 +920988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "794ad9" }, { @@ -870238,6 +921022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870253,12 +921039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e47d" }, { @@ -870286,6 +921073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870301,12 +921090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cb6068" }, { @@ -870334,6 +921124,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870349,12 +921141,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "944c68" }, { @@ -870382,6 +921175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870397,12 +921192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b857d" }, { @@ -870430,6 +921226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870445,12 +921243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e59da2" }, { @@ -870478,6 +921277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870493,12 +921294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b4b73" }, { @@ -870526,6 +921328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870541,12 +921345,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "908e85" }, { @@ -870574,6 +921379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870589,12 +921396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d0dbd4" }, { @@ -870622,6 +921430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870637,12 +921447,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60d667" }, { @@ -870670,6 +921481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870685,12 +921498,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf280a" }, { @@ -870718,6 +921532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870733,12 +921549,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "355eed" }, { @@ -870766,6 +921583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870781,12 +921600,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c6cf7" }, { @@ -870814,6 +921634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870829,12 +921651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5146fe" }, { @@ -870862,6 +921685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870877,12 +921702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b24c1" }, { @@ -870910,6 +921736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870925,12 +921753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aff1b3" }, { @@ -870958,6 +921787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -870973,12 +921804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0944f1" }, { @@ -871006,6 +921838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871021,12 +921855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42287e" }, { @@ -871054,6 +921889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871069,12 +921906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "492b9c" }, { @@ -871102,6 +921940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871117,12 +921957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a0f84" }, { @@ -871150,6 +921991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871165,12 +922008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c3a367" }, { @@ -871198,6 +922042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871213,12 +922059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a7e1c" }, { @@ -871246,6 +922093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871261,12 +922110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a51658" }, { @@ -871294,6 +922144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871309,12 +922161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7c168" }, { @@ -871342,6 +922195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871357,12 +922212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "120db4" }, { @@ -871390,6 +922246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871405,12 +922263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef7d63" }, { @@ -871438,6 +922297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871453,12 +922314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b02507" }, { @@ -871486,6 +922348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871501,12 +922365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ec6a2" } ], @@ -871532,7 +922397,7 @@ "Name": "Custom_Model_Bag", "Transform": { "posX": -26.3001, - "posY": 1.27340829, + "posY": 1.27340865, "posZ": -61.241, "rotX": 359.979156, "rotY": 89.99988, @@ -871553,6 +922418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871571,9 +922438,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "CardCustom", @@ -871600,6 +922467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871615,12 +922484,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a131b" }, { @@ -871648,6 +922518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871663,12 +922535,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c4900" }, { @@ -871696,6 +922569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871711,12 +922586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b2550" }, { @@ -871744,6 +922620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871759,12 +922637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "321cb7" }, { @@ -871792,6 +922671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871840,7 +922721,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2303": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/", @@ -871848,7 +922730,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2304": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -871856,7 +922739,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2305": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -871864,7 +922748,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2306": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -871872,12 +922757,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -871904,6 +922790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871919,12 +922807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "789971" }, { @@ -871952,6 +922841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -871967,12 +922858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "465a09" }, { @@ -872000,6 +922892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872015,12 +922909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edb657" }, { @@ -872048,6 +922943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872063,12 +922960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fbdf0" }, { @@ -872096,6 +922994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872111,12 +923011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "002e8e" }, { @@ -872144,6 +923045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872159,12 +923062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "195ce3" }, { @@ -872192,6 +923096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872207,12 +923113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0dd50f" }, { @@ -872240,6 +923147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872255,12 +923164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e33fe" }, { @@ -872288,6 +923198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872303,12 +923215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5997b6" }, { @@ -872336,6 +923249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872351,12 +923266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b490cf" }, { @@ -872384,6 +923300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872399,12 +923317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49b31a" }, { @@ -872432,6 +923351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872447,12 +923368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e3f82" }, { @@ -872480,6 +923402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872495,12 +923419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "45832d" }, { @@ -872528,6 +923453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872543,12 +923470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7805c" }, { @@ -872576,6 +923504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872591,12 +923521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bf6673" }, { @@ -872624,6 +923555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872639,12 +923572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a427b" }, { @@ -872672,6 +923606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872687,12 +923623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff269c" }, { @@ -872720,6 +923657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872735,12 +923674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6a6ec" }, { @@ -872768,6 +923708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872783,12 +923725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fcb9c8" }, { @@ -872816,6 +923759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872831,12 +923776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8d46e" }, { @@ -872864,6 +923810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872879,12 +923827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5de768" }, { @@ -872912,6 +923861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872927,12 +923878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f66538" }, { @@ -872960,6 +923912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -872975,12 +923929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "852e5f" }, { @@ -873008,6 +923963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873023,12 +923980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0e18c" }, { @@ -873056,6 +924014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873071,12 +924031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8009d5" }, { @@ -873104,6 +924065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873119,12 +924082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d18f7" }, { @@ -873152,6 +924116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873167,12 +924133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5bd198" }, { @@ -873200,6 +924167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873215,12 +924184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ae12c" }, { @@ -873248,6 +924218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873263,12 +924235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c60c7a" }, { @@ -873296,6 +924269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873311,12 +924286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7bd131" }, { @@ -873344,6 +924320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873359,12 +924337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9316b5" }, { @@ -873392,6 +924371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873407,12 +924388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5a46d" } ], @@ -873438,11 +924420,11 @@ "Name": "Custom_Model", "Transform": { "posX": -16.6401, - "posY": 1.35995448, + "posY": 1.35995436, "posZ": -67.8206, - "rotX": 0.0208167452, + "rotX": 0.0208162013, "rotY": 270.0, - "rotZ": 0.0167675857, + "rotZ": 0.0167679321, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -873459,6 +924441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -873475,9 +924459,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0de2c4" }, { @@ -873486,8 +924470,8 @@ "posX": -22.6139, "posY": 1.38058448, "posZ": -53.4381, - "rotX": 0.016778158, - "rotY": 180.017151, + "rotX": 0.0167780612, + "rotY": 180.017166, "rotZ": 359.9792, "scaleX": 1.1, "scaleY": 1.0, @@ -873505,6 +924489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873523,12 +924509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -873555,6 +924542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873570,12 +924559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff1f6e" }, { @@ -873603,6 +924593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873618,12 +924610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e9e98" } ], @@ -873635,7 +924628,7 @@ "posX": -22.6169, "posY": 1.36946034, "posZ": -61.2414, - "rotX": 0.0167717524, + "rotX": 0.0167716518, "rotY": 179.999619, "rotZ": 359.9792, "scaleX": 1.1, @@ -873654,6 +924647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873674,7 +924669,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2740": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1017195287736572954/79FAF352FE90F08BE9247753F39798A878925EAA/", @@ -873682,7 +924678,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2320": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1017195287736547182/E9E6AA92778B14BA7BFAEC97F69CEEA08D1F0A7A/", @@ -873690,7 +924687,8 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2699": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/", @@ -873698,12 +924696,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -873730,6 +924729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873745,12 +924746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f2e0d" }, { @@ -873778,6 +924780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873793,12 +924797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8cafc" }, { @@ -873826,6 +924831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873841,12 +924848,13 @@ "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2d4e6" }, { @@ -873874,6 +924882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873889,12 +924899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6938eb" } ], @@ -873906,9 +924917,9 @@ "posX": -16.6401024, "posY": 1.35923135, "posZ": -70.2906, - "rotX": 0.020816952, + "rotX": 0.0208171029, "rotY": 269.999939, - "rotZ": 0.0167680141, + "rotZ": 0.016767934, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -873925,6 +924936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -873941,19 +924954,19 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "226716" }, { "Name": "Card", "Transform": { "posX": -22.6157, - "posY": 1.36682653, + "posY": 1.36682665, "posZ": -76.946, - "rotX": 0.0167755354, - "rotY": 180.010162, + "rotX": 0.0167756, + "rotY": 180.010178, "rotZ": 359.9792, "scaleX": 1.1, "scaleY": 1.0, @@ -873971,6 +924984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -873986,23 +925001,24 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25e2db" }, { "Name": "Custom_Model", "Transform": { "posX": -16.6401978, - "posY": 1.35497892, + "posY": 1.3549788, "posZ": -84.8182, - "rotX": 0.0208160263, + "rotX": 0.0208166782, "rotY": 270.000183, - "rotZ": 0.0167683829, + "rotZ": 0.0167680271, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -874019,6 +925035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -874035,20 +925053,20 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "307044" }, { "Name": "Custom_Model", "Transform": { "posX": -16.6385, - "posY": 1.35535336, + "posY": 1.35535324, "posZ": -83.5415, - "rotX": 0.0208170936, + "rotX": 0.0208170488, "rotY": 269.999725, - "rotZ": 0.0167682841, + "rotZ": 0.0167678744, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -874065,6 +925083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -874081,20 +925101,20 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ddfeb" }, { "Name": "Custom_Model", "Transform": { "posX": -16.64, - "posY": 1.36152339, + "posY": 1.36152327, "posZ": -62.4609, - "rotX": 0.0208163243, + "rotX": 0.0208164621, "rotY": 270.000031, - "rotZ": 0.0167683084, + "rotZ": 0.0167679451, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -874111,6 +925131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -874127,9 +925149,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41bfc7" }, { @@ -874138,9 +925160,9 @@ "posX": -16.6396027, "posY": 1.35728347, "posZ": -76.9456, - "rotX": 0.0208161175, + "rotX": 0.0208166186, "rotY": 270.000122, - "rotZ": 0.01676861, + "rotZ": 0.0167679545, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -874157,6 +925179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -874173,20 +925197,20 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ad11b" }, { "Name": "Custom_Model", "Transform": { "posX": -16.6403, - "posY": 1.35959148, + "posY": 1.35959136, "posZ": -69.0603, - "rotX": 0.0208169036, + "rotX": 0.020816572, "rotY": 269.999725, - "rotZ": 0.0167675577, + "rotZ": 0.0167674646, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -874203,6 +925227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -874219,9 +925245,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "543164" }, { @@ -874230,9 +925256,9 @@ "posX": -19.3, "posY": 1.38178873, "posZ": -53.4358, - "rotX": 0.0208126511, + "rotX": 0.0208133012, "rotY": 269.99292, - "rotZ": 0.016767107, + "rotZ": 0.0167672019, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 @@ -874249,6 +925275,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874267,7 +925295,8 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2586": { "FaceURL": "https://i.imgur.com/WPYBga4.jpg", @@ -874275,12 +925304,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -874307,6 +925337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874322,12 +925354,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b8e88" }, { @@ -874355,6 +925388,8 @@ "Grid": false, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874370,12 +925405,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ad56e" } ], @@ -874385,11 +925421,11 @@ "Name": "Custom_Model", "Transform": { "posX": -16.64, - "posY": 1.36454093, + "posY": 1.36454082, "posZ": -52.152, - "rotX": 0.0208160132, + "rotX": 0.0208159722, "rotY": 270.000183, - "rotZ": 0.0167684648, + "rotZ": 0.0167682674, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -874406,6 +925442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -874422,9 +925460,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6330da" }, { @@ -874433,9 +925471,9 @@ "posX": -16.6394, "posY": 1.35462785, "posZ": -86.0186, - "rotX": 0.0208162572, + "rotX": 0.02081681, "rotY": 270.000122, - "rotZ": 0.0167676657, + "rotZ": 0.0167680588, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -874452,6 +925490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -874468,9 +925508,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "779aa6" }, { @@ -874479,9 +925519,9 @@ "posX": -19.2998, "posY": 1.36572659, "posZ": -84.8182, - "rotX": 0.0208048318, + "rotX": 0.0208050236, "rotY": 270.0193, - "rotZ": 0.0167770777, + "rotZ": 0.0167767983, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 @@ -874498,6 +925538,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874513,12 +925555,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a6af2" }, { @@ -874527,7 +925570,7 @@ "posX": -22.6157, "posY": 1.36913049, "posZ": -69.0756, - "rotX": 0.01677548, + "rotX": 0.0167755317, "rotY": 180.0103, "rotZ": 359.9792, "scaleX": 1.1, @@ -874546,6 +925589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874561,12 +925606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9015b4" }, { @@ -874575,8 +925621,8 @@ "posX": -22.6169, "posY": 1.36452186, "posZ": -84.8185, - "rotX": 0.0167756, - "rotY": 180.0103, + "rotX": 0.0167755187, + "rotY": 180.010315, "rotZ": 359.9792, "scaleX": 1.1, "scaleY": 1.0, @@ -874594,6 +925640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874609,12 +925657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90ea00" }, { @@ -874623,9 +925672,9 @@ "posX": -19.3001, "posY": 1.37263012, "posZ": -61.2332, - "rotX": 0.020808747, + "rotX": 0.0208088644, "rotY": 270.005432, - "rotZ": 0.0167719144, + "rotZ": 0.0167720653, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 @@ -874642,6 +925691,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874657,23 +925708,24 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "965031" }, { "Name": "Custom_Model_Bag", "Transform": { "posX": -26.3, - "posY": 1.27569294, + "posY": 1.2756927, "posZ": -53.4368, "rotX": 359.979156, "rotY": 90.0002441, - "rotZ": 359.983215, + "rotZ": 359.983246, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 @@ -874690,6 +925742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874708,9 +925762,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -874737,6 +925791,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874745,9 +925801,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -874774,6 +925830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874789,12 +925847,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b8e88" }, { @@ -874822,6 +925881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874837,12 +925898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff1f6e" }, { @@ -874870,6 +925932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874885,12 +925949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "274daa" }, { @@ -874918,6 +925983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874933,12 +926000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe68c6" } ], @@ -874969,6 +926037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -874984,12 +926054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49a91e" }, { @@ -875017,6 +926088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875032,12 +926105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca25bc" }, { @@ -875065,6 +926139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875113,7 +926189,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -875121,7 +926198,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2304": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -875129,7 +926207,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2305": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -875137,7 +926216,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2306": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -875145,12 +926225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -875177,6 +926258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875192,12 +926275,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00d9ef" }, { @@ -875225,6 +926309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875240,12 +926326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d9eee" }, { @@ -875273,6 +926360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875288,12 +926377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "586fd2" }, { @@ -875321,6 +926411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875336,12 +926428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "011a5d" }, { @@ -875369,6 +926462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875384,12 +926479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5afd39" }, { @@ -875417,6 +926513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875432,12 +926530,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d2f9b4" }, { @@ -875465,6 +926564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875480,12 +926581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f57d14" }, { @@ -875513,6 +926615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875528,12 +926632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "997ec8" }, { @@ -875561,6 +926666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875576,12 +926683,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91295f" }, { @@ -875609,6 +926717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875624,12 +926734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8616c8" }, { @@ -875657,6 +926768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875672,12 +926785,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "266af7" }, { @@ -875705,6 +926819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875720,12 +926836,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "862e76" }, { @@ -875753,6 +926870,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875768,12 +926887,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5dfb58" }, { @@ -875801,6 +926921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875816,12 +926938,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3868de" }, { @@ -875849,6 +926972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875864,12 +926989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26eb32" }, { @@ -875897,6 +927023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875912,12 +927040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "261412" }, { @@ -875945,6 +927074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -875960,12 +927091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc05bb" }, { @@ -875993,6 +927125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876008,12 +927142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7c128" }, { @@ -876041,6 +927176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876056,12 +927193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5db027" }, { @@ -876089,6 +927227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876104,12 +927244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66aeaa" }, { @@ -876137,6 +927278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876152,12 +927295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c746a" }, { @@ -876185,6 +927329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876200,12 +927346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e138fe" }, { @@ -876233,6 +927380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876248,12 +927397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "849e3f" }, { @@ -876281,6 +927431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876296,12 +927448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "125e8e" }, { @@ -876329,6 +927482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876344,12 +927499,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d088f0" }, { @@ -876377,6 +927533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876392,12 +927550,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3f8b6" }, { @@ -876425,6 +927584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876440,12 +927601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d92486" }, { @@ -876473,6 +927635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876488,12 +927652,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edb657" }, { @@ -876521,6 +927686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876536,12 +927703,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "465a09" }, { @@ -876569,6 +927737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876584,12 +927754,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fbdf0" }, { @@ -876617,6 +927788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876632,12 +927805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "789971" }, { @@ -876665,6 +927839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876680,12 +927856,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a7db9" } ], @@ -876713,9 +927890,9 @@ "posX": -16.64, "posY": 1.36381817, "posZ": -54.6207, - "rotX": 0.02081318, + "rotX": 0.0208128151, "rotY": 270.012115, - "rotZ": 0.0167724416, + "rotZ": 0.0167723373, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -876732,6 +927909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -876748,9 +927927,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e80b9" }, { @@ -876759,9 +927938,9 @@ "posX": -16.64, "posY": 1.36417818, "posZ": -53.3904, - "rotX": 0.020816084, + "rotX": 0.02081656, "rotY": 270.000031, - "rotZ": 0.0167681556, + "rotZ": 0.0167679, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -876778,6 +927957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -876794,9 +927975,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bde4a6" }, { @@ -876805,9 +927986,9 @@ "posX": -19.2959, "posY": 1.37034047, "posZ": -69.0607, - "rotX": 0.0208011586, + "rotX": 0.02080092, "rotY": 270.032074, - "rotZ": 0.0167814549, + "rotZ": 0.0167816989, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 @@ -876824,6 +928005,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876839,23 +928022,24 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bed196" }, { "Name": "Custom_Model", "Transform": { "posX": -16.6401, - "posY": 1.36224341, + "posY": 1.36224329, "posZ": -60.001, - "rotX": 0.0208160747, + "rotX": 0.0208159946, "rotY": 270.000549, - "rotZ": 0.0167681314, + "rotZ": 0.0167683586, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -876872,6 +928056,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -876888,9 +928074,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6fdbf" }, { @@ -876899,9 +928085,9 @@ "posX": -16.6401, "posY": 1.35692334, "posZ": -78.1756, - "rotX": 0.02081401, + "rotX": 0.0208137669, "rotY": 270.0092, - "rotZ": 0.016771486, + "rotZ": 0.0167713854, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -876918,6 +928104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -876934,18 +928122,18 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9fb86" }, { "Name": "Custom_Model_Bag", "Transform": { "posX": -26.2996, - "posY": 1.266507, + "posY": 1.26650774, "posZ": -84.818, - "rotX": 359.9792, + "rotX": 359.979156, "rotY": 90.00282, "rotZ": 359.983215, "scaleX": 2.0, @@ -876964,6 +928152,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -876982,9 +928172,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -877011,6 +928201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877026,12 +928218,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a56ffe" }, { @@ -877059,6 +928252,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877074,12 +928269,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79b4af" }, { @@ -877107,6 +928303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877155,7 +928353,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3687": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -877163,7 +928362,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", @@ -877171,7 +928371,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3689": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -877179,7 +928380,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3685": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -877187,7 +928389,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2617": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -877195,7 +928398,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3797": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -877203,12 +928407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -877235,6 +928440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877250,12 +928457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da7c01" }, { @@ -877283,6 +928491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877298,12 +928508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdfd9f" }, { @@ -877331,6 +928542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877346,12 +928559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f34090" }, { @@ -877379,6 +928593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877394,12 +928610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "833305" }, { @@ -877427,6 +928644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877442,12 +928661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e103" }, { @@ -877475,6 +928695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877490,12 +928712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a56ffe" }, { @@ -877523,6 +928746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877538,12 +928763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e1b" }, { @@ -877571,6 +928797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877586,12 +928814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68744b" }, { @@ -877619,6 +928848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877634,12 +928865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -877667,6 +928899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877682,12 +928916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -877715,6 +928950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877730,12 +928967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe2db3" }, { @@ -877763,6 +929001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877778,12 +929018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88d3c0" }, { @@ -877811,6 +929052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877826,12 +929069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b18b33" }, { @@ -877859,6 +929103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877874,12 +929120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -877907,6 +929154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877922,12 +929171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -877955,6 +929205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -877970,12 +929222,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88392" }, { @@ -878003,6 +929256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878018,12 +929273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab9f4" }, { @@ -878051,6 +929307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878066,12 +929324,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "593deb" }, { @@ -878099,6 +929358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878114,12 +929375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc3451" }, { @@ -878147,6 +929409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878162,12 +929426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f474b1" }, { @@ -878195,6 +929460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878210,12 +929477,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -878243,6 +929511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878258,12 +929528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79b4af" }, { @@ -878291,6 +929562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878306,12 +929579,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8ea95" }, { @@ -878339,6 +929613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878354,12 +929630,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab9f4" }, { @@ -878387,6 +929664,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878402,12 +929681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -878435,6 +929715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878450,12 +929732,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -878483,6 +929766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878498,12 +929783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eaa415" }, { @@ -878531,6 +929817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878546,12 +929834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "213853" }, { @@ -878579,6 +929868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878594,12 +929885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" }, { @@ -878627,6 +929919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878642,12 +929936,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b76c9" }, { @@ -878675,6 +929970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878690,12 +929987,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -878723,6 +930021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878738,12 +930038,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "078efb" } ], @@ -878769,11 +930070,11 @@ "Name": "Custom_Model", "Transform": { "posX": -16.6401, - "posY": 1.36188316, + "posY": 1.36188328, "posZ": -61.231, - "rotX": 0.0208161343, + "rotX": 0.0208164863, "rotY": 270.000366, - "rotZ": 0.01676838, + "rotZ": 0.0167682525, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -878790,6 +930091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -878806,20 +930109,20 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de216f" }, { "Name": "Custom_Model", "Transform": { "posX": -16.6426, - "posY": 1.35764742, + "posY": 1.3576473, "posZ": -75.6992, - "rotX": 0.02087402, + "rotX": 0.0208730586, "rotY": 269.806, - "rotZ": 0.0166975241, + "rotZ": 0.0166976526, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -878836,6 +930139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -878852,20 +930157,20 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e04b48" }, { "Name": "Card", "Transform": { "posX": -19.2936, - "posY": 1.3680346, + "posY": 1.36803448, "posZ": -76.9415, - "rotX": 0.0208114162, + "rotX": 0.02081166, "rotY": 269.9964, - "rotZ": 0.0167683046, + "rotZ": 0.0167685151, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 @@ -878882,6 +930187,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878897,12 +930204,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9ad05" } ], @@ -878911,12 +930219,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": -9.742668, - "posY": 1.3058908, + "posX": -9.742669, + "posY": 1.30589056, "posZ": -56.0992737, - "rotX": 0.0208126046, + "rotX": 0.0208118074, "rotY": 269.993256, - "rotZ": 0.0167679135, + "rotZ": 0.0167684145, "scaleX": 0.5, "scaleY": 0.139652729, "scaleZ": 0.5 @@ -878933,6 +930241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -878961,9 +930271,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor +12\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=800, width=800,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,3,-7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n-- position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100,\r\n-- font_size=400, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={2.4,3,7}, rotation={0,0,0}, height=850, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"04e814\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3554,\"z\":-83.5415},\"rot\":{\"x\":0.0208,\"y\":269.9877,\"z\":0.0168}},\"07b86c\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3596,\"z\":-69.0603},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"0a9dcf\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3772,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":270.0234,\"z\":0.0168}},\"246187\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3592,\"z\":-70.2906},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"25a9d0\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.2665,\"z\":-84.818},\"rot\":{\"x\":359.9792,\"y\":90.0001,\"z\":359.9832}},\"3178b4\":{\"lock\":false,\"pos\":{\"x\":-16.6378,\"y\":1.3638,\"z\":-54.6271},\"rot\":{\"x\":0.0209,\"y\":269.7959,\"z\":0.0167}},\"39c9b4\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3576,\"z\":-75.7054},\"rot\":{\"x\":0.0208,\"y\":270.0009,\"z\":0.0168}},\"41625c\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3726,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":270.0177,\"z\":0.0168}},\"523bbe\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.376,\"z\":-69.0756},\"rot\":{\"x\":0.0168,\"y\":180.0058,\"z\":359.9792}},\"5d43bb\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3569,\"z\":-78.1756},\"rot\":{\"x\":0.0208,\"y\":269.999,\"z\":0.0168}},\"62acb6\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2711,\"z\":-69.0606},\"rot\":{\"x\":359.9792,\"y\":90.0001,\"z\":359.9832}},\"7b6ae4\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.355,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":269.999,\"z\":0.0168}},\"81a0f8\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3737,\"z\":-53.4381},\"rot\":{\"x\":0.0168,\"y\":180.0104,\"z\":359.9792}},\"8d7701\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3573,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":270.009,\"z\":0.0168}},\"9bdc2f\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3619,\"z\":-61.231},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"ae39ed\":{\"lock\":false,\"pos\":{\"x\":-26.3001,\"y\":1.2734,\"z\":-61.241},\"rot\":{\"x\":359.9792,\"y\":90,\"z\":359.9832}},\"b14c5f\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3714,\"z\":-61.2414},\"rot\":{\"x\":0.0168,\"y\":180.0103,\"z\":359.9792}},\"c72b69\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3645,\"z\":-52.152},\"rot\":{\"x\":0.0208,\"y\":270.0125,\"z\":0.0168}},\"c81217\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3749,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":270.0232,\"z\":0.0168}},\"d28c9a\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3657,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0288,\"z\":0.0168}},\"da7828\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3668,\"z\":-76.946},\"rot\":{\"x\":0.0168,\"y\":180.0104,\"z\":359.9792}},\"dbd56b\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3642,\"z\":-53.3904},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"e46816\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.36,\"z\":-67.8206},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"e69e6d\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3615,\"z\":-62.4609},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"ed4b06\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.368,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":269.9895,\"z\":0.0168}},\"ed6ea8\":{\"lock\":false,\"pos\":{\"x\":-16.6394,\"y\":1.3546,\"z\":-86.0186},\"rot\":{\"x\":0.0208,\"y\":269.9965,\"z\":0.0168}},\"edb898\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2688,\"z\":-76.9456},\"rot\":{\"x\":359.9792,\"y\":90.0001,\"z\":359.9832}},\"f8af18\":{\"lock\":false,\"pos\":{\"x\":-26.3,\"y\":1.2757,\"z\":-53.4368},\"rot\":{\"x\":359.9792,\"y\":90.0001,\"z\":359.9832}},\"f9c822\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3622,\"z\":-60.001},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"fbf105\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3645,\"z\":-84.8185},\"rot\":{\"x\":0.0168,\"y\":180.0103,\"z\":359.9792}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model", @@ -878990,6 +930300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -879006,9 +930318,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04e814" }, { @@ -879036,6 +930348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -879052,9 +930366,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07b86c" }, { @@ -879082,6 +930396,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879100,7 +930416,8 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2590": { "FaceURL": "https://i.imgur.com/WPYBga4.jpg", @@ -879108,12 +930425,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -879140,6 +930458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879155,12 +930475,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4e909" }, { @@ -879188,6 +930509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879203,12 +930526,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48b174" } ], @@ -879239,6 +930563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -879255,9 +930581,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "246187" }, { @@ -879285,6 +930611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879303,9 +930631,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -879332,6 +930660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879347,12 +930677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03c6a7" }, { @@ -879380,6 +930711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879395,12 +930728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c901b" }, { @@ -879428,6 +930762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879476,7 +930812,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2097": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -879484,7 +930821,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2303": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/", @@ -879492,7 +930830,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2316": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -879500,7 +930839,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -879508,12 +930848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -879540,6 +930881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879555,12 +930898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "789971" }, { @@ -879588,6 +930932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879603,12 +930949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "465a09" }, { @@ -879636,6 +930983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879651,12 +931000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edb657" }, { @@ -879684,6 +931034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879699,12 +931051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fbdf0" }, { @@ -879732,6 +931085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879747,12 +931102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "002e8e" }, { @@ -879780,6 +931136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879795,12 +931153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "195ce3" }, { @@ -879828,6 +931187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879843,12 +931204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "822bb4" }, { @@ -879876,6 +931238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879891,12 +931255,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58fc90" }, { @@ -879924,6 +931289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879939,12 +931306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a2ac6" }, { @@ -879972,6 +931340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -879987,12 +931357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92e1d0" }, { @@ -880020,6 +931391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880035,12 +931408,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9dcd0b" }, { @@ -880068,6 +931442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880083,12 +931459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d833de" }, { @@ -880116,6 +931493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880131,12 +931510,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7deaf0" }, { @@ -880164,6 +931544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880179,12 +931561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae0b33" }, { @@ -880212,6 +931595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880227,12 +931612,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc111c" }, { @@ -880260,6 +931646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880275,12 +931663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b005b" }, { @@ -880308,6 +931697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880323,12 +931714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24e2bc" }, { @@ -880356,6 +931748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880371,12 +931765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d08a49" }, { @@ -880404,6 +931799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880419,12 +931816,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "813960" }, { @@ -880452,6 +931850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880467,12 +931867,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c4754" }, { @@ -880500,6 +931901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880515,12 +931918,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "499c81" }, { @@ -880548,6 +931952,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880563,12 +931969,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fef4e" }, { @@ -880596,6 +932003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880611,12 +932020,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c1bb2" }, { @@ -880644,6 +932054,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880659,12 +932071,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "078b04" }, { @@ -880692,6 +932105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880707,12 +932122,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5f16f0" }, { @@ -880740,6 +932156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880755,12 +932173,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6806a6" }, { @@ -880788,6 +932207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880803,12 +932224,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "125aaf" }, { @@ -880836,6 +932258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880851,12 +932275,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e15f65" }, { @@ -880884,6 +932309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880899,12 +932326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6da534" }, { @@ -880932,6 +932360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880947,12 +932377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa1424" }, { @@ -880980,6 +932411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -880995,12 +932428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fefad" }, { @@ -881028,6 +932462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881043,12 +932479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "84e37c" } ], @@ -881095,6 +932532,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -881111,9 +932550,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3178b4" }, { @@ -881141,6 +932580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -881157,9 +932598,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "39c9b4" }, { @@ -881187,6 +932628,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881202,12 +932645,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41625c" }, { @@ -881235,6 +932679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881253,7 +932699,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2737": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/", @@ -881261,12 +932708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -881293,6 +932741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881308,12 +932758,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8d3f7" }, { @@ -881341,6 +932792,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881356,12 +932809,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6cc82" } ], @@ -881392,6 +932846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -881408,9 +932864,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d43bb" }, { @@ -881438,6 +932894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881456,9 +932914,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -881485,6 +932943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881493,9 +932953,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -881522,6 +932982,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881537,12 +932999,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c729ab" }, { @@ -881570,6 +933033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881585,12 +933050,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46812e" }, { @@ -881618,6 +933084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881633,12 +933101,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4e909" }, { @@ -881666,6 +933135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881681,12 +933152,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f7be1" } ], @@ -881717,6 +933189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881732,12 +933206,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d87128" }, { @@ -881765,6 +933240,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881780,12 +933257,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd94e3" }, { @@ -881813,6 +933291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881861,7 +933341,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2098": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -881869,7 +933350,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2100": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -881877,7 +933359,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2099": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -881885,7 +933368,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -881893,7 +933377,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2311": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -881901,7 +933386,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2310": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -881909,12 +933395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -881941,6 +933428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -881956,12 +933445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "789971" }, { @@ -881989,6 +933479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882004,12 +933496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "465a09" }, { @@ -882037,6 +933530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882052,12 +933547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edb657" }, { @@ -882085,6 +933581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882100,12 +933598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fbdf0" }, { @@ -882133,6 +933632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882148,12 +933649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "002e8e" }, { @@ -882181,6 +933683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882196,12 +933700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "195ce3" }, { @@ -882229,6 +933734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882244,12 +933751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c725f" }, { @@ -882277,6 +933785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882292,12 +933802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "370d0d" }, { @@ -882325,6 +933836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882340,12 +933853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f09ab4" }, { @@ -882373,6 +933887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882388,12 +933904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2cb08e" }, { @@ -882421,6 +933938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882436,12 +933955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a76a3" }, { @@ -882469,6 +933989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882484,12 +934006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f87e93" }, { @@ -882517,6 +934040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882532,12 +934057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16f918" }, { @@ -882565,6 +934091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882580,12 +934108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "566a69" }, { @@ -882613,6 +934142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882628,12 +934159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1de5b" }, { @@ -882661,6 +934193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882676,12 +934210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f96538" }, { @@ -882709,6 +934244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882724,12 +934261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e5c27" }, { @@ -882757,6 +934295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882772,12 +934312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "784dd5" }, { @@ -882805,6 +934346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882820,12 +934363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a8476" }, { @@ -882853,6 +934397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882868,12 +934414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1decc" }, { @@ -882901,6 +934448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882916,12 +934465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c8a29" }, { @@ -882949,6 +934499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -882964,12 +934516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50ab5f" }, { @@ -882997,6 +934550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883012,12 +934567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4150ec" }, { @@ -883045,6 +934601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883060,12 +934618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbbae1" }, { @@ -883093,6 +934652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883108,12 +934669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55e550" }, { @@ -883141,6 +934703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883156,12 +934720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca6036" }, { @@ -883189,6 +934754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883204,12 +934771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3868f" }, { @@ -883237,6 +934805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883252,12 +934822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fad93a" }, { @@ -883285,6 +934856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883300,12 +934873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d9233" }, { @@ -883333,6 +934907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883348,12 +934924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95eee5" }, { @@ -883381,6 +934958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883396,12 +934975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6d45d" }, { @@ -883429,6 +935009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883444,12 +935026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "804406" } ], @@ -883496,6 +935079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -883512,9 +935097,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b6ae4" }, { @@ -883542,6 +935127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883557,12 +935144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81a0f8" }, { @@ -883590,6 +935178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -883606,9 +935196,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d7701" }, { @@ -883636,6 +935226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -883652,9 +935244,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bdc2f" }, { @@ -883682,6 +935274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883700,9 +935294,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -883729,6 +935323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883744,12 +935340,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "033a35" }, { @@ -883777,6 +935374,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883792,12 +935391,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4156cf" }, { @@ -883825,6 +935425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883873,7 +935475,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2100": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -883881,7 +935484,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2099": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -883889,7 +935493,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2098": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -883897,7 +935502,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2304": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -883905,7 +935511,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2314": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -883913,7 +935520,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2315": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -883921,12 +935529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -883953,6 +935562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -883968,12 +935579,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "789971" }, { @@ -884001,6 +935613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884016,12 +935630,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "465a09" }, { @@ -884049,6 +935664,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884064,12 +935681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edb657" }, { @@ -884097,6 +935715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884112,12 +935732,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fbdf0" }, { @@ -884145,6 +935766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884160,12 +935783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "002e8e" }, { @@ -884193,6 +935817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884208,12 +935834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "195ce3" }, { @@ -884241,6 +935868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884256,12 +935885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee0f12" }, { @@ -884289,6 +935919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884304,12 +935936,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "582088" }, { @@ -884337,6 +935970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884352,12 +935987,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e6f6d" }, { @@ -884385,6 +936021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884400,12 +936038,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c3908" }, { @@ -884433,6 +936072,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884448,12 +936089,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91b398" }, { @@ -884481,6 +936123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884496,12 +936140,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "990731" }, { @@ -884529,6 +936174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884544,12 +936191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d4e467" }, { @@ -884577,6 +936225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884592,12 +936242,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c8371" }, { @@ -884625,6 +936276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884640,12 +936293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a165f" }, { @@ -884673,6 +936327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884688,12 +936344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b66fc" }, { @@ -884721,6 +936378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884736,12 +936395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59308b" }, { @@ -884769,6 +936429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884784,12 +936446,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5a623f" }, { @@ -884817,6 +936480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884832,12 +936497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a3a78" }, { @@ -884865,6 +936531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884880,12 +936548,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5570a" }, { @@ -884913,6 +936582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884928,12 +936599,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "946fd6" }, { @@ -884961,6 +936633,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -884976,12 +936650,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02f93a" }, { @@ -885009,6 +936684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885024,12 +936701,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41edd4" }, { @@ -885057,6 +936735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885072,12 +936752,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c02e4a" }, { @@ -885105,6 +936786,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885120,12 +936803,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9036f" }, { @@ -885153,6 +936837,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885168,12 +936854,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ad895" }, { @@ -885201,6 +936888,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885216,12 +936905,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89d294" }, { @@ -885249,6 +936939,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885264,12 +936956,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b084ac" }, { @@ -885297,6 +936990,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885312,12 +937007,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "636a7b" }, { @@ -885345,6 +937041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885360,12 +937058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c354d5" }, { @@ -885393,6 +937092,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885408,12 +937109,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57458d" }, { @@ -885441,6 +937143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885456,12 +937160,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3880e" } ], @@ -885508,6 +937213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885523,12 +937230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b14c5f" }, { @@ -885556,6 +937264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -885572,9 +937282,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c72b69" }, { @@ -885602,6 +937312,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885617,12 +937329,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c81217" }, { @@ -885650,6 +937363,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885665,12 +937380,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d28c9a" }, { @@ -885698,6 +937414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885713,12 +937431,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da7828" }, { @@ -885746,6 +937465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -885762,9 +937483,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dbd56b" }, { @@ -885792,6 +937513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -885808,9 +937531,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e46816" }, { @@ -885838,6 +937561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -885854,9 +937579,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e69e6d" }, { @@ -885884,6 +937609,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885899,12 +937626,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed4b06" }, { @@ -885932,6 +937660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -885948,9 +937678,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed6ea8" }, { @@ -885978,6 +937708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -885996,9 +937728,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -886025,6 +937757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886040,12 +937774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "876557" }, { @@ -886073,6 +937808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886088,12 +937825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97781f" }, { @@ -886121,6 +937859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886169,7 +937909,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3684": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -886177,7 +937918,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", @@ -886185,7 +937927,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3685": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -886193,7 +937936,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3710": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -886201,12 +937945,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -886233,6 +937978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886248,12 +937995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "876557" }, { @@ -886281,6 +938029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886296,12 +938046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cc0a6" }, { @@ -886329,6 +938080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886344,12 +938097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e103" }, { @@ -886377,6 +938131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886392,12 +938148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -886425,6 +938182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886440,12 +938199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" }, { @@ -886473,6 +938233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886488,12 +938250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffdeb5" }, { @@ -886521,6 +938284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886536,12 +938301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8ea95" }, { @@ -886569,6 +938335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886584,12 +938352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ac19" }, { @@ -886617,6 +938386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886632,12 +938403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "078efb" }, { @@ -886665,6 +938437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886680,12 +938454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97781f" }, { @@ -886713,6 +938488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886728,12 +938505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -886761,6 +938539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886776,12 +938556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb6165" }, { @@ -886809,6 +938590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886824,12 +938607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b76c9" }, { @@ -886857,6 +938641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886872,12 +938658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f474b1" }, { @@ -886905,6 +938692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886920,12 +938709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9da37c" }, { @@ -886953,6 +938743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -886968,12 +938760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c2d9a" }, { @@ -887001,6 +938794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887016,12 +938811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -887049,6 +938845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887064,12 +938862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -887097,6 +938896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887112,12 +938913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b265c4" }, { @@ -887145,6 +938947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887160,12 +938964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9da37c" }, { @@ -887193,6 +938998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887208,12 +939015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "063fd8" }, { @@ -887241,6 +939049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887256,12 +939066,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c2d9a" }, { @@ -887289,6 +939100,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887304,12 +939117,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f34090" }, { @@ -887337,6 +939151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887352,12 +939168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -887385,6 +939202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887400,12 +939219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c18ebe" }, { @@ -887433,6 +939253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887448,12 +939270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ac19" }, { @@ -887481,6 +939304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887496,12 +939321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88d3c0" }, { @@ -887529,6 +939355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887544,12 +939372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -887577,6 +939406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887592,12 +939423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "593deb" }, { @@ -887625,6 +939457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887640,12 +939474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -887673,6 +939508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887688,12 +939525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -887721,6 +939559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887736,12 +939576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e1b" } ], @@ -887788,6 +939629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887806,9 +939649,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -887835,6 +939678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887850,12 +939695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66d810" }, { @@ -887883,6 +939729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887898,12 +939746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e68658" }, { @@ -887931,6 +939780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -887979,7 +939830,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2303": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/", @@ -887987,7 +939839,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -887995,7 +939848,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2312": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -888003,7 +939857,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2313": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -888011,12 +939866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -888043,6 +939899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888058,12 +939916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "789971" }, { @@ -888091,6 +939950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888106,12 +939967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "465a09" }, { @@ -888139,6 +940001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888154,12 +940018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edb657" }, { @@ -888187,6 +940052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888202,12 +940069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fbdf0" }, { @@ -888235,6 +940103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888250,12 +940120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "002e8e" }, { @@ -888283,6 +940154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888298,12 +940171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "195ce3" }, { @@ -888331,6 +940205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888346,12 +940222,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e921f" }, { @@ -888379,6 +940256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888394,12 +940273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "32e4f2" }, { @@ -888427,6 +940307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888442,12 +940324,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f0327" }, { @@ -888475,6 +940358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888490,12 +940375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ccc47" }, { @@ -888523,6 +940409,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888538,12 +940426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18c2ed" }, { @@ -888571,6 +940460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888586,12 +940477,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b58c1" }, { @@ -888619,6 +940511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888634,12 +940528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c6510" }, { @@ -888667,6 +940562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888682,12 +940579,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0dc0c3" }, { @@ -888715,6 +940613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888730,12 +940630,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95ee0d" }, { @@ -888763,6 +940664,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888778,12 +940681,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25b414" }, { @@ -888811,6 +940715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888826,12 +940732,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfa8ad" }, { @@ -888859,6 +940766,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888874,12 +940783,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b687a3" }, { @@ -888907,6 +940817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888922,12 +940834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c2b67" }, { @@ -888955,6 +940868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -888970,12 +940885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33b118" }, { @@ -889003,6 +940919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889018,12 +940936,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "055518" }, { @@ -889051,6 +940970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889066,12 +940987,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fd6a8" }, { @@ -889099,6 +941021,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889114,12 +941038,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f10980" }, { @@ -889147,6 +941072,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889162,12 +941089,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "291523" }, { @@ -889195,6 +941123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889210,12 +941140,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8604a7" }, { @@ -889243,6 +941174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889258,12 +941191,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ea656" }, { @@ -889291,6 +941225,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889306,12 +941242,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bde78" }, { @@ -889339,6 +941276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889354,12 +941293,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b34" }, { @@ -889387,6 +941327,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889402,12 +941344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c7d92b" }, { @@ -889435,6 +941378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889450,12 +941395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a90bf" }, { @@ -889483,6 +941429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889498,12 +941446,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "753e4a" }, { @@ -889531,6 +941480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889546,12 +941497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e034d3" } ], @@ -889598,6 +941550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -889614,9 +941568,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9c822" }, { @@ -889644,6 +941598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889659,12 +941615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbf105" } ], @@ -889676,9 +941633,9 @@ "posX": -9.742768, "posY": 1.30398881, "posZ": -62.5954056, - "rotX": 0.0208121948, + "rotX": 0.0208123028, "rotY": 269.9932, - "rotZ": 0.0167679526, + "rotZ": 0.0167679377, "scaleX": 0.5, "scaleY": 0.139652729, "scaleZ": 0.5 @@ -889695,6 +941652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889723,9 +941682,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor +12\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=800, width=800,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,3,-7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n-- position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100,\r\n-- font_size=400, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={2.4,3,7}, rotation={0,0,0}, height=850, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"02bcb4\":{\"lock\":false,\"pos\":{\"x\":-22.6128,\"y\":1.3747,\"z\":-49.959},\"rot\":{\"x\":0.0168,\"y\":180.0104,\"z\":359.9792}},\"069e1b\":{\"lock\":false,\"pos\":{\"x\":-22.6158,\"y\":1.3655,\"z\":-81.3393},\"rot\":{\"x\":0.0168,\"y\":180.0104,\"z\":359.9792}},\"08cb35\":{\"lock\":false,\"pos\":{\"x\":-16.6389,\"y\":1.3625,\"z\":-58.9818},\"rot\":{\"x\":0.0208,\"y\":270.0182,\"z\":0.0168}},\"0b9ee6\":{\"lock\":false,\"pos\":{\"x\":-16.6392,\"y\":1.3587,\"z\":-72.2263},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"233795\":{\"lock\":false,\"pos\":{\"x\":-19.2948,\"y\":1.3714,\"z\":-65.5815},\"rot\":{\"x\":0.0208,\"y\":269.9567,\"z\":0.0168}},\"235bfb\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3632,\"z\":-89.174},\"rot\":{\"x\":0.0168,\"y\":180.0105,\"z\":359.9792}},\"27e41e\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3583,\"z\":-73.4665},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"2ce03d\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3656,\"z\":-48.6729},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"3d3e9c\":{\"lock\":false,\"pos\":{\"x\":-26.2985,\"y\":1.2675,\"z\":-81.3388},\"rot\":{\"x\":359.9792,\"y\":90.018,\"z\":359.9832}},\"3da38f\":{\"lock\":false,\"pos\":{\"x\":-26.299,\"y\":1.2744,\"z\":-57.7619},\"rot\":{\"x\":359.9792,\"y\":89.9998,\"z\":359.9832}},\"435797\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3652,\"z\":-49.9113},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"454573\":{\"lock\":false,\"pos\":{\"x\":-26.2991,\"y\":1.2698,\"z\":-73.4665},\"rot\":{\"x\":359.9792,\"y\":90.0003,\"z\":359.9832}},\"462941\":{\"lock\":false,\"pos\":{\"x\":-22.6158,\"y\":1.3724,\"z\":-57.7623},\"rot\":{\"x\":0.0168,\"y\":180.0002,\"z\":359.9792}},\"4fe415\":{\"lock\":false,\"pos\":{\"x\":-16.6392,\"y\":1.3606,\"z\":-65.5811},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"5b1faf\":{\"lock\":false,\"pos\":{\"x\":-26.2989,\"y\":1.2767,\"z\":-49.9578},\"rot\":{\"x\":359.9792,\"y\":89.9999,\"z\":359.9832}},\"5c5d3e\":{\"lock\":false,\"pos\":{\"x\":-19.2989,\"y\":1.3759,\"z\":-49.9567},\"rot\":{\"x\":0.0208,\"y\":269.9878,\"z\":0.0168}},\"681694\":{\"lock\":false,\"pos\":{\"x\":-16.6383,\"y\":1.3534,\"z\":-90.3836},\"rot\":{\"x\":0.0208,\"y\":270.009,\"z\":0.0168}},\"69a43c\":{\"lock\":false,\"pos\":{\"x\":-16.6406,\"y\":1.3541,\"z\":-87.9074},\"rot\":{\"x\":0.0209,\"y\":269.8033,\"z\":0.0167}},\"74d0ca\":{\"lock\":false,\"pos\":{\"x\":-22.6146,\"y\":1.3701,\"z\":-65.5964},\"rot\":{\"x\":0.0168,\"y\":180.0104,\"z\":359.9792}},\"754ca1\":{\"lock\":false,\"pos\":{\"x\":-19.2987,\"y\":1.3667,\"z\":-81.339},\"rot\":{\"x\":0.0208,\"y\":269.9901,\"z\":0.0168}},\"7b85f6\":{\"lock\":false,\"pos\":{\"x\":-16.6384,\"y\":1.3537,\"z\":-89.1537},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"9248cf\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3579,\"z\":-74.6965},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"98d426\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3648,\"z\":-51.1416},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"ac8f67\":{\"lock\":false,\"pos\":{\"x\":-19.2985,\"y\":1.3645,\"z\":-89.1737},\"rot\":{\"x\":0.0208,\"y\":269.9649,\"z\":0.0167}},\"b4a171\":{\"lock\":false,\"pos\":{\"x\":-19.2925,\"y\":1.3691,\"z\":-73.4624},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b967c9\":{\"lock\":false,\"pos\":{\"x\":-16.6391,\"y\":1.356,\"z\":-81.339},\"rot\":{\"x\":0.0208,\"y\":269.9989,\"z\":0.0168}},\"baeea0\":{\"lock\":false,\"pos\":{\"x\":-26.2991,\"y\":1.2721,\"z\":-65.5814},\"rot\":{\"x\":359.9792,\"y\":89.9999,\"z\":359.9832}},\"bc93c3\":{\"lock\":false,\"pos\":{\"x\":-19.299,\"y\":1.3736,\"z\":-57.7542},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"bd9bda\":{\"lock\":false,\"pos\":{\"x\":-22.6146,\"y\":1.3678,\"z\":-73.4669},\"rot\":{\"x\":0.0168,\"y\":180.0104,\"z\":359.9792}},\"c55d46\":{\"lock\":false,\"pos\":{\"x\":-26.2984,\"y\":1.2652,\"z\":-89.1737},\"rot\":{\"x\":359.9792,\"y\":89.9836,\"z\":359.9832}},\"cd74de\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.361,\"z\":-64.3414},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"dd6f2b\":{\"lock\":false,\"pos\":{\"x\":-16.6381,\"y\":1.3556,\"z\":-82.5394},\"rot\":{\"x\":0.0208,\"y\":270.0164,\"z\":0.0168}},\"df03fb\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3629,\"z\":-57.7519},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"e2df57\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3603,\"z\":-66.8114},\"rot\":{\"x\":0.0208,\"y\":269.9986,\"z\":0.0168}},\"eb9c85\":{\"lock\":false,\"pos\":{\"x\":-16.6386,\"y\":1.3564,\"z\":-80.069},\"rot\":{\"x\":0.0208,\"y\":269.9867,\"z\":0.0168}},\"eed875\":{\"lock\":false,\"pos\":{\"x\":-16.6415,\"y\":1.3633,\"z\":-56.517},\"rot\":{\"x\":0.0208,\"y\":269.9107,\"z\":0.0167}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -889752,6 +941711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889767,12 +941728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02bcb4" }, { @@ -889800,6 +941762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889815,12 +941779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "069e1b" }, { @@ -889848,6 +941813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -889864,9 +941831,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08cb35" }, { @@ -889894,6 +941861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -889910,9 +941879,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b9ee6" }, { @@ -889940,6 +941909,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -889955,12 +941926,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "233795" }, { @@ -889988,6 +941960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890003,12 +941977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "235bfb" }, { @@ -890036,6 +942011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -890052,9 +942029,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27e41e" }, { @@ -890082,6 +942059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -890098,9 +942077,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ce03d" }, { @@ -890128,6 +942107,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890146,9 +942127,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -890175,6 +942156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890190,12 +942173,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6efe6" }, { @@ -890223,6 +942207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890238,12 +942224,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80b7c6" }, { @@ -890271,6 +942258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890319,7 +942308,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -890327,7 +942317,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", @@ -890335,7 +942326,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3738": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -890343,7 +942335,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3739": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -890351,12 +942344,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -890383,6 +942377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890398,12 +942394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -890431,6 +942428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890446,12 +942445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86ee68" }, { @@ -890479,6 +942479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890494,12 +942496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -890527,6 +942530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890542,12 +942547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e103" }, { @@ -890575,6 +942581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890590,12 +942598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "334f03" }, { @@ -890623,6 +942632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890638,12 +942649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80b7c6" }, { @@ -890671,6 +942683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890686,12 +942700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1165db" }, { @@ -890719,6 +942734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890734,12 +942751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f34090" }, { @@ -890767,6 +942785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890782,12 +942802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" }, { @@ -890815,6 +942836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890830,12 +942853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b76c9" }, { @@ -890863,6 +942887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890878,12 +942904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "593deb" }, { @@ -890911,6 +942938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890926,12 +942955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e1b" }, { @@ -890959,6 +942989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -890974,12 +943006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12660b" }, { @@ -891007,6 +943040,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891022,12 +943057,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -891055,6 +943091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891070,12 +943108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5cd622" }, { @@ -891103,6 +943142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891118,12 +943159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e66002" }, { @@ -891151,6 +943193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891166,12 +943210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -891199,6 +943244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891214,12 +943261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -891247,6 +943295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891262,12 +943312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "889121" }, { @@ -891295,6 +943346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891310,12 +943363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08bdf1" }, { @@ -891343,6 +943397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891358,12 +943414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fe6de" }, { @@ -891391,6 +943448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891406,12 +943465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "078efb" }, { @@ -891439,6 +943499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891454,12 +943516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "334f03" }, { @@ -891487,6 +943550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891502,12 +943567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0dff3" }, { @@ -891535,6 +943601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891550,12 +943618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -891583,6 +943652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891598,12 +943669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fe6de" }, { @@ -891631,6 +943703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891646,12 +943720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88d3c0" }, { @@ -891679,6 +943754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891694,12 +943771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f474b1" }, { @@ -891727,6 +943805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891742,12 +943822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6efe6" }, { @@ -891775,6 +943856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891790,12 +943873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d4749" }, { @@ -891823,6 +943907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891838,12 +943924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e66002" }, { @@ -891871,6 +943958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891886,12 +943975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2db518" } ], @@ -891938,6 +944028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -891956,9 +944048,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -891985,6 +944077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892000,12 +944094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "016b72" }, { @@ -892033,6 +944128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892048,12 +944145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b6ab5" }, { @@ -892081,6 +944179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892129,7 +944229,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2304": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -892137,7 +944238,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2342": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -892145,7 +944247,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2343": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -892153,7 +944256,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", @@ -892161,12 +944265,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -892193,6 +944298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892208,12 +944315,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35fe60" }, { @@ -892241,6 +944349,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892256,12 +944366,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6fd7c" }, { @@ -892289,6 +944400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892304,12 +944417,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af7171" }, { @@ -892337,6 +944451,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892352,12 +944468,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74f815" }, { @@ -892385,6 +944502,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892400,12 +944519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01e244" }, { @@ -892433,6 +944553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892448,12 +944570,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7882ec" }, { @@ -892481,6 +944604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892496,12 +944621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "94058f" }, { @@ -892529,6 +944655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892544,12 +944672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "459440" }, { @@ -892577,6 +944706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892592,12 +944723,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1c30b" }, { @@ -892625,6 +944757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892640,12 +944774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb13cc" }, { @@ -892673,6 +944808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892688,12 +944825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e7a06" }, { @@ -892721,6 +944859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892736,12 +944876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8dcc4" }, { @@ -892769,6 +944910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892784,12 +944927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89c006" }, { @@ -892817,6 +944961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892832,12 +944978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b775f" }, { @@ -892865,6 +945012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892880,12 +945029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58aede" }, { @@ -892913,6 +945063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892928,12 +945080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1a8ff" }, { @@ -892961,6 +945114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -892976,12 +945131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b38d77" }, { @@ -893009,6 +945165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893024,12 +945182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c90840" }, { @@ -893057,6 +945216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893072,12 +945233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70fae7" }, { @@ -893105,6 +945267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893120,12 +945284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "274daa" }, { @@ -893153,6 +945318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893168,12 +945335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b66fd5" }, { @@ -893201,6 +945369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893216,12 +945386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f34090" }, { @@ -893249,6 +945420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893264,12 +945437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd130e" }, { @@ -893297,6 +945471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893312,12 +945488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b76c9" }, { @@ -893345,6 +945522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893360,12 +945539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" }, { @@ -893393,6 +945573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893408,12 +945590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e103" }, { @@ -893441,6 +945624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893456,12 +945641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88d3c0" }, { @@ -893489,6 +945675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893504,12 +945692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f474b1" }, { @@ -893537,6 +945726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893552,12 +945743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "593deb" }, { @@ -893585,6 +945777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893600,12 +945794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "078efb" }, { @@ -893633,6 +945828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893648,12 +945845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e1b" }, { @@ -893681,6 +945879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893696,12 +945896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1cf06" } ], @@ -893748,6 +945949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -893764,9 +945967,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435797" }, { @@ -893794,6 +945997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893812,9 +946017,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -893841,6 +946046,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893856,12 +946063,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a33470" }, { @@ -893889,6 +946097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893904,12 +946114,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8705c" }, { @@ -893937,6 +946148,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -893985,7 +946198,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2304": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -893993,7 +946207,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2303": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/", @@ -894001,7 +946216,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2313": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -894009,7 +946225,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2314": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -894017,12 +946234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -894049,6 +946267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894064,12 +946284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0308c7" }, { @@ -894097,6 +946318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894112,12 +946335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe63de" }, { @@ -894145,6 +946369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894160,12 +946386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24d5dd" }, { @@ -894193,6 +946420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894208,12 +946437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5ccaa" }, { @@ -894241,6 +946471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894256,12 +946488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fd2ba" }, { @@ -894289,6 +946522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894304,12 +946539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f69584" }, { @@ -894337,6 +946573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894352,12 +946590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c9687" }, { @@ -894385,6 +946624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894400,12 +946641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3704e1" }, { @@ -894433,6 +946675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894448,12 +946692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67718b" }, { @@ -894481,6 +946726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894496,12 +946743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0440de" }, { @@ -894529,6 +946777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894544,12 +946794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03615c" }, { @@ -894577,6 +946828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894592,12 +946845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb9dda" }, { @@ -894625,6 +946879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894640,12 +946896,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cae2ed" }, { @@ -894673,6 +946930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894688,12 +946947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6f0b3" }, { @@ -894721,6 +946981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894736,12 +946998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c6faf" }, { @@ -894769,6 +947032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894784,12 +947049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74ae74" }, { @@ -894817,6 +947083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894832,12 +947100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "182432" }, { @@ -894865,6 +947134,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894880,12 +947151,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae5410" }, { @@ -894913,6 +947185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894928,12 +947202,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b012e" }, { @@ -894961,6 +947236,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -894976,12 +947253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbd8ac" }, { @@ -895009,6 +947287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895024,12 +947304,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e25a72" }, { @@ -895057,6 +947338,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895072,12 +947355,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b434b" }, { @@ -895105,6 +947389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895120,12 +947406,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34216f" }, { @@ -895153,6 +947440,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895168,12 +947457,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "329acb" }, { @@ -895201,6 +947491,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895216,12 +947508,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bac512" }, { @@ -895249,6 +947542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895264,12 +947559,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "214ae5" }, { @@ -895297,6 +947593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895312,12 +947610,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "95a604" }, { @@ -895345,6 +947644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895360,12 +947661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31e35f" }, { @@ -895393,6 +947695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895408,12 +947712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2068c3" }, { @@ -895441,6 +947746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895456,12 +947763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "696412" }, { @@ -895489,6 +947797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895504,12 +947814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b4073" }, { @@ -895537,6 +947848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895552,12 +947865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7385e" } ], @@ -895604,6 +947918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895619,12 +947935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "462941" }, { @@ -895652,6 +947969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -895668,9 +947987,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fe415" }, { @@ -895698,6 +948017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895716,9 +948037,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -895745,6 +948066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895760,12 +948083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bcf406" }, { @@ -895793,6 +948117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895808,12 +948134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b80459" }, { @@ -895841,6 +948168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895856,12 +948185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8c873" }, { @@ -895889,6 +948219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -895938,7 +948270,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2099": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -895946,7 +948279,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2097": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -895954,7 +948288,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2304": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -895962,7 +948297,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -895970,7 +948306,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2310": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -895978,7 +948315,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2309": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -895986,7 +948324,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949588657199729998/FCB94FEED272E2799EF9E25423EC1802C939D59A/", @@ -895994,12 +948333,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -896026,6 +948366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896041,12 +948383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0308c7" }, { @@ -896074,6 +948417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896089,12 +948434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe63de" }, { @@ -896122,6 +948468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896137,12 +948485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24d5dd" }, { @@ -896170,6 +948519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896185,12 +948536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5ccaa" }, { @@ -896218,6 +948570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896233,12 +948587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fd2ba" }, { @@ -896266,6 +948621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896281,12 +948638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f69584" }, { @@ -896314,6 +948672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896329,12 +948689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b79a41" }, { @@ -896362,6 +948723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896377,12 +948740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25e320" }, { @@ -896410,6 +948774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896425,12 +948791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5eca9d" }, { @@ -896458,6 +948825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896473,12 +948842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "553a70" }, { @@ -896506,6 +948876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896521,12 +948893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d6acb" }, { @@ -896554,6 +948927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896569,12 +948944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a57f6f" }, { @@ -896602,6 +948978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896617,12 +948995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cbc17" }, { @@ -896650,6 +949029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896665,12 +949046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d483a2" }, { @@ -896698,6 +949080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896713,12 +949097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "751cbf" }, { @@ -896746,6 +949131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896761,12 +949148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c63d6c" }, { @@ -896794,6 +949182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896809,12 +949199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dff4c" }, { @@ -896842,6 +949233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896857,12 +949250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "556905" }, { @@ -896890,6 +949284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896905,12 +949301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "917429" }, { @@ -896938,6 +949335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -896953,12 +949352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f4f7c" }, { @@ -896986,6 +949386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897001,12 +949403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dacffa" }, { @@ -897034,6 +949437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897049,12 +949454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "641644" }, { @@ -897082,6 +949488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897097,12 +949505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fc063" }, { @@ -897130,6 +949539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897145,12 +949556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0af786" }, { @@ -897178,6 +949590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897193,12 +949607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f319b9" }, { @@ -897226,6 +949641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897241,12 +949658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3a768" }, { @@ -897274,6 +949692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897289,12 +949709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "845b6d" }, { @@ -897322,6 +949743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897337,12 +949760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aefb46" }, { @@ -897370,6 +949794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897385,12 +949811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f77c91" }, { @@ -897418,6 +949845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897433,12 +949862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49aa75" }, { @@ -897466,6 +949896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897481,12 +949913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "397184" }, { @@ -897514,6 +949947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897529,12 +949964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "60d5ca" }, { @@ -897562,6 +949998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897577,12 +950015,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e38bb6" } ], @@ -897629,6 +950068,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897644,12 +950085,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c5d3e" }, { @@ -897677,6 +950119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -897693,9 +950137,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "681694" }, { @@ -897723,6 +950167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -897739,9 +950185,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69a43c" }, { @@ -897769,6 +950215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897784,12 +950232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74d0ca" }, { @@ -897817,6 +950266,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -897832,12 +950283,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "754ca1" }, { @@ -897865,6 +950317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -897881,9 +950335,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b85f6" }, { @@ -897911,6 +950365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -897927,9 +950383,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9248cf" }, { @@ -897957,6 +950413,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -897973,9 +950431,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98d426" }, { @@ -898003,6 +950461,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898018,12 +950478,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac8f67" }, { @@ -898051,6 +950512,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898066,12 +950529,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4a171" }, { @@ -898099,6 +950563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -898115,9 +950581,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b967c9" }, { @@ -898145,6 +950611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898163,9 +950631,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -898192,6 +950660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898207,12 +950677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1890d0" }, { @@ -898240,6 +950711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898259,12 +950732,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -898291,6 +950765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898306,12 +950782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "170538" }, { @@ -898339,6 +950816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898354,12 +950833,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfd48b" }, { @@ -898387,6 +950867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898402,12 +950884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "170538" } ], @@ -898438,6 +950921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898488,7 +950973,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2099": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -898496,7 +950982,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2100": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -898504,7 +950991,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2098": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -898512,7 +951000,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2096": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -898520,7 +951009,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2307": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -898528,7 +951018,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2308": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -898536,12 +951027,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -898568,6 +951060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898583,12 +951077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "908897" }, { @@ -898616,6 +951111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898631,12 +951128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a82870" }, { @@ -898664,6 +951162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898679,12 +951179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c59a81" }, { @@ -898712,6 +951213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898727,12 +951230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f8646" }, { @@ -898760,6 +951264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898775,12 +951281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ec0fba" }, { @@ -898808,6 +951315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898823,12 +951332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6cc0d7" }, { @@ -898856,6 +951366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898871,12 +951383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "810fa7" }, { @@ -898904,6 +951417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898919,12 +951434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d88fb" }, { @@ -898952,6 +951468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -898967,12 +951485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3baf1" }, { @@ -899000,6 +951519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899015,12 +951536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8fed" }, { @@ -899048,6 +951570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899063,12 +951587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2647d" }, { @@ -899096,6 +951621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899111,12 +951638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "275c37" }, { @@ -899144,6 +951672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899159,12 +951689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "018865" }, { @@ -899192,6 +951723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899207,12 +951740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b10af" }, { @@ -899240,6 +951774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899255,12 +951791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31ff63" }, { @@ -899288,6 +951825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899303,12 +951842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "073a4a" }, { @@ -899336,6 +951876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899351,12 +951893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "904381" }, { @@ -899384,6 +951927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899399,12 +951944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "192806" }, { @@ -899432,6 +951978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899447,12 +951995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d66f5b" }, { @@ -899480,6 +952029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899495,12 +952046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e787ed" }, { @@ -899528,6 +952080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899543,12 +952097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "696410" }, { @@ -899576,6 +952131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899591,12 +952148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae075b" }, { @@ -899624,6 +952182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899639,12 +952199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "226555" }, { @@ -899672,6 +952233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899687,12 +952250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf799e" }, { @@ -899720,6 +952284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899735,12 +952301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0308c7" }, { @@ -899768,6 +952335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899783,12 +952352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe63de" }, { @@ -899816,6 +952386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899831,12 +952403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24d5dd" }, { @@ -899864,6 +952437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899879,12 +952454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5ccaa" }, { @@ -899912,6 +952488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899927,12 +952505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fd2ba" }, { @@ -899960,6 +952539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -899975,12 +952556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f69584" }, { @@ -900008,6 +952590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900023,12 +952607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f044d6" }, { @@ -900056,6 +952641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900071,12 +952658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "170538" }, { @@ -900104,6 +952692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900119,12 +952709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfd48b" }, { @@ -900152,6 +952743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900167,12 +952760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "170538" } ], @@ -900219,6 +952813,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900234,12 +952830,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc93c3" }, { @@ -900267,6 +952864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900282,12 +952881,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd9bda" }, { @@ -900315,6 +952915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900333,9 +952935,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -900362,6 +952964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900380,12 +952984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -900412,6 +953017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900427,12 +953034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "274daa" }, { @@ -900460,6 +953068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900475,12 +953085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "367aac" } ], @@ -900511,6 +953122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900529,12 +953142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -900561,6 +953175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900576,12 +953192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9aee7f" }, { @@ -900609,6 +953226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900624,12 +953243,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ef062" } ], @@ -900660,6 +953280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900715,7 +953337,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -900723,7 +953346,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2304": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -900731,7 +953355,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2097": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -900739,7 +953364,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2315": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -900747,7 +953373,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2316": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -900755,12 +953382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -900787,6 +953415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900802,12 +953432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0308c7" }, { @@ -900835,6 +953466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900850,12 +953483,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe63de" }, { @@ -900883,6 +953517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900898,12 +953534,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24d5dd" }, { @@ -900931,6 +953568,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900946,12 +953585,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5ccaa" }, { @@ -900979,6 +953619,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -900994,12 +953636,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fd2ba" }, { @@ -901027,6 +953670,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901042,12 +953687,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f69584" }, { @@ -901075,6 +953721,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901090,12 +953738,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a44e67" }, { @@ -901123,6 +953772,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901138,12 +953789,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b46f4" }, { @@ -901171,6 +953823,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901186,12 +953840,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb76ff" }, { @@ -901219,6 +953874,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901234,12 +953891,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa7df0" }, { @@ -901267,6 +953925,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901282,12 +953942,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9713b1" }, { @@ -901315,6 +953976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901330,12 +953993,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "52b4dd" }, { @@ -901363,6 +954027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901378,12 +954044,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8f3a1" }, { @@ -901411,6 +954078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901426,12 +954095,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8f3a1" }, { @@ -901459,6 +954129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901474,12 +954146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "177e41" }, { @@ -901507,6 +954180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901522,12 +954197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8f8c0" }, { @@ -901555,6 +954231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901570,12 +954248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f3a49" }, { @@ -901603,6 +954282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901618,12 +954299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e9857" }, { @@ -901651,6 +954333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901666,12 +954350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d46c4" }, { @@ -901699,6 +954384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901714,12 +954401,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3a076" }, { @@ -901747,6 +954435,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901762,12 +954452,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bfd54e" }, { @@ -901795,6 +954486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901810,12 +954503,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00d237" }, { @@ -901843,6 +954537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901858,12 +954554,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "303e6f" }, { @@ -901891,6 +954588,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901906,12 +954605,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f14af" }, { @@ -901939,6 +954639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -901954,12 +954656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19e465" }, { @@ -901987,6 +954690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902002,12 +954707,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a2995" }, { @@ -902035,6 +954741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902050,12 +954758,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b25e3c" }, { @@ -902083,6 +954792,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902098,12 +954809,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7d31" }, { @@ -902131,6 +954843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902146,12 +954860,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "838975" }, { @@ -902179,6 +954894,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902194,12 +954911,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9230ce" }, { @@ -902227,6 +954945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902242,12 +954962,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a2d1e" }, { @@ -902275,6 +954996,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902290,12 +955013,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a049bd" }, { @@ -902323,6 +955047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902338,12 +955064,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e70fa" }, { @@ -902371,6 +955098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902386,12 +955115,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55d5b8" }, { @@ -902419,6 +955149,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902434,12 +955166,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "feffb4" }, { @@ -902467,6 +955200,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902482,12 +955217,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "274daa" }, { @@ -902515,6 +955251,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902530,12 +955268,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "367aac" }, { @@ -902563,6 +955302,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902578,12 +955319,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9aee7f" }, { @@ -902611,6 +955353,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902626,12 +955370,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9ef062" } ], @@ -902662,6 +955407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902680,9 +955427,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc4d49", "States": { "3": { @@ -902710,6 +955457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902728,9 +955477,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a18b8" }, "4": { @@ -902758,6 +955507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902776,9 +955527,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4685e0" }, "5": { @@ -902806,6 +955557,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902824,9 +955577,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f88498" }, "6": { @@ -902854,6 +955607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902872,9 +955627,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4437f7" }, "2": { @@ -902902,6 +955657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -902920,9 +955677,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f4cc2" } } @@ -902968,6 +955725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -902984,9 +955743,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd74de" }, { @@ -903014,6 +955773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -903030,9 +955791,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd6f2b" }, { @@ -903060,6 +955821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -903076,9 +955839,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df03fb" }, { @@ -903106,6 +955869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -903122,9 +955887,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2df57" }, { @@ -903152,6 +955917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -903168,9 +955935,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb9c85" }, { @@ -903198,6 +955965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -903214,9 +955983,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eed875" } ], @@ -903228,9 +955997,9 @@ "posX": -9.742978, "posY": 1.30202949, "posZ": -69.2888641, - "rotX": 0.0208122246, + "rotX": 0.0208122134, "rotY": 269.99353, - "rotZ": 0.0167679954, + "rotZ": 0.0167680141, "scaleX": 0.5, "scaleY": 0.139652729, "scaleZ": 0.5 @@ -903247,6 +956016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -903275,9 +956046,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor +12\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=800, width=800,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,3,-7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n-- position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100,\r\n-- font_size=400, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={2.4,3,7}, rotation={0,0,0}, height=850, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0745af\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3615,\"z\":-62.4609},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"0cce7f\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3714,\"z\":-61.2414},\"rot\":{\"x\":0.0168,\"y\":180.0103,\"z\":359.9792}},\"1842b6\":{\"lock\":false,\"pos\":{\"x\":-26.3,\"y\":1.2757,\"z\":-53.4369},\"rot\":{\"x\":359.9792,\"y\":90,\"z\":359.9832}},\"1f8fcf\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3596,\"z\":-69.0603},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"24660b\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3642,\"z\":-53.3904},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"3c3607\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3619,\"z\":-61.231},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"4722e6\":{\"lock\":false,\"pos\":{\"x\":-26.3001,\"y\":1.2734,\"z\":-61.241},\"rot\":{\"x\":359.9792,\"y\":89.9815,\"z\":359.9832}},\"480119\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3657,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":269.9681,\"z\":0.0168}},\"5c7b14\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2711,\"z\":-69.0606},\"rot\":{\"x\":359.9792,\"y\":90.01,\"z\":359.9832}},\"663b02\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3703,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":270.0186,\"z\":0.0168}},\"698808\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.2665,\"z\":-84.818},\"rot\":{\"x\":359.9792,\"y\":90,\"z\":359.9832}},\"6c2d02\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3737,\"z\":-53.4381},\"rot\":{\"x\":0.0168,\"y\":180.0103,\"z\":359.9792}},\"7069c2\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3569,\"z\":-78.1756},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"757716\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.36,\"z\":-67.8206},\"rot\":{\"x\":0.0208,\"y\":270.0006,\"z\":0.0168}},\"7ae4a4\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3622,\"z\":-60.001},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"7d0121\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3576,\"z\":-75.7054},\"rot\":{\"x\":0.0208,\"y\":269.9821,\"z\":0.0168}},\"8d356b\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3691,\"z\":-69.0756},\"rot\":{\"x\":0.0168,\"y\":180.0007,\"z\":359.9792}},\"90165e\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3638,\"z\":-54.6207},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"9c5af7\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2688,\"z\":-76.9456},\"rot\":{\"x\":359.9792,\"y\":90,\"z\":359.9832}},\"a52a3a\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3573,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":270.0006,\"z\":0.0168}},\"b6b36e\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3592,\"z\":-70.2906},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"bab94a\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3645,\"z\":-84.8185},\"rot\":{\"x\":0.0168,\"y\":180.0103,\"z\":359.9792}},\"be44cf\":{\"lock\":false,\"pos\":{\"x\":-16.6394,\"y\":1.3546,\"z\":-86.0186},\"rot\":{\"x\":0.0208,\"y\":270.0175,\"z\":0.0168}},\"c1bb90\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.355,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"cf0fa6\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3645,\"z\":-52.152},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"d742cb\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3726,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":270.0181,\"z\":0.0168}},\"dd4921\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3668,\"z\":-76.946},\"rot\":{\"x\":0.0168,\"y\":180.0103,\"z\":359.9792}},\"e0aba2\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.368,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"e4c465\":{\"lock\":false,\"pos\":{\"x\":-16.6386,\"y\":1.3554,\"z\":-83.5415},\"rot\":{\"x\":0.0209,\"y\":269.8152,\"z\":0.0167}},\"ef40fe\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3749,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":269.9813,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model", @@ -903304,6 +956075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -903320,9 +956093,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0745af" }, { @@ -903350,6 +956123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -903365,12 +956140,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cce7f" }, { @@ -903398,6 +956174,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -903416,9 +956194,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -903445,6 +956223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -903460,12 +956240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "275dc3" }, { @@ -903493,6 +956274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -903508,12 +956291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f91fd9" }, { @@ -903541,6 +956325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -903589,7 +956375,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2100": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -903597,7 +956384,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2099": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -903605,7 +956393,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2098": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -903613,7 +956402,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -903621,7 +956411,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2324": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -903629,7 +956420,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2325": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -903637,12 +956429,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -903669,6 +956462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -903684,12 +956479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70f1a6" }, { @@ -903717,6 +956513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -903732,12 +956530,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2abef3" }, { @@ -903765,6 +956564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -903780,12 +956581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "967c37" }, { @@ -903813,6 +956615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -903828,12 +956632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d43eb3" }, { @@ -903861,6 +956666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -903876,12 +956683,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d64ce3" }, { @@ -903909,6 +956717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -903924,12 +956734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed5ab4" }, { @@ -903957,6 +956768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -903972,12 +956785,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "480c3e" }, { @@ -904005,6 +956819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904020,12 +956836,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b47d27" }, { @@ -904053,6 +956870,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904068,12 +956887,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47789e" }, { @@ -904101,6 +956921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904116,12 +956938,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c642d" }, { @@ -904149,6 +956972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904164,12 +956989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7aadd0" }, { @@ -904197,6 +957023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904212,12 +957040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ab534" }, { @@ -904245,6 +957074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904260,12 +957091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a493d9" }, { @@ -904293,6 +957125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904308,12 +957142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63e2b2" }, { @@ -904341,6 +957176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904356,12 +957193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e79e1f" }, { @@ -904389,6 +957227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904404,12 +957244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f1b9b" }, { @@ -904437,6 +957278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904452,12 +957295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "caaf18" }, { @@ -904485,6 +957329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904500,12 +957346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "079506" }, { @@ -904533,6 +957380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904548,12 +957397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9300ae" }, { @@ -904581,6 +957431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904596,12 +957448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82cb76" }, { @@ -904629,6 +957482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904644,12 +957499,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "820bb6" }, { @@ -904677,6 +957533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904692,12 +957550,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff837e" }, { @@ -904725,6 +957584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904740,12 +957601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3499f4" }, { @@ -904773,6 +957635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904788,12 +957652,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ff763" }, { @@ -904821,6 +957686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904836,12 +957703,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdeda1" }, { @@ -904869,6 +957737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904884,12 +957754,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d27b8" }, { @@ -904917,6 +957788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904932,12 +957805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "674d68" }, { @@ -904965,6 +957839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -904980,12 +957856,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cd7d0" }, { @@ -905013,6 +957890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905028,12 +957907,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cd794" }, { @@ -905061,6 +957941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905076,12 +957958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7671d6" }, { @@ -905109,6 +957992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905124,12 +958009,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b90a0" }, { @@ -905157,6 +958043,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905172,12 +958060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "766a47" } ], @@ -905224,6 +958113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -905240,9 +958131,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f8fcf" }, { @@ -905270,6 +958161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -905286,9 +958179,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24660b" }, { @@ -905316,6 +958209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -905332,9 +958227,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c3607" }, { @@ -905362,6 +958257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905380,9 +958277,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -905409,6 +958306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905424,12 +958323,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c958e" }, { @@ -905457,6 +958357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905472,12 +958374,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86feae" }, { @@ -905505,6 +958408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905553,7 +958458,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2304": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -905561,7 +958467,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2303": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/", @@ -905569,7 +958476,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2326": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -905577,7 +958485,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2327": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -905585,12 +958494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -905617,6 +958527,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905632,12 +958544,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d34367" }, { @@ -905665,6 +958578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905680,12 +958595,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "067dfd" }, { @@ -905713,6 +958629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905728,12 +958646,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c5210" }, { @@ -905761,6 +958680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905776,12 +958697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "936302" }, { @@ -905809,6 +958731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905824,12 +958748,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b51cd2" }, { @@ -905857,6 +958782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905872,12 +958799,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "454e69" }, { @@ -905905,6 +958833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905920,12 +958850,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96e00f" }, { @@ -905953,6 +958884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -905968,12 +958901,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20c374" }, { @@ -906001,6 +958935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906016,12 +958952,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9b923" }, { @@ -906049,6 +958986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906064,12 +959003,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5bf2dd" }, { @@ -906097,6 +959037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906112,12 +959054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b7646" }, { @@ -906145,6 +959088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906160,12 +959105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82b3fa" }, { @@ -906193,6 +959139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906208,12 +959156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c1a5f" }, { @@ -906241,6 +959190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906256,12 +959207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da3a0f" }, { @@ -906289,6 +959241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906304,12 +959258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbfba3" }, { @@ -906337,6 +959292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906352,12 +959309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1b81a" }, { @@ -906385,6 +959343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906400,12 +959360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdb546" }, { @@ -906433,6 +959394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906448,12 +959411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e7501" }, { @@ -906481,6 +959445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906496,12 +959462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "640ad0" }, { @@ -906529,6 +959496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906544,12 +959513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75de07" }, { @@ -906577,6 +959547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906592,12 +959564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bedd5e" }, { @@ -906625,6 +959598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906640,12 +959615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be4a27" }, { @@ -906673,6 +959649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906688,12 +959666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5dc9b" }, { @@ -906721,6 +959700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906736,12 +959717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7dab49" }, { @@ -906769,6 +959751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906784,12 +959768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "115fc5" }, { @@ -906817,6 +959802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906832,12 +959819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12e3b6" }, { @@ -906865,6 +959853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906880,12 +959870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "247c02" }, { @@ -906913,6 +959904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906928,12 +959921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f55033" }, { @@ -906961,6 +959955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -906976,12 +959972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1af276" }, { @@ -907009,6 +960006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907024,12 +960023,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2fda9" }, { @@ -907057,6 +960057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907072,12 +960074,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8dc23a" }, { @@ -907105,6 +960108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907120,12 +960125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf8ec1" } ], @@ -907172,6 +960178,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907187,12 +960195,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "480119" }, { @@ -907220,6 +960229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907238,9 +960249,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -907267,6 +960278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907282,12 +960295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0dbf2d" }, { @@ -907315,6 +960329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907330,12 +960346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ecd087" }, { @@ -907363,6 +960380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907378,12 +960397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "848d9c" }, { @@ -907411,6 +960431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907460,7 +960482,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2100": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -907468,7 +960491,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2839": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -907476,7 +960500,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2099": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -907484,7 +960509,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2097": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -907492,7 +960518,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2323": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -907500,7 +960527,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2321": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -907508,7 +960536,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2322": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -907516,12 +960545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -907548,6 +960578,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907563,12 +960595,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0308c7" }, { @@ -907596,6 +960629,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907611,12 +960646,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe63de" }, { @@ -907644,6 +960680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907659,12 +960697,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24d5dd" }, { @@ -907692,6 +960731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907707,12 +960748,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5ccaa" }, { @@ -907740,6 +960782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907755,12 +960799,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fd2ba" }, { @@ -907788,6 +960833,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907803,12 +960850,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f69584" }, { @@ -907836,6 +960884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907851,12 +960901,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b36eab" }, { @@ -907884,6 +960935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907899,12 +960952,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9ae1b" }, { @@ -907932,6 +960986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907947,12 +961003,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5363cd" }, { @@ -907980,6 +961037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -907995,12 +961054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73a3dc" }, { @@ -908028,6 +961088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908043,12 +961105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46be05" }, { @@ -908076,6 +961139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908091,12 +961156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33527c" }, { @@ -908124,6 +961190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908139,12 +961207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5930a" }, { @@ -908172,6 +961241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908187,12 +961258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5eabc0" }, { @@ -908220,6 +961292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908235,12 +961309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79c228" }, { @@ -908268,6 +961343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908283,12 +961360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f38c64" }, { @@ -908316,6 +961394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908331,12 +961411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "985c85" }, { @@ -908364,6 +961445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908379,12 +961462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e4f96" }, { @@ -908412,6 +961496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908427,12 +961513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7ffe7" }, { @@ -908460,6 +961547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908475,12 +961564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d914fd" }, { @@ -908508,6 +961598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908523,12 +961615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca9976" }, { @@ -908556,6 +961649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908571,12 +961666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ac757" }, { @@ -908604,6 +961700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908619,12 +961717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "117e5d" }, { @@ -908652,6 +961751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908667,12 +961768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87cea2" }, { @@ -908700,6 +961802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908715,12 +961819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cfd90" }, { @@ -908748,6 +961853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908763,12 +961870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02b0c3" }, { @@ -908796,6 +961904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908811,12 +961921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c38e6" }, { @@ -908844,6 +961955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908859,12 +961972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e51c4d" }, { @@ -908892,6 +962006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908907,12 +962023,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a43d5" }, { @@ -908940,6 +962057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -908955,12 +962074,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e03343" }, { @@ -908988,6 +962108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909003,12 +962125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2de78d" }, { @@ -909036,6 +962159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909051,12 +962176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df76fb" }, { @@ -909084,6 +962210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909099,12 +962227,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f9b4fc" } ], @@ -909151,6 +962280,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909166,12 +962297,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "663b02" }, { @@ -909199,6 +962331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909217,9 +962351,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -909246,6 +962380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909261,12 +962397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41a9ec" }, { @@ -909294,6 +962431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909309,12 +962448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f93ea8" }, { @@ -909342,6 +962482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909390,7 +962532,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", @@ -909398,7 +962541,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3765": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -909406,7 +962550,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3766": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/", @@ -909414,7 +962559,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3767": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -909422,12 +962568,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -909454,6 +962601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909469,12 +962618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -909502,6 +962652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909517,12 +962669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fe462" }, { @@ -909550,6 +962703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909565,12 +962720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8ea95" }, { @@ -909598,6 +962754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909613,12 +962771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "078efb" }, { @@ -909646,6 +962805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909661,12 +962822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -909694,6 +962856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909709,12 +962873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fe462" }, { @@ -909742,6 +962907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909757,12 +962924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88d3c0" }, { @@ -909790,6 +962958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909805,12 +962975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -909838,6 +963009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909853,12 +963026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "679b13" }, { @@ -909886,6 +963060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909901,12 +963077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "593deb" }, { @@ -909934,6 +963111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909949,12 +963128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f474b1" }, { @@ -909982,6 +963162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -909997,12 +963179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f34090" }, { @@ -910030,6 +963213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910045,12 +963230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f93ea8" }, { @@ -910078,6 +963264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910093,12 +963281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f7289" }, { @@ -910126,6 +963315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910141,12 +963332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ac19" }, { @@ -910174,6 +963366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910189,12 +963383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -910222,6 +963417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910237,12 +963434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b76c9" }, { @@ -910270,6 +963468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910285,12 +963485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab9f4" }, { @@ -910318,6 +963519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910333,12 +963536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30f90b" }, { @@ -910366,6 +963570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910381,12 +963587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -910414,6 +963621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910429,12 +963638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e1b" }, { @@ -910462,6 +963672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910477,12 +963689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" }, { @@ -910510,6 +963723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910525,12 +963740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -910558,6 +963774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910573,12 +963791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e103" }, { @@ -910606,6 +963825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910621,12 +963842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0e425" }, { @@ -910654,6 +963876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910669,12 +963893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0e425" }, { @@ -910702,6 +963927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910717,12 +963944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6656ad" }, { @@ -910750,6 +963978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910765,12 +963995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41a9ec" }, { @@ -910798,6 +964029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910813,12 +964046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -910846,6 +964080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910861,12 +964097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f59085" }, { @@ -910894,6 +964131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910909,12 +964148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30f90b" }, { @@ -910942,6 +964182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -910957,12 +964199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" } ], @@ -911009,6 +964252,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911024,12 +964269,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c2d02" }, { @@ -911057,6 +964303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -911073,9 +964321,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7069c2" }, { @@ -911103,6 +964351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -911119,9 +964369,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "757716" }, { @@ -911149,6 +964399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -911165,9 +964417,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ae4a4" }, { @@ -911195,6 +964447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -911211,9 +964465,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d0121" }, { @@ -911241,6 +964495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911256,12 +964512,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d356b" }, { @@ -911289,6 +964546,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -911305,9 +964564,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90165e" }, { @@ -911335,6 +964594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911353,9 +964614,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -911382,6 +964643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911397,12 +964660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14c396" }, { @@ -911430,6 +964694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911445,12 +964711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e4a82" }, { @@ -911478,6 +964745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911526,7 +964795,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2303": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/", @@ -911534,7 +964804,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2329": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -911542,7 +964813,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2328": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -911550,12 +964822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -911582,6 +964855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911597,12 +964872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c68eb" }, { @@ -911630,6 +964906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911645,12 +964923,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8139d9" }, { @@ -911678,6 +964957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911693,12 +964974,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "371494" }, { @@ -911726,6 +965008,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911741,12 +965025,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "096032" }, { @@ -911774,6 +965059,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911789,12 +965076,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d28b77" }, { @@ -911822,6 +965110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911837,12 +965127,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e42071" }, { @@ -911870,6 +965161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911885,12 +965178,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ca08b" }, { @@ -911918,6 +965212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911933,12 +965229,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ac19" }, { @@ -911966,6 +965263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -911981,12 +965280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c214e5" }, { @@ -912014,6 +965314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912029,12 +965331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48fe71" }, { @@ -912062,6 +965365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912077,12 +965382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08656f" }, { @@ -912110,6 +965416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912125,12 +965433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e3452" }, { @@ -912158,6 +965467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912173,12 +965484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b70bab" }, { @@ -912206,6 +965518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912221,12 +965535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4ea21" }, { @@ -912254,6 +965569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912269,12 +965586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1418e2" }, { @@ -912302,6 +965620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912317,12 +965637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7201b5" }, { @@ -912350,6 +965671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912365,12 +965688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff55ca" }, { @@ -912398,6 +965722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912413,12 +965739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c37f94" }, { @@ -912446,6 +965773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912461,12 +965790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e4505" }, { @@ -912494,6 +965824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912509,12 +965841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7307c4" }, { @@ -912542,6 +965875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912557,12 +965892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27dab4" }, { @@ -912590,6 +965926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912605,12 +965943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa1d67" }, { @@ -912638,6 +965977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912653,12 +965994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a927c" }, { @@ -912686,6 +966028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912701,12 +966045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0308c7" }, { @@ -912734,6 +966079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912749,12 +966096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe63de" }, { @@ -912782,6 +966130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912797,12 +966147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24d5dd" }, { @@ -912830,6 +966181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912845,12 +966198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5ccaa" }, { @@ -912878,6 +966232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912893,12 +966249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f69584" }, { @@ -912926,6 +966283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912941,12 +966300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "599209" }, { @@ -912974,6 +966334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -912989,12 +966351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07bc04" }, { @@ -913022,6 +966385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -913037,12 +966402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e4a82" }, { @@ -913070,6 +966436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -913085,12 +966453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd909f" } ], @@ -913137,6 +966506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -913153,9 +966524,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a52a3a" }, { @@ -913183,6 +966554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -913199,9 +966572,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6b36e" }, { @@ -913229,6 +966602,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -913244,12 +966619,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bab94a" }, { @@ -913277,6 +966653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -913293,9 +966671,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be44cf" }, { @@ -913323,6 +966701,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -913339,9 +966719,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1bb90" }, { @@ -913369,6 +966749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -913385,9 +966767,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf0fa6" }, { @@ -913415,6 +966797,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -913430,12 +966814,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d742cb" }, { @@ -913463,6 +966848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -913478,12 +966865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd4921" }, { @@ -913511,6 +966899,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -913526,12 +966916,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0aba2" }, { @@ -913559,6 +966950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -913575,9 +966968,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4c465" }, { @@ -913605,6 +966998,8 @@ "Grid": false, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -913620,12 +967015,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef40fe" } ], @@ -913637,9 +967033,9 @@ "posX": -9.742723, "posY": 1.30004907, "posZ": -76.0554, - "rotX": 0.0208107959, + "rotX": 0.0208108667, "rotY": 269.9984, - "rotZ": 0.01676985, + "rotZ": 0.0167699046, "scaleX": 0.5, "scaleY": 0.139652729, "scaleZ": 0.5 @@ -913656,6 +967052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -913684,9 +967082,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor +12\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=800, width=800,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,3,-7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n-- position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100,\r\n-- font_size=400, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={2.4,3,7}, rotation={0,0,0}, height=850, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"06b093\":{\"lock\":false,\"pos\":{\"x\":-16.6386,\"y\":1.3564,\"z\":-80.069},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"07c091\":{\"lock\":false,\"pos\":{\"x\":-22.6158,\"y\":1.3724,\"z\":-57.7623},\"rot\":{\"x\":0.0168,\"y\":179.9901,\"z\":359.9792}},\"0987f6\":{\"lock\":false,\"pos\":{\"x\":-22.6158,\"y\":1.3655,\"z\":-81.3393},\"rot\":{\"x\":0.0168,\"y\":179.9858,\"z\":359.9792}},\"12aab7\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.361,\"z\":-64.3414},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"290c75\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3633,\"z\":-56.5219},\"rot\":{\"x\":0.0208,\"y\":270.0144,\"z\":0.0168}},\"2c0d63\":{\"lock\":false,\"pos\":{\"x\":-19.2925,\"y\":1.3691,\"z\":-73.4624},\"rot\":{\"x\":0.0208,\"y\":269.9922,\"z\":0.0168}},\"498c92\":{\"lock\":false,\"pos\":{\"x\":-19.2948,\"y\":1.3714,\"z\":-65.5815},\"rot\":{\"x\":0.0208,\"y\":269.9871,\"z\":0.0168}},\"49d0b5\":{\"lock\":false,\"pos\":{\"x\":-19.2985,\"y\":1.3645,\"z\":-89.1737},\"rot\":{\"x\":0.0208,\"y\":269.983,\"z\":0.0168}},\"4fa9f0\":{\"lock\":false,\"pos\":{\"x\":-26.299,\"y\":1.2744,\"z\":-57.7619},\"rot\":{\"x\":359.9792,\"y\":90.0036,\"z\":359.9832}},\"546051\":{\"lock\":false,\"pos\":{\"x\":-19.299,\"y\":1.3736,\"z\":-57.7542},\"rot\":{\"x\":0.0208,\"y\":269.9838,\"z\":0.0168}},\"57ed69\":{\"lock\":false,\"pos\":{\"x\":-16.6389,\"y\":1.3625,\"z\":-58.9818},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"6414c4\":{\"lock\":false,\"pos\":{\"x\":-19.2989,\"y\":1.3828,\"z\":-49.9567},\"rot\":{\"x\":0.0208,\"y\":270.0118,\"z\":0.0168}},\"6cb8b7\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3541,\"z\":-87.9138},\"rot\":{\"x\":0.0208,\"y\":269.985,\"z\":0.0168}},\"7038f1\":{\"lock\":false,\"pos\":{\"x\":-26.2984,\"y\":1.2652,\"z\":-89.1737},\"rot\":{\"x\":359.9792,\"y\":89.9975,\"z\":359.9832}},\"74efa5\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3583,\"z\":-73.4665},\"rot\":{\"x\":0.0208,\"y\":270.0452,\"z\":0.0168}},\"759bf5\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3579,\"z\":-74.6965},\"rot\":{\"x\":0.0208,\"y\":269.9665,\"z\":0.0168}},\"77ae77\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3603,\"z\":-66.8114},\"rot\":{\"x\":0.0208,\"y\":269.9974,\"z\":0.0168}},\"7b381e\":{\"lock\":false,\"pos\":{\"x\":-22.6146,\"y\":1.3678,\"z\":-73.4669},\"rot\":{\"x\":0.0168,\"y\":179.9857,\"z\":359.9792}},\"7e14e1\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3656,\"z\":-48.6729},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"7e8db4\":{\"lock\":false,\"pos\":{\"x\":-26.2985,\"y\":1.2675,\"z\":-81.3388},\"rot\":{\"x\":359.9792,\"y\":89.9837,\"z\":359.9832}},\"800843\":{\"lock\":false,\"pos\":{\"x\":-16.6383,\"y\":1.3537,\"z\":-89.1397},\"rot\":{\"x\":0.0208,\"y\":270.0267,\"z\":0.0168}},\"8551a0\":{\"lock\":false,\"pos\":{\"x\":-16.6391,\"y\":1.356,\"z\":-81.339},\"rot\":{\"x\":0.0208,\"y\":270.0159,\"z\":0.0168}},\"90ffcd\":{\"lock\":false,\"pos\":{\"x\":-26.2991,\"y\":1.2698,\"z\":-73.4665},\"rot\":{\"x\":359.9792,\"y\":89.9841,\"z\":359.9832}},\"97c956\":{\"lock\":false,\"pos\":{\"x\":-26.2989,\"y\":1.2767,\"z\":-49.9578},\"rot\":{\"x\":359.9792,\"y\":90.0023,\"z\":359.9832}},\"98f4b5\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3629,\"z\":-57.7519},\"rot\":{\"x\":0.0208,\"y\":269.9753,\"z\":0.0168}},\"a19874\":{\"lock\":false,\"pos\":{\"x\":-16.6384,\"y\":1.3534,\"z\":-90.3837},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"aa0875\":{\"lock\":false,\"pos\":{\"x\":-22.6128,\"y\":1.3816,\"z\":-49.959},\"rot\":{\"x\":0.0168,\"y\":179.9808,\"z\":359.9792}},\"ab0486\":{\"lock\":false,\"pos\":{\"x\":-16.6392,\"y\":1.3606,\"z\":-65.5811},\"rot\":{\"x\":0.0208,\"y\":269.9982,\"z\":0.0168}},\"b4a195\":{\"lock\":false,\"pos\":{\"x\":-19.2987,\"y\":1.3667,\"z\":-81.339},\"rot\":{\"x\":0.0208,\"y\":270.0094,\"z\":0.0168}},\"b94c04\":{\"lock\":false,\"pos\":{\"x\":-26.2991,\"y\":1.2721,\"z\":-65.5814},\"rot\":{\"x\":359.9792,\"y\":90.0109,\"z\":359.9832}},\"df079f\":{\"lock\":false,\"pos\":{\"x\":-16.6383,\"y\":1.3556,\"z\":-82.5394},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"e2aac1\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3648,\"z\":-51.1416},\"rot\":{\"x\":0.0208,\"y\":270.0373,\"z\":0.0168}},\"e4be8a\":{\"lock\":false,\"pos\":{\"x\":-16.6392,\"y\":1.3587,\"z\":-72.2263},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"e5683e\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3632,\"z\":-89.174},\"rot\":{\"x\":0.0168,\"y\":179.9837,\"z\":359.9792}},\"f4bdf0\":{\"lock\":false,\"pos\":{\"x\":-22.6146,\"y\":1.3701,\"z\":-65.5964},\"rot\":{\"x\":0.0168,\"y\":179.9885,\"z\":359.9792}},\"fb6232\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3652,\"z\":-49.9113},\"rot\":{\"x\":0.0208,\"y\":270.0219,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model", @@ -913713,6 +967111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -913729,9 +967129,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06b093" }, { @@ -913759,6 +967159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -913774,12 +967176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07c091" }, { @@ -913807,6 +967210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -913822,12 +967227,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0987f6" }, { @@ -913855,6 +967261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -913871,9 +967279,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12aab7" }, { @@ -913901,6 +967309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -913917,9 +967327,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "290c75" }, { @@ -913947,6 +967357,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -913962,12 +967374,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c0d63" }, { @@ -913995,6 +967408,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914010,12 +967425,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "498c92" }, { @@ -914043,6 +967459,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914058,12 +967476,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49d0b5" }, { @@ -914091,6 +967510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914109,9 +967530,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -914138,6 +967559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914153,12 +967576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22d886" }, { @@ -914186,6 +967610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914201,12 +967627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4bac6" }, { @@ -914234,6 +967661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914261,7 +967690,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2737": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -914269,7 +967699,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2896": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -914277,7 +967708,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2917": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -914285,7 +967717,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2704": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -914293,12 +967726,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -914325,6 +967759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914340,12 +967776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edb554" }, { @@ -914373,6 +967810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914388,12 +967827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70ad8" }, { @@ -914421,6 +967861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914436,12 +967878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb6165" }, { @@ -914469,6 +967912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914484,12 +967929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13413d" }, { @@ -914517,6 +967963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914532,12 +967980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2db518" }, { @@ -914565,6 +968014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914580,12 +968031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "39456d" }, { @@ -914613,6 +968065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914628,12 +968082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22d886" }, { @@ -914661,6 +968116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914676,12 +968133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cf335" }, { @@ -914709,6 +968167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914724,12 +968184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "609798" }, { @@ -914757,6 +968218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914772,12 +968235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6c093" }, { @@ -914805,6 +968269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914820,12 +968286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "683937" } ], @@ -914856,6 +968323,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914903,7 +968372,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2908": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -914911,7 +968381,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2929": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -914919,7 +968390,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2737": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -914927,7 +968399,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2703": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -914935,7 +968408,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2897": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -914943,7 +968417,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2895": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -914951,12 +968426,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -914983,6 +968459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -914998,12 +968476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1165db" }, { @@ -915031,6 +968510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915046,12 +968527,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "063fd8" }, { @@ -915079,6 +968561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915094,12 +968578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "889121" }, { @@ -915127,6 +968612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915142,12 +968629,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -915175,6 +968663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915190,12 +968680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97986a" }, { @@ -915223,6 +968714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915238,12 +968731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e1d91" }, { @@ -915271,6 +968765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915286,12 +968782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4bac6" }, { @@ -915319,6 +968816,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915334,12 +968833,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9bb2a" }, { @@ -915367,6 +968867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915382,12 +968884,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -915415,6 +968918,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915430,12 +968935,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -915463,6 +968969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915478,12 +968986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0dff3" }, { @@ -915511,6 +969020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915526,12 +969037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -915559,6 +969071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915574,12 +969088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -915607,6 +969122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915622,12 +969139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5cd622" }, { @@ -915655,6 +969173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915670,12 +969190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d4749" }, { @@ -915703,6 +969224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915718,12 +969241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab9f4" }, { @@ -915751,6 +969275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915766,12 +969292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ac19" }, { @@ -915799,6 +969326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915814,12 +969343,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b265c4" }, { @@ -915847,6 +969377,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915862,12 +969394,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e1d91" }, { @@ -915895,6 +969428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915910,12 +969445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5dd39" }, { @@ -915943,6 +969479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -915958,12 +969496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e5cd2" }, { @@ -915991,6 +969530,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916006,12 +969547,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86ee68" }, { @@ -916039,6 +969581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916054,12 +969598,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba16cb" }, { @@ -916087,6 +969632,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916102,12 +969649,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f91ce" }, { @@ -916135,6 +969683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916150,12 +969700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e5cd2" }, { @@ -916183,6 +969734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916198,12 +969751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08bdf1" }, { @@ -916231,6 +969785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916246,12 +969802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9934d2" }, { @@ -916279,6 +969836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916294,12 +969853,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -916327,6 +969887,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916342,12 +969904,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cc0a6" }, { @@ -916375,6 +969938,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916390,12 +969955,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9bb2a" }, { @@ -916423,6 +969989,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916438,12 +970006,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12660b" } ], @@ -916490,6 +970059,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916505,12 +970076,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "546051" }, { @@ -916538,6 +970110,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -916554,9 +970128,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57ed69" }, { @@ -916584,6 +970158,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916602,12 +970178,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -916634,6 +970211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916649,12 +970228,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b57bab" }, { @@ -916682,6 +970262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916697,12 +970279,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30614e" } ], @@ -916733,6 +970316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -916749,9 +970334,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6cb8b7" }, { @@ -916779,6 +970364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916797,9 +970384,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -916826,6 +970413,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916841,12 +970430,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785f68" }, { @@ -916874,6 +970464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916889,12 +970481,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8a324" }, { @@ -916922,6 +970515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -916970,7 +970565,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2746": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -916978,7 +970574,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", @@ -916986,7 +970583,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3788": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -916994,7 +970592,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3787": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -917002,12 +970601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -917034,6 +970634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917049,12 +970651,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -917082,6 +970685,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917097,12 +970702,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "051742" }, { @@ -917130,6 +970736,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917145,12 +970753,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" }, { @@ -917178,6 +970787,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917193,12 +970804,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -917226,6 +970838,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917241,12 +970855,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "593deb" }, { @@ -917274,6 +970889,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917289,12 +970906,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f7289" }, { @@ -917322,6 +970940,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917337,12 +970957,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -917370,6 +970991,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917385,12 +971008,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "679b13" }, { @@ -917418,6 +971042,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917433,12 +971059,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8ea95" }, { @@ -917466,6 +971093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917481,12 +971110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785f68" }, { @@ -917514,6 +971144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917529,12 +971161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -917562,6 +971195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917577,12 +971212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "078efb" }, { @@ -917610,6 +971246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917625,12 +971263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fa7fa" }, { @@ -917658,6 +971297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917673,12 +971314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fa7fa" }, { @@ -917706,6 +971348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917721,12 +971365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f34090" }, { @@ -917754,6 +971399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917769,12 +971416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -917802,6 +971450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917817,12 +971467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -917850,6 +971501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917865,12 +971518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8a324" }, { @@ -917898,6 +971552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917913,12 +971569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f474b1" }, { @@ -917946,6 +971603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -917961,12 +971620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -917994,6 +971654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918009,12 +971671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bea17" }, { @@ -918042,6 +971705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918057,12 +971722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b76c9" }, { @@ -918090,6 +971756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918105,12 +971773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88d3c0" }, { @@ -918138,6 +971807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918153,12 +971824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab9f4" }, { @@ -918186,6 +971858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918201,12 +971875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -918234,6 +971909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918249,12 +971926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ac19" }, { @@ -918282,6 +971960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918297,12 +971977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "051742" }, { @@ -918330,6 +972011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918345,12 +972028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e103" }, { @@ -918378,6 +972062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918393,12 +972079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "679b13" }, { @@ -918426,6 +972113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918441,12 +972130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bea17" }, { @@ -918474,6 +972164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918489,12 +972181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f7289" }, { @@ -918522,6 +972215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918537,12 +972232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e1b" } ], @@ -918589,6 +972285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -918605,9 +972303,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74efa5" }, { @@ -918635,6 +972333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -918651,9 +972351,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "759bf5" }, { @@ -918681,6 +972381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -918697,9 +972399,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "77ae77" }, { @@ -918727,6 +972429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918742,12 +972446,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b381e" }, { @@ -918775,6 +972480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -918791,9 +972498,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e14e1" }, { @@ -918821,6 +972528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918839,9 +972548,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -918868,6 +972577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918883,12 +972594,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b8cb7" }, { @@ -918916,6 +972628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -918931,12 +972645,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16ad5d" }, { @@ -918964,6 +972679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919012,7 +972729,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2929": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -919020,7 +972738,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2728": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -919028,7 +972747,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2746": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -919036,7 +972756,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2308": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -919044,7 +972765,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2309": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -919052,12 +972774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -919084,6 +972807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919099,12 +972824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30f860" }, { @@ -919132,6 +972858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919147,12 +972875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f7289" }, { @@ -919180,6 +972909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919195,12 +972926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff3f17" }, { @@ -919228,6 +972960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919243,12 +972977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f7289" }, { @@ -919276,6 +973011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919291,12 +973028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "051742" }, { @@ -919324,6 +973062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919339,12 +973079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8298f" }, { @@ -919372,6 +973113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919387,12 +973130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -919420,6 +973164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919435,12 +973181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8aa0c3" }, { @@ -919468,6 +973215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919483,12 +973232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "845f33" }, { @@ -919516,6 +973266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919531,12 +973283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -919564,6 +973317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919579,12 +973334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff3f17" }, { @@ -919612,6 +973368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919627,12 +973385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -919660,6 +973419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919675,12 +973436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7307c4" }, { @@ -919708,6 +973470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919723,12 +973487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f57f5" }, { @@ -919756,6 +973521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919771,12 +973538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bea17" }, { @@ -919804,6 +973572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919819,12 +973589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -919852,6 +973623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919867,12 +973640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -919900,6 +973674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919915,12 +973691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e4505" }, { @@ -919948,6 +973725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -919963,12 +973742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "493b03" }, { @@ -919996,6 +973776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920011,12 +973793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -920044,6 +973827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920059,12 +973844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -920092,6 +973878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920107,12 +973895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16ad5d" }, { @@ -920140,6 +973929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920155,12 +973946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a927c" }, { @@ -920188,6 +973980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920203,12 +973997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "051742" }, { @@ -920236,6 +974031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920251,12 +974048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df677" }, { @@ -920284,6 +974082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920299,12 +974099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80acd2" }, { @@ -920332,6 +974133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920347,12 +974150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -920380,6 +974184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920395,12 +974201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6656ad" }, { @@ -920428,6 +974235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920443,12 +974252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8aa0c3" }, { @@ -920476,6 +974286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920491,12 +974303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa1d67" }, { @@ -920524,6 +974337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920539,12 +974354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bea17" }, { @@ -920572,6 +974388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920587,12 +974405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b8cb7" } ], @@ -920639,6 +974458,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -920655,9 +974476,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "800843" }, { @@ -920685,6 +974506,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -920701,9 +974524,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8551a0" }, { @@ -920731,6 +974554,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920749,9 +974574,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -920778,6 +974603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920793,12 +974620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f08934" }, { @@ -920826,6 +974654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920841,12 +974671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785f68" }, { @@ -920874,6 +974705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920889,12 +974722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "223ba3" }, { @@ -920922,6 +974756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -920976,7 +974812,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2737": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -920984,7 +974821,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2929": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -920992,7 +974830,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2917": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -921000,7 +974839,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2706": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -921008,7 +974848,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2728": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -921016,7 +974857,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2707": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -921024,7 +974866,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2705": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -921032,12 +974875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -921064,6 +974908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921079,12 +974925,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80acd2" }, { @@ -921112,6 +974959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921127,12 +974976,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70ad8" }, { @@ -921160,6 +975010,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921175,12 +975027,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -921208,6 +975061,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921223,12 +975078,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "683937" }, { @@ -921256,6 +975112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921271,12 +975129,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7307c4" }, { @@ -921304,6 +975163,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921319,12 +975180,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab9f4" }, { @@ -921352,6 +975214,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921367,12 +975231,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2db518" }, { @@ -921400,6 +975265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921415,12 +975282,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d4749" }, { @@ -921448,6 +975316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921463,12 +975333,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a927c" }, { @@ -921496,6 +975367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921511,12 +975384,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa1d67" }, { @@ -921544,6 +975418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921559,12 +975435,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08bdf1" }, { @@ -921592,6 +975469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921607,12 +975486,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6656ad" }, { @@ -921640,6 +975520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921655,12 +975537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785f68" }, { @@ -921688,6 +975571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921703,12 +975588,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0dff3" }, { @@ -921736,6 +975622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921751,12 +975639,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff3f17" }, { @@ -921784,6 +975673,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921799,12 +975690,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "845f33" }, { @@ -921832,6 +975724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921847,12 +975741,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30f860" }, { @@ -921880,6 +975775,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921895,12 +975792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -921928,6 +975826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921943,12 +975843,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -921976,6 +975877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -921991,12 +975894,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff3f17" }, { @@ -922024,6 +975928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922039,12 +975945,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e4505" }, { @@ -922072,6 +975979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922087,12 +975996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f57f5" }, { @@ -922120,6 +976030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922135,12 +976047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "889121" }, { @@ -922168,6 +976081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922183,12 +976098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8aa0c3" }, { @@ -922216,6 +976132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922231,12 +976149,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1165db" }, { @@ -922264,6 +976183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922279,12 +976200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -922312,6 +976234,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922327,12 +976251,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12660b" }, { @@ -922360,6 +976285,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922375,12 +976302,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -922408,6 +976336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922423,12 +976353,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -922456,6 +976387,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922471,12 +976404,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86ee68" }, { @@ -922504,6 +976438,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922519,12 +976455,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f08934" }, { @@ -922552,6 +976489,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922567,12 +976506,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8298f" }, { @@ -922600,6 +976540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922615,12 +976557,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "683937" }, { @@ -922648,6 +976591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922663,12 +976608,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8aa0c3" }, { @@ -922696,6 +976642,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922711,12 +976659,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "223ba3" }, { @@ -922744,6 +976693,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922759,12 +976710,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df677" }, { @@ -922792,6 +976744,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922807,12 +976761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70ad8" }, { @@ -922840,6 +976795,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922855,12 +976812,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97986a" } ], @@ -922907,6 +976865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922925,9 +976885,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -922954,6 +976914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -922962,9 +976924,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -922991,6 +976953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923006,12 +976970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0533d" }, { @@ -923039,6 +977004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923054,12 +977021,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b57bab" }, { @@ -923087,6 +977055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923102,12 +977072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86bbeb" }, { @@ -923135,6 +977106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923150,12 +977123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f25d1" } ], @@ -923186,6 +977160,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923201,12 +977177,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f1b48" }, { @@ -923234,6 +977211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923249,12 +977228,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c7a00" }, { @@ -923282,6 +977262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923330,7 +977312,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2917": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -923338,7 +977321,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2929": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -923346,7 +977330,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2908": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -923354,7 +977339,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -923362,7 +977348,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2737": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -923370,7 +977357,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2896": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -923378,7 +977366,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -923386,7 +977375,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2897": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -923394,12 +977384,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -923426,6 +977417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923441,12 +977434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8298f" }, { @@ -923474,6 +977468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923489,12 +977485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0dff3" }, { @@ -923522,6 +977519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923537,12 +977536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ac19" }, { @@ -923570,6 +977570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923585,12 +977587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b265c4" }, { @@ -923618,6 +977621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923633,12 +977638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "845f33" }, { @@ -923666,6 +977672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923681,12 +977689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5dd39" }, { @@ -923714,6 +977723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923729,12 +977740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f1b48" }, { @@ -923762,6 +977774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923777,12 +977791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5cd622" }, { @@ -923810,6 +977825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923825,12 +977842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e1d91" }, { @@ -923858,6 +977876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923873,12 +977893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e1d91" }, { @@ -923906,6 +977927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923921,12 +977944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -923954,6 +977978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -923969,12 +977995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd6f67" }, { @@ -924002,6 +978029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924017,12 +978046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -924050,6 +978080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924065,12 +978097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13413d" }, { @@ -924098,6 +978131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924113,12 +978148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edb554" }, { @@ -924146,6 +978182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924161,12 +978199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9934d2" }, { @@ -924194,6 +978233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924209,12 +978250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "063fd8" }, { @@ -924242,6 +978284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924257,12 +978301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd2268" }, { @@ -924290,6 +978335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924305,12 +978352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6656ad" }, { @@ -924338,6 +978386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924353,12 +978403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba16cb" }, { @@ -924386,6 +978437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924401,12 +978454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86ee68" }, { @@ -924434,6 +978488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924449,12 +978505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -924482,6 +978539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924497,12 +978556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f91ce" }, { @@ -924530,6 +978590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924545,12 +978607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cf335" }, { @@ -924578,6 +978641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924593,12 +978658,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb6165" }, { @@ -924626,6 +978692,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924641,12 +978709,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08bdf1" }, { @@ -924674,6 +978743,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924689,12 +978760,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df677" }, { @@ -924722,6 +978794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924737,12 +978811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c7a00" }, { @@ -924770,6 +978845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924785,12 +978862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9bb2a" }, { @@ -924818,6 +978896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924833,12 +978913,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3fd916" }, { @@ -924866,6 +978947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924881,12 +978964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80acd2" }, { @@ -924914,6 +978998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -924929,12 +979015,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cc0a6" } ], @@ -924981,6 +979068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -924997,9 +979086,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98f4b5" }, { @@ -925027,6 +979116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -925043,9 +979134,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a19874" }, { @@ -925073,6 +979164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925091,12 +979184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -925123,6 +979217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925138,12 +979234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f0533d" }, { @@ -925171,6 +979268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925186,12 +979285,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b03b12" } ], @@ -925222,6 +979322,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -925238,9 +979340,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab0486" }, { @@ -925268,6 +979370,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925283,12 +979387,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4a195" }, { @@ -925316,6 +979421,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925334,9 +979441,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -925363,6 +979470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925378,12 +979487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "394603" }, { @@ -925411,6 +979521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925426,12 +979538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785f68" }, { @@ -925459,6 +979572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925507,7 +979622,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2742": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", @@ -925515,7 +979631,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", @@ -925523,7 +979640,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3686": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -925531,7 +979649,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3687": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -925539,7 +979658,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2617": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -925547,7 +979667,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4315": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -925555,7 +979676,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4501": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/", @@ -925563,7 +979685,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3789": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -925571,12 +979694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -925603,6 +979727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925618,12 +979744,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -925651,6 +979778,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925666,12 +979795,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "276477" }, { @@ -925699,6 +979829,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925714,12 +979846,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "078efb" }, { @@ -925747,6 +979880,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925762,12 +979897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b76c9" }, { @@ -925795,6 +979931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925810,12 +979948,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2767a" }, { @@ -925843,6 +979982,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925858,12 +979999,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68744b" }, { @@ -925891,6 +980033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925906,12 +980050,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f474b1" }, { @@ -925939,6 +980084,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -925954,12 +980101,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88d3c0" }, { @@ -925987,6 +980135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926002,12 +980152,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -926035,6 +980186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926050,12 +980203,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e1b" }, { @@ -926083,6 +980237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926098,12 +980254,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b18b33" }, { @@ -926131,6 +980288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926146,12 +980305,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58fd5a" }, { @@ -926179,6 +980339,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926194,12 +980356,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f34090" }, { @@ -926227,6 +980390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926242,12 +980407,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" }, { @@ -926275,6 +980441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926290,12 +980458,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -926323,6 +980492,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926338,12 +980509,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66b7d5" }, { @@ -926371,6 +980543,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926386,12 +980560,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "276477" }, { @@ -926419,6 +980594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926434,12 +980611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88392" }, { @@ -926467,6 +980645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926482,12 +980662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "593deb" }, { @@ -926515,6 +980696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926530,12 +980713,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -926563,6 +980747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926578,12 +980764,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66b7d5" }, { @@ -926611,6 +980798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926626,12 +980815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e103" }, { @@ -926659,6 +980849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926674,12 +980866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "394603" }, { @@ -926707,6 +980900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926722,12 +980917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83457e" }, { @@ -926755,6 +980951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926770,12 +980968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -926803,6 +981002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926818,12 +981019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -926851,6 +981053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926866,12 +981070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -926899,6 +981104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926914,12 +981121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdfd9f" }, { @@ -926947,6 +981155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -926962,12 +981172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eaa415" }, { @@ -926995,6 +981206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -927010,12 +981223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acce72" }, { @@ -927043,6 +981257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -927058,12 +981274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8ea95" }, { @@ -927091,6 +981308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -927106,12 +981325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" } ], @@ -927158,6 +981378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -927174,9 +981396,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df079f" }, { @@ -927204,6 +981426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -927220,9 +981444,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2aac1" }, { @@ -927250,6 +981474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -927266,9 +981492,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4be8a" }, { @@ -927296,6 +981522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -927311,12 +981539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5683e" }, { @@ -927344,6 +981573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -927359,12 +981590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4bdf0" }, { @@ -927392,6 +981624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -927408,9 +981642,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb6232" } ], @@ -927420,11 +981654,11 @@ "Name": "Custom_Model_Bag", "Transform": { "posX": -9.74, - "posY": 1.29806519, + "posY": 1.29806542, "posZ": -82.83582, - "rotX": 0.0208103228, + "rotX": 0.020810334, "rotY": 270.0003, - "rotZ": 0.0167705584, + "rotZ": 0.0167706329, "scaleX": 0.5, "scaleY": 0.139652729, "scaleZ": 0.5 @@ -927441,6 +981675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -927469,9 +981705,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor +12\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=800, width=800,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,3,-7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n-- position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100,\r\n-- font_size=400, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={2.4,3,7}, rotation={0,0,0}, height=850, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0531e5\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3615,\"z\":-62.4609},\"rot\":{\"x\":0.0208,\"y\":270.0276,\"z\":0.0168}},\"0db936\":{\"lock\":false,\"pos\":{\"x\":-16.6389,\"y\":1.3622,\"z\":-59.9952},\"rot\":{\"x\":0.0209,\"y\":269.8573,\"z\":0.0167}},\"1f168b\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3592,\"z\":-70.2906},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"20abda\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3749,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":269.9682,\"z\":0.0168}},\"2da799\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3645,\"z\":-52.152},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"347bdc\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3576,\"z\":-75.7054},\"rot\":{\"x\":0.0208,\"y\":270.0024,\"z\":0.0168}},\"37326d\":{\"lock\":false,\"pos\":{\"x\":-26.3001,\"y\":1.2734,\"z\":-61.241},\"rot\":{\"x\":359.9792,\"y\":89.9917,\"z\":359.9832}},\"396e28\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.2665,\"z\":-84.818},\"rot\":{\"x\":359.9792,\"y\":90.0006,\"z\":359.9832}},\"3a0b7c\":{\"lock\":false,\"pos\":{\"x\":-26.3,\"y\":1.2757,\"z\":-53.4368},\"rot\":{\"x\":359.9792,\"y\":90,\"z\":359.9832}},\"4ac8be\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3642,\"z\":-53.3904},\"rot\":{\"x\":0.0208,\"y\":270.0061,\"z\":0.0168}},\"568da7\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3657,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"592dfb\":{\"lock\":false,\"pos\":{\"x\":-16.6394,\"y\":1.3546,\"z\":-86.0186},\"rot\":{\"x\":0.0208,\"y\":270.0097,\"z\":0.0168}},\"5d774c\":{\"lock\":false,\"pos\":{\"x\":-16.6343,\"y\":1.3638,\"z\":-54.6167},\"rot\":{\"x\":0.0208,\"y\":269.9004,\"z\":0.0167}},\"687b10\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2688,\"z\":-76.9456},\"rot\":{\"x\":359.9792,\"y\":89.9993,\"z\":359.9832}},\"6b8d4e\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3619,\"z\":-61.231},\"rot\":{\"x\":0.0208,\"y\":270.0115,\"z\":0.0168}},\"92b8c8\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.368,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":269.9868,\"z\":0.0168}},\"b238a0\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3668,\"z\":-76.946},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":359.9792}},\"b3b6b9\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3554,\"z\":-83.5415},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"b81d01\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2711,\"z\":-69.0606},\"rot\":{\"x\":359.9792,\"y\":90.0185,\"z\":359.9832}},\"c0a2e9\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.36,\"z\":-67.8206},\"rot\":{\"x\":0.0208,\"y\":269.9973,\"z\":0.0168}},\"c57723\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3714,\"z\":-61.2414},\"rot\":{\"x\":0.0168,\"y\":179.9939,\"z\":359.9792}},\"c82de2\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3691,\"z\":-69.0756},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":359.9792}},\"c96d87\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3737,\"z\":-53.4381},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":359.9792}},\"d5ff18\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3569,\"z\":-78.1756},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"d827a4\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.355,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"da546d\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3645,\"z\":-84.8185},\"rot\":{\"x\":0.0168,\"y\":179.9867,\"z\":359.9792}},\"df88eb\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3726,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":269.987,\"z\":0.0168}},\"eaadbf\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3573,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":269.9724,\"z\":0.0167}},\"fae88f\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3703,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":269.9871,\"z\":0.0168}},\"ff2fcf\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3596,\"z\":-69.0603},\"rot\":{\"x\":0.0208,\"y\":269.9963,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model", @@ -927498,6 +981734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -927514,9 +981752,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0531e5" }, { @@ -927544,6 +981782,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -927560,9 +981800,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0db936" }, { @@ -927590,6 +981830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -927606,9 +981848,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f168b" }, { @@ -927636,6 +981878,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -927651,12 +981895,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20abda" }, { @@ -927684,6 +981929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -927700,9 +981947,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2da799" }, { @@ -927730,6 +981977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -927746,9 +981995,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "347bdc" }, { @@ -927776,6 +982025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -927794,9 +982045,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -927823,6 +982074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -927838,12 +982091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3586e6" }, { @@ -927871,6 +982125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -927886,12 +982142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4dd3d" }, { @@ -927919,6 +982176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -927967,7 +982226,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4439": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/", @@ -927975,7 +982235,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3687": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -927983,7 +982244,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3685": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -927991,7 +982253,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4410": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -927999,7 +982262,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2617": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -928007,12 +982271,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -928039,6 +982304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928054,12 +982321,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b265c4" }, { @@ -928087,6 +982355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928102,12 +982372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3586e6" }, { @@ -928135,6 +982406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928150,12 +982423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "833305" }, { @@ -928183,6 +982457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928198,12 +982474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "063fd8" }, { @@ -928231,6 +982508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928246,12 +982525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ac19" }, { @@ -928279,6 +982559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928294,12 +982576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9934d2" }, { @@ -928327,6 +982610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928342,12 +982627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b18b33" }, { @@ -928375,6 +982661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928390,12 +982678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "679b13" }, { @@ -928423,6 +982712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928438,12 +982729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7686cb" }, { @@ -928471,6 +982763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928486,12 +982780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "679b13" }, { @@ -928519,6 +982814,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928534,12 +982831,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdfd9f" }, { @@ -928567,6 +982865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928582,12 +982882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -928615,6 +982916,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928630,12 +982933,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba16cb" }, { @@ -928663,6 +982967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928678,12 +982984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f91ce" }, { @@ -928711,6 +983018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928726,12 +983035,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edb554" }, { @@ -928759,6 +983069,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928774,12 +983086,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -928807,6 +983120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928822,12 +983137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7686cb" }, { @@ -928855,6 +983171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928870,12 +983188,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5dd39" }, { @@ -928903,6 +983222,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928918,12 +983239,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ac19" }, { @@ -928951,6 +983273,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -928966,12 +983290,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -928999,6 +983324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929014,12 +983341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -929047,6 +983375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929062,12 +983392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88392" }, { @@ -929095,6 +983426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929110,12 +983443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -929143,6 +983477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929158,12 +983494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -929191,6 +983528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929206,12 +983545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cc0a6" }, { @@ -929239,6 +983579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929254,12 +983596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -929287,6 +983630,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929302,12 +983647,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb6165" }, { @@ -929335,6 +983681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929350,12 +983698,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4dd3d" }, { @@ -929383,6 +983732,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929398,12 +983749,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cf335" }, { @@ -929431,6 +983783,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929446,12 +983800,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab9f4" }, { @@ -929479,6 +983834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929494,12 +983851,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7686cb" }, { @@ -929527,6 +983885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929542,12 +983902,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" } ], @@ -929594,6 +983955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929612,9 +983975,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -929641,6 +984004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929656,12 +984021,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea0007" }, { @@ -929689,6 +984055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929704,12 +984072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6945f7" }, { @@ -929737,6 +984106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929797,7 +984168,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4440": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -929805,7 +984177,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2303": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/", @@ -929813,7 +984186,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4406": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -929821,7 +984195,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3685": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -929829,7 +984204,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4439": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/", @@ -929837,12 +984213,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -929869,6 +984246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929884,12 +984263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" }, { @@ -929917,6 +984297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929932,12 +984314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a33acd" }, { @@ -929965,6 +984348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -929980,12 +984365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6656ad" }, { @@ -930013,6 +984399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930028,12 +984416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f474b1" }, { @@ -930061,6 +984450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930076,12 +984467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30f860" }, { @@ -930109,6 +984501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930124,12 +984518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88d3c0" }, { @@ -930157,6 +984552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930172,12 +984569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "593deb" }, { @@ -930205,6 +984603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930220,12 +984620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7307c4" }, { @@ -930253,6 +984654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930268,12 +984671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a33acd" }, { @@ -930301,6 +984705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930316,12 +984722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8298f" }, { @@ -930349,6 +984756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930364,12 +984773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a33acd" }, { @@ -930397,6 +984807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930412,12 +984824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "078efb" }, { @@ -930445,6 +984858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930460,12 +984875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6656ad" }, { @@ -930493,6 +984909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930508,12 +984926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80acd2" }, { @@ -930541,6 +984960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930556,12 +984977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dacbf0" }, { @@ -930589,6 +985011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930604,12 +985028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "914053" }, { @@ -930637,6 +985062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930652,12 +985079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e1b" }, { @@ -930685,6 +985113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930700,12 +985130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -930733,6 +985164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930748,12 +985181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -930781,6 +985215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930796,12 +985232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" }, { @@ -930829,6 +985266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930844,12 +985283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f7289" }, { @@ -930877,6 +985317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930892,12 +985334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dacbf0" }, { @@ -930925,6 +985368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930940,12 +985385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa1d67" }, { @@ -930973,6 +985419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -930988,12 +985436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e103" }, { @@ -931021,6 +985470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931036,12 +985487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f34090" }, { @@ -931069,6 +985521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931084,12 +985538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a927c" }, { @@ -931117,6 +985572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931132,12 +985589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -931165,6 +985623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931180,12 +985640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -931213,6 +985674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931228,12 +985691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "914053" }, { @@ -931261,6 +985725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931276,12 +985742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30f860" }, { @@ -931309,6 +985776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931324,12 +985793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b76c9" }, { @@ -931357,6 +985827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931372,12 +985844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea0007" }, { @@ -931405,6 +985878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931420,12 +985895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8ea95" }, { @@ -931453,6 +985929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931468,12 +985946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -931501,6 +985980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931516,12 +985997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e103" }, { @@ -931549,6 +986031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931564,12 +986048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e4505" }, { @@ -931597,6 +986082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931612,12 +986099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd0ac1" }, { @@ -931645,6 +986133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931660,12 +986150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -931693,6 +986184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931708,12 +986201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f7289" }, { @@ -931741,6 +986235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931756,12 +986252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f474b1" }, { @@ -931789,6 +986286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931804,12 +986303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6945f7" }, { @@ -931837,6 +986337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931852,12 +986354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -931885,6 +986388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931900,12 +986405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dacbf0" }, { @@ -931933,6 +986439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -931948,12 +986456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" } ], @@ -932000,6 +986509,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932018,9 +986529,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -932047,6 +986558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932062,12 +986575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e567ff" }, { @@ -932095,6 +986609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932110,12 +986626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "587589" }, { @@ -932143,6 +986660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932191,7 +986710,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3685": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -932199,7 +986719,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", @@ -932207,7 +986728,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4409": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", @@ -932215,7 +986737,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4439": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/", @@ -932223,7 +986746,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4406": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", @@ -932231,12 +986755,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -932263,6 +986788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932278,12 +986805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1165db" }, { @@ -932311,6 +986839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932326,12 +986856,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab9f4" }, { @@ -932359,6 +986890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932374,12 +986907,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f34090" }, { @@ -932407,6 +986941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932422,12 +986958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "078efb" }, { @@ -932455,6 +986992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932470,12 +987009,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -932503,6 +987043,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932518,12 +987060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -932551,6 +987094,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932566,12 +987111,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "889121" }, { @@ -932599,6 +987145,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932614,12 +987162,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08bdf1" }, { @@ -932647,6 +987196,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932662,12 +987213,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48e103" }, { @@ -932695,6 +987247,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932710,12 +987264,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef7c11" }, { @@ -932743,6 +987298,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932758,12 +987315,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d4749" }, { @@ -932791,6 +987349,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932806,12 +987366,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "587589" }, { @@ -932839,6 +987400,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932854,12 +987417,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97986a" }, { @@ -932887,6 +987451,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932902,12 +987468,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e1b" }, { @@ -932935,6 +987502,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932950,12 +987519,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e567ff" }, { @@ -932983,6 +987553,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -932998,12 +987570,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5cd622" }, { @@ -933031,6 +987604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933046,12 +987621,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b76c9" }, { @@ -933079,6 +987655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933094,12 +987672,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dacbf0" }, { @@ -933127,6 +987706,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933142,12 +987723,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef7c11" }, { @@ -933175,6 +987757,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933190,12 +987774,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0dff3" }, { @@ -933223,6 +987808,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933238,12 +987825,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -933271,6 +987859,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933286,12 +987876,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "593deb" }, { @@ -933319,6 +987910,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933334,12 +987927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef7c11" }, { @@ -933367,6 +987961,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933382,12 +987978,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2db518" }, { @@ -933415,6 +988012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933430,12 +988029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12660b" }, { @@ -933463,6 +988063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933478,12 +988080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8ea95" }, { @@ -933511,6 +988114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933526,12 +988131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -933559,6 +988165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933574,12 +988182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "88d3c0" }, { @@ -933607,6 +988216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933622,12 +988233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dacbf0" }, { @@ -933655,6 +988267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933670,12 +988284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86ee68" }, { @@ -933703,6 +988318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933718,12 +988335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dacbf0" }, { @@ -933751,6 +988369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933766,12 +988386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" } ], @@ -933818,6 +988439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -933834,9 +988457,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4ac8be" }, { @@ -933864,6 +988487,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -933879,12 +988504,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "568da7" }, { @@ -933912,6 +988538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -933928,9 +988556,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "592dfb" }, { @@ -933958,6 +988586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -933974,9 +988604,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d774c" }, { @@ -934004,6 +988634,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934022,9 +988654,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -934051,6 +988683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934066,12 +988700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8c891" }, { @@ -934099,6 +988734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934114,12 +988751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d12359" }, { @@ -934147,6 +988785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934162,12 +988802,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa4c1e" }, { @@ -934195,6 +988836,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934243,7 +988886,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3684": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -934251,7 +988895,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4440": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/", @@ -934259,7 +988904,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4439": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/", @@ -934267,7 +988913,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2303": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/", @@ -934275,7 +988922,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4410": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", @@ -934283,12 +988931,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -934315,6 +988964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934330,12 +988981,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -934363,6 +989015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934378,12 +989032,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9934d2" }, { @@ -934411,6 +989066,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934426,12 +989083,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -934459,6 +989117,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934474,12 +989134,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a33acd" }, { @@ -934507,6 +989168,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934522,12 +989185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a33acd" }, { @@ -934555,6 +989219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934570,12 +989236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d12359" }, { @@ -934603,6 +989270,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934618,12 +989287,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -934651,6 +989321,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934666,12 +989338,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba16cb" }, { @@ -934699,6 +989372,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934714,12 +989389,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa1d67" }, { @@ -934747,6 +989423,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934762,12 +989440,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f91ce" }, { @@ -934795,6 +989474,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934810,12 +989491,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd0ac1" }, { @@ -934843,6 +989525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934858,12 +989542,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e4505" }, { @@ -934891,6 +989576,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934906,12 +989593,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a927c" }, { @@ -934939,6 +989627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -934954,12 +989644,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -934987,6 +989678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935002,12 +989695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8298f" }, { @@ -935035,6 +989729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935050,12 +989746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a33acd" }, { @@ -935083,6 +989780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935098,12 +989797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80acd2" }, { @@ -935131,6 +989831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935146,12 +989848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cf335" }, { @@ -935179,6 +989882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935194,12 +989899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "063fd8" }, { @@ -935227,6 +989933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935242,12 +989950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cc0a6" }, { @@ -935275,6 +989984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935290,12 +990001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -935323,6 +990035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935338,12 +990052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "914053" }, { @@ -935371,6 +990086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935386,12 +990103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30f860" }, { @@ -935419,6 +990137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935434,12 +990154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "edb554" }, { @@ -935467,6 +990188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935482,12 +990205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5dd39" }, { @@ -935515,6 +990239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935530,12 +990256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6656ad" }, { @@ -935563,6 +990290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935578,12 +990307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7686cb" }, { @@ -935611,6 +990341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935626,12 +990358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -935659,6 +990392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935674,12 +990409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8c891" }, { @@ -935707,6 +990443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935722,12 +990460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb6165" }, { @@ -935755,6 +990494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935770,12 +990511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7307c4" }, { @@ -935803,6 +990545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935818,12 +990562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b265c4" } ], @@ -935870,6 +990615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -935886,9 +990633,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b8d4e" }, { @@ -935916,6 +990663,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935931,12 +990680,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92b8c8" }, { @@ -935964,6 +990714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -935979,12 +990731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b238a0" }, { @@ -936012,6 +990765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -936028,9 +990783,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3b6b9" }, { @@ -936058,6 +990813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936076,9 +990833,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -936105,6 +990862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936123,12 +990882,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -936155,6 +990915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936170,12 +990932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510459" }, { @@ -936203,6 +990966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936218,12 +990983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "606327" } ], @@ -936254,6 +991020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936269,12 +991037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d9b32" }, { @@ -936302,6 +991071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936317,12 +991088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6f8d1" }, { @@ -936350,6 +991122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936402,7 +991176,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4439": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/", @@ -936410,7 +991185,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3685": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -936418,7 +991194,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -936426,7 +991203,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3686": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -936434,7 +991212,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3687": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -936442,7 +991221,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2617": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -936450,12 +991230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -936482,6 +991263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936497,12 +991280,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aec357" }, { @@ -936530,6 +991314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936545,12 +991331,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aec357" }, { @@ -936578,6 +991365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936593,12 +991382,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d9b32" }, { @@ -936626,6 +991416,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936641,12 +991433,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f7289" }, { @@ -936674,6 +991467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936689,12 +991484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6f8d1" }, { @@ -936722,6 +991518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936737,12 +991535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -936770,6 +991569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936785,12 +991586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3bd71" }, { @@ -936818,6 +991620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936833,12 +991637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97986a" }, { @@ -936866,6 +991671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936881,12 +991688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3bd71" }, { @@ -936914,6 +991722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936929,12 +991739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "679b13" }, { @@ -936962,6 +991773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -936977,12 +991790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "213853" }, { @@ -937010,6 +991824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937025,12 +991841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f7289" }, { @@ -937058,6 +991875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937073,12 +991892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -937106,6 +991926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937121,12 +991943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -937154,6 +991977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937169,12 +991994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab9f4" }, { @@ -937202,6 +992028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937217,12 +992045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2db518" }, { @@ -937250,6 +992079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937265,12 +992096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da7c01" }, { @@ -937298,6 +992130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937313,12 +992147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0dff3" }, { @@ -937346,6 +992181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937361,12 +992198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "679b13" }, { @@ -937394,6 +992232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937409,12 +992249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe2db3" }, { @@ -937442,6 +992283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937457,12 +992300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ab9f4" }, { @@ -937490,6 +992334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937505,12 +992351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc3451" }, { @@ -937538,6 +992385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937553,12 +992402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ab3f1" }, { @@ -937586,6 +992436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937601,12 +992453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b18b33" }, { @@ -937634,6 +992487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937649,12 +992504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cdfd9f" }, { @@ -937682,6 +992538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937697,12 +992555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68744b" }, { @@ -937730,6 +992589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937745,12 +992606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "510c0d" }, { @@ -937778,6 +992640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937793,12 +992657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88392" }, { @@ -937826,6 +992691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937841,12 +992708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eaa415" }, { @@ -937874,6 +992742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937889,12 +992759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ac19" }, { @@ -937922,6 +992793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937937,12 +992810,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6ac19" }, { @@ -937970,6 +992844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -937985,12 +992861,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1186a1" }, { @@ -938018,6 +992895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938033,12 +992912,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "889121" }, { @@ -938066,6 +992946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938081,12 +992963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1186a1" }, { @@ -938114,6 +992997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938129,12 +993014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -938162,6 +993048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938177,12 +993065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "833305" } ], @@ -938229,6 +993118,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -938245,9 +993136,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c0a2e9" }, { @@ -938275,6 +993166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938290,12 +993183,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c57723" }, { @@ -938323,6 +993217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938338,12 +993234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c82de2" }, { @@ -938371,6 +993268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938386,12 +993285,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c96d87" }, { @@ -938419,6 +993319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -938435,9 +993337,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d5ff18" }, { @@ -938465,6 +993367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -938481,9 +993385,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d827a4" }, { @@ -938511,6 +993415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938526,12 +993432,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da546d" }, { @@ -938559,6 +993466,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938574,12 +993483,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df88eb" }, { @@ -938607,6 +993517,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -938623,9 +993535,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eaadbf" }, { @@ -938653,6 +993565,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938668,12 +993582,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fae88f" }, { @@ -938701,6 +993616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -938717,9 +993634,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff2fcf" } ], @@ -938729,11 +993646,11 @@ "Name": "Custom_Model_Bag", "Transform": { "posX": -9.739967, - "posY": 1.29607391, + "posY": 1.296074, "posZ": -89.63861, - "rotX": 0.02081004, + "rotX": 0.0208099, "rotY": 270.0011, - "rotZ": 0.0167708453, + "rotZ": 0.0167709962, "scaleX": 0.5, "scaleY": 0.139652729, "scaleZ": 0.5 @@ -938750,6 +993667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938778,9 +993697,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor +12\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=800, width=800,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,3,7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,3,-7}, rotation={0,0,0}, height=700, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n-- position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100,\r\n-- font_size=400, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={2.4,3,7}, rotation={0,0,0}, height=850, width=2000,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"1da958\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3645,\"z\":-84.8185},\"rot\":{\"x\":0.0168,\"y\":179.9921,\"z\":359.9792}},\"26f88d\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3603,\"z\":-66.8114},\"rot\":{\"x\":0.0208,\"y\":270.0166,\"z\":0.0168}},\"298237\":{\"lock\":false,\"pos\":{\"x\":-22.6146,\"y\":1.3701,\"z\":-65.5964},\"rot\":{\"x\":0.0168,\"y\":180.0003,\"z\":359.9792}},\"376a06\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2688,\"z\":-76.9456},\"rot\":{\"x\":359.9792,\"y\":89.9798,\"z\":359.9832}},\"389792\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3668,\"z\":-76.946},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":359.9792}},\"3f60eb\":{\"lock\":false,\"pos\":{\"x\":-19.2948,\"y\":1.3714,\"z\":-65.5815},\"rot\":{\"x\":0.0208,\"y\":269.9986,\"z\":0.0168}},\"6bd479\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3576,\"z\":-75.7054},\"rot\":{\"x\":0.0208,\"y\":270.0208,\"z\":0.0168}},\"72caa1\":{\"lock\":false,\"pos\":{\"x\":-16.6392,\"y\":1.3606,\"z\":-65.5811},\"rot\":{\"x\":0.0208,\"y\":269.9983,\"z\":0.0168}},\"888fcc\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3657,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0035,\"z\":0.0168}},\"8b0a9e\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.361,\"z\":-64.3414},\"rot\":{\"x\":0.0208,\"y\":269.9907,\"z\":0.0168}},\"ab52dc\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.2665,\"z\":-84.818},\"rot\":{\"x\":359.9792,\"y\":90.0128,\"z\":359.9832}},\"d3d270\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3573,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":270.0207,\"z\":0.0168}},\"d8e1ad\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3569,\"z\":-78.1756},\"rot\":{\"x\":0.0208,\"y\":270.0207,\"z\":0.0168}},\"d9f2c7\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3554,\"z\":-83.5415},\"rot\":{\"x\":0.0208,\"y\":269.9983,\"z\":0.0168}},\"e1786c\":{\"lock\":false,\"pos\":{\"x\":-16.6394,\"y\":1.3546,\"z\":-86.0186},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"fc27ff\":{\"lock\":false,\"pos\":{\"x\":-26.2991,\"y\":1.2721,\"z\":-65.5814},\"rot\":{\"x\":359.9792,\"y\":90.0019,\"z\":359.9832}},\"fc63ca\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.368,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"ffa2b2\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.355,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -938807,6 +993726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938822,12 +993743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1da958" }, { @@ -938855,6 +993777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -938871,9 +993795,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26f88d" }, { @@ -938901,6 +993825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938916,12 +993842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "298237" }, { @@ -938949,6 +993876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -938967,9 +993896,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -938996,6 +993925,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939011,12 +993942,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6975d3" }, { @@ -939044,6 +993976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939059,12 +993993,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "636f6b" } ], @@ -939108,6 +994043,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939123,12 +994060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "389792" }, { @@ -939156,6 +994094,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939171,12 +994111,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f60eb" }, { @@ -939204,6 +994145,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -939220,9 +994163,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd479" }, { @@ -939250,6 +994193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -939266,9 +994211,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72caa1" }, { @@ -939296,6 +994241,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939311,12 +994258,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "888fcc" }, { @@ -939344,6 +994292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -939360,9 +994310,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b0a9e" }, { @@ -939390,6 +994340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939408,9 +994360,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -939437,6 +994389,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939485,7 +994439,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", @@ -939493,7 +994448,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3684": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", @@ -939501,7 +994457,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2303": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/", @@ -939509,7 +994466,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2617": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", @@ -939517,7 +994475,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", @@ -939525,7 +994484,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3805": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -939533,7 +994493,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "3806": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -939541,12 +994502,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -939573,6 +994535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939588,12 +994552,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "603e29" }, { @@ -939621,6 +994586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939636,12 +994603,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "215cec" }, { @@ -939669,6 +994637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939684,12 +994654,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ee492" }, { @@ -939717,6 +994688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939732,12 +994705,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1d7fa" }, { @@ -939765,6 +994739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939780,12 +994756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ee492" }, { @@ -939813,6 +994790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939828,12 +994807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffa4f9" }, { @@ -939861,6 +994841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939876,12 +994858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffa4f9" }, { @@ -939909,6 +994892,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939924,12 +994909,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1d7fa" }, { @@ -939957,6 +994943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -939972,12 +994960,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "603e29" }, { @@ -940005,6 +994994,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940020,12 +995011,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffdeb5" }, { @@ -940053,6 +995045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940068,12 +995062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -940101,6 +995096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940116,12 +995113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9da37c" }, { @@ -940149,6 +995147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940164,12 +995164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd0ac1" }, { @@ -940197,6 +995198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940212,12 +995215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88392" }, { @@ -940245,6 +995249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940260,12 +995266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a88392" }, { @@ -940293,6 +995300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940308,12 +995317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9da37c" }, { @@ -940341,6 +995351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940356,12 +995368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80628f" }, { @@ -940389,6 +995402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940404,12 +995419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" }, { @@ -940437,6 +995453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940452,12 +995470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "334f03" }, { @@ -940485,6 +995504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940500,12 +995521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b4434" }, { @@ -940533,6 +995555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940548,12 +995572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd0ac1" }, { @@ -940581,6 +995606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940596,12 +995623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "334f03" }, { @@ -940629,6 +995657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940644,12 +995674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b4434" }, { @@ -940677,6 +995708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940692,12 +995725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffdeb5" }, { @@ -940725,6 +995759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940740,12 +995776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bb1cce" }, { @@ -940773,6 +995810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940788,12 +995827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13eaf0" }, { @@ -940821,6 +995861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940836,12 +995878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "215cec" }, { @@ -940869,6 +995912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940884,12 +995929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d6e9a" }, { @@ -940917,6 +995963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940932,12 +995980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0dd5" }, { @@ -940965,6 +996014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -940980,12 +996031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -941013,6 +996065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941028,12 +996082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "acb83a" }, { @@ -941061,6 +996116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941076,12 +996133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80628f" } ], @@ -941112,6 +996170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941127,12 +996187,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d6e9a" }, { @@ -941160,6 +996221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941175,12 +996238,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a7f13" } ], @@ -941224,6 +996288,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -941240,9 +996306,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3d270" }, { @@ -941270,6 +996336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -941286,9 +996354,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d8e1ad" }, { @@ -941316,6 +996384,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -941332,9 +996402,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9f2c7" }, { @@ -941362,6 +996432,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -941378,9 +996450,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1786c" }, { @@ -941408,6 +996480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941426,9 +996500,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -941455,6 +996529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941470,12 +996546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67e006" }, { @@ -941503,6 +996580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941518,12 +996597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce3a1a" }, { @@ -941551,6 +996631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941599,7 +996681,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2303": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/", @@ -941607,7 +996690,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2096": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", @@ -941615,7 +996699,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2309": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -941623,7 +996708,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2308": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/", @@ -941631,12 +996717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -941663,6 +996750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941678,12 +996767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91ebae" }, { @@ -941711,6 +996801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941726,12 +996818,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0ed58" }, { @@ -941759,6 +996852,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941774,12 +996869,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee46e8" }, { @@ -941807,6 +996903,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941822,12 +996920,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f03884" }, { @@ -941855,6 +996954,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941870,12 +996971,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e05e1c" }, { @@ -941903,6 +997005,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941918,12 +997022,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "214799" }, { @@ -941951,6 +997056,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -941966,12 +997073,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6b4b5" }, { @@ -941999,6 +997107,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942014,12 +997124,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e54f40" }, { @@ -942047,6 +997158,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942062,12 +997175,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "33f7d9" }, { @@ -942095,6 +997209,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942110,12 +997226,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9caa08" }, { @@ -942143,6 +997260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942158,12 +997277,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fdcc62" }, { @@ -942191,6 +997311,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942206,12 +997328,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ecdbf" }, { @@ -942239,6 +997362,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942254,12 +997379,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b10dc7" }, { @@ -942287,6 +997413,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942302,12 +997430,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "432ffa" }, { @@ -942335,6 +997464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942350,12 +997481,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8eb444" }, { @@ -942383,6 +997515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942398,12 +997532,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6cd71" }, { @@ -942431,6 +997566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942446,12 +997583,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4260db" }, { @@ -942479,6 +997617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942494,12 +997634,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cea56" }, { @@ -942527,6 +997668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942542,12 +997685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5957" }, { @@ -942575,6 +997719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942590,12 +997736,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "614399" }, { @@ -942623,6 +997770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942638,12 +997787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab5b2a" }, { @@ -942671,6 +997821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942686,12 +997838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5209c2" }, { @@ -942719,6 +997872,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942734,12 +997889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "65f204" }, { @@ -942767,6 +997923,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942782,12 +997940,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "598303" }, { @@ -942815,6 +997974,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942830,12 +997991,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "338be4" }, { @@ -942863,6 +998025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942878,12 +998042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18afb8" }, { @@ -942911,6 +998076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942926,12 +998093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "513462" }, { @@ -942959,6 +998127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -942974,12 +998144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61802c" }, { @@ -943007,6 +998178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943022,12 +998195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4820d" }, { @@ -943055,6 +998229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943070,12 +998246,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff7e1c" }, { @@ -943103,6 +998280,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943118,12 +998297,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "226326" }, { @@ -943151,6 +998331,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943166,12 +998348,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99a07b" } ], @@ -943218,6 +998401,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943233,12 +998418,13 @@ "NumWidth": 7, "NumHeight": 3, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc63ca" }, { @@ -943266,6 +998452,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -943282,9 +998470,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffa2b2" } ], @@ -943315,6 +998503,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943343,9 +998533,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -943372,6 +998562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943390,9 +998582,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a1506" }, { @@ -943420,6 +998612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943438,9 +998632,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3d96a" }, { @@ -943468,6 +998662,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943486,9 +998682,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc8bbb" }, { @@ -943516,6 +998712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943534,9 +998732,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d6103" }, { @@ -943564,6 +998762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943582,9 +998782,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b1aca" }, { @@ -943612,6 +998812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943630,9 +998832,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e31821" }, { @@ -943660,6 +998862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943678,9 +998882,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "298b5f" }, { @@ -943708,6 +998912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943726,9 +998932,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81a1d7" }, { @@ -943756,6 +998962,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943774,9 +998982,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2460df" }, { @@ -943804,6 +999012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943822,9 +999032,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1df0a5" }, { @@ -943852,6 +999062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943870,9 +999082,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "984eec" }, { @@ -943900,6 +999112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943918,9 +999132,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7a9cb" }, { @@ -943948,6 +999162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -943966,9 +999182,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af600" }, { @@ -943996,6 +999212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944014,9 +999232,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b644d2" }, { @@ -944044,6 +999262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944062,9 +999282,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0a8592" }, { @@ -944092,6 +999312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944110,9 +999332,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a15273" } ], @@ -944135,7 +999357,7 @@ "Description": "", "GMNotes": "", "ColorDiffuse": { - "r": 0.106253721, + "r": 0.106253661, "g": 0.008296312, "b": 0.0 }, @@ -944143,6 +999365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944161,9 +999385,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9140e", "States": { "2": { @@ -944191,6 +999415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944209,9 +999435,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "247cf2" }, "3": { @@ -944239,6 +999465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944257,9 +999485,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "042d56" }, "4": { @@ -944287,6 +999515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944305,9 +999535,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44077a" } } @@ -944315,12 +999545,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 51.6563454, + "posX": 51.6563568, "posY": 1.409486, - "posZ": -13.7184372, + "posZ": -13.718442, "rotX": 359.920135, - "rotY": 270.004242, - "rotZ": 0.0168663356, + "rotY": 270.0041, + "rotZ": 0.0168670565, "scaleX": 1.0, "scaleY": 0.139652729, "scaleZ": 1.0 @@ -944337,6 +999567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944365,9 +999597,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 4\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={1.5,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-1.2,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-4,5,6}, rotation={0,0,0}, height=500, width=1000,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1.35,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1.25,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-6,1,0}, rotation={0,90,0}, height=500, width=1200,\r\n-- font_size=350, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"05e6aa\":{\"lock\":false,\"pos\":{\"x\":3.2076,\"y\":1.5459,\"z\":-36.0018},\"rot\":{\"x\":359.9201,\"y\":269.9973,\"z\":0.0169}},\"065ce1\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4727,\"z\":27.9864},\"rot\":{\"x\":359.9201,\"y\":270.067,\"z\":0.0168}},\"0ec59f\":{\"lock\":false,\"pos\":{\"x\":12.2521,\"y\":1.468,\"z\":11.9864},\"rot\":{\"x\":359.9201,\"y\":270.0266,\"z\":0.0168}},\"11f5c8\":{\"lock\":false,\"pos\":{\"x\":12.2499,\"y\":1.4703,\"z\":19.9864},\"rot\":{\"x\":359.9201,\"y\":270.0197,\"z\":0.0168}},\"2bfe00\":{\"lock\":false,\"pos\":{\"x\":12.25,\"y\":1.4656,\"z\":3.9863},\"rot\":{\"x\":359.9201,\"y\":270.0261,\"z\":0.0168}},\"3170ce\":{\"lock\":false,\"pos\":{\"x\":12.2501,\"y\":1.4609,\"z\":-12.0136},\"rot\":{\"x\":359.9201,\"y\":270.0067,\"z\":0.0169}},\"48b154\":{\"lock\":false,\"pos\":{\"x\":-1.3535,\"y\":1.4756,\"z\":-26.6032},\"rot\":{\"x\":359.9201,\"y\":270.002,\"z\":0.0169}},\"5b2403\":{\"lock\":false,\"pos\":{\"x\":12.2496,\"y\":1.4633,\"z\":-4.0137},\"rot\":{\"x\":359.9201,\"y\":270.0024,\"z\":0.0169}},\"737c5d\":{\"lock\":false,\"pos\":{\"x\":12.2496,\"y\":1.4562,\"z\":-28.0137},\"rot\":{\"x\":359.9201,\"y\":270.0025,\"z\":0.0169}},\"85286a\":{\"lock\":false,\"pos\":{\"x\":12.2505,\"y\":1.4585,\"z\":-20.0137},\"rot\":{\"x\":359.9201,\"y\":270.0099,\"z\":0.0169}},\"c52079\":{\"lock\":false,\"pos\":{\"x\":12.2504,\"y\":1.4538,\"z\":-36.0138},\"rot\":{\"x\":359.9201,\"y\":270.0046,\"z\":0.0169}},\"e90956\":{\"lock\":false,\"pos\":{\"x\":12.2494,\"y\":1.475,\"z\":35.9864},\"rot\":{\"x\":359.9201,\"y\":270.1032,\"z\":0.0167}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -944394,6 +999626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944424,12 +999658,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -944456,6 +999691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944463,9 +999700,9 @@ "Hands": true, "CardID": 269800, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" }, @@ -944494,6 +999731,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944501,9 +999740,9 @@ "Hands": true, "CardID": 269801, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" }, @@ -944532,6 +999771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944539,9 +999780,9 @@ "Hands": true, "CardID": 269802, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" }, @@ -944570,6 +999811,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944577,9 +999820,9 @@ "Hands": true, "CardID": 269803, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" }, @@ -944608,6 +999851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944615,9 +999860,9 @@ "Hands": true, "CardID": 269804, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" }, @@ -944646,6 +999891,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944653,9 +999900,9 @@ "Hands": true, "CardID": 269805, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" }, @@ -944684,6 +999931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944691,9 +999940,9 @@ "Hands": true, "CardID": 269806, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" }, @@ -944722,6 +999971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944729,9 +999980,9 @@ "Hands": true, "CardID": 269807, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" }, @@ -944760,6 +1000011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944767,9 +1000020,9 @@ "Hands": true, "CardID": 269808, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" }, @@ -944798,6 +1000051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944805,9 +1000060,9 @@ "Hands": true, "CardID": 269809, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" }, @@ -944836,6 +1000091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944843,9 +1000100,9 @@ "Hands": true, "CardID": 269810, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" }, @@ -944874,6 +1000131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944881,9 +1000140,9 @@ "Hands": true, "CardID": 269811, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" }, @@ -944912,6 +1000171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944919,9 +1000180,9 @@ "Hands": true, "CardID": 269812, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" }, @@ -944950,6 +1000211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -944957,9 +1000220,9 @@ "Hands": true, "CardID": 269813, "SidewaysCard": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [], "GUID": "31df72" } @@ -944991,6 +1000254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945009,9 +1000274,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"1210d6\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9939,\"z\":0.0803}},\"294ec4\":{\"lock\":false,\"pos\":{\"x\":-4.6804,\"y\":1.5837,\"z\":-14.8422},\"rot\":{\"x\":359.9197,\"y\":270.0308,\"z\":0.0168}},\"964bf2\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4411},\"rot\":{\"x\":359.9197,\"y\":270.0006,\"z\":0.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"be9001\":{\"lock\":false,\"pos\":{\"x\":-12.61,\"y\":1.6778,\"z\":7.5169},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"c4d867\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7664,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0023,\"z\":180.0168}},\"cf966e\":{\"lock\":false,\"pos\":{\"x\":-13.016,\"y\":1.6697,\"z\":-15.3163},\"rot\":{\"x\":359.9201,\"y\":269.9992,\"z\":180.0169}},\"e5f222\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"e692a1\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9969,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -945038,6 +1000303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945064,7 +1000331,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2724": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/", @@ -945072,7 +1000340,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -945080,12 +1000349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -945112,6 +1000382,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945127,12 +1000399,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -945160,6 +1000433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945175,12 +1000450,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "609c9e" }, { @@ -945208,6 +1000484,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945223,12 +1000501,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43dc89" }, { @@ -945256,6 +1000535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945271,12 +1000552,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbe6e8" }, { @@ -945304,6 +1000586,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945319,12 +1000603,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70904c" }, { @@ -945352,6 +1000637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945367,12 +1000654,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58bf8d" }, { @@ -945400,6 +1000688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945415,12 +1000705,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a4bf1" }, { @@ -945448,6 +1000739,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945463,12 +1000756,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -945496,6 +1000790,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945511,12 +1000807,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da2655" }, { @@ -945544,6 +1000841,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945559,12 +1000858,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7fd35" } ], @@ -945595,6 +1000895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945610,12 +1000912,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5f222" }, { @@ -945643,6 +1000946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945658,12 +1000963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "964bf2" }, { @@ -945691,6 +1000997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945709,9 +1001017,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Doom of Eztli'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "294ec4" }, { @@ -945739,6 +1001047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945754,12 +1001064,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf966e" }, { @@ -945787,6 +1001098,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945805,12 +1001118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -945837,6 +1001151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945852,12 +1001168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5a713" }, { @@ -945885,6 +1001202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945900,12 +1001219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2376d1" } ], @@ -945936,6 +1001256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -945955,12 +1001277,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -945987,6 +1001310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946002,12 +1001327,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89593e" }, { @@ -946035,6 +1001361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946050,12 +1001378,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a9acd" }, { @@ -946083,6 +1001412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946098,12 +1001429,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87937f" } ], @@ -946134,6 +1001466,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946179,7 +1001513,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2786": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -946187,12 +1001522,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -946219,6 +1001555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946234,12 +1001572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -946267,6 +1001606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946282,12 +1001623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ef7c7" }, { @@ -946315,6 +1001657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946330,12 +1001674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61dec3" }, { @@ -946363,6 +1001708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946378,12 +1001725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a7539" }, { @@ -946411,6 +1001759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946426,12 +1001776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "906ef2" }, { @@ -946459,6 +1001810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946474,12 +1001827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b28aa" }, { @@ -946507,6 +1001861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946522,12 +1001878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c713cd" }, { @@ -946555,6 +1001912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946570,12 +1001929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b107c" }, { @@ -946603,6 +1001963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946618,12 +1001980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "15b8ac" }, { @@ -946651,6 +1002014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946666,12 +1002031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9542e8" }, { @@ -946699,6 +1002065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946714,12 +1002082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "660874" }, { @@ -946747,6 +1002116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946762,12 +1002133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -946795,6 +1002167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946810,12 +1002184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "007882" }, { @@ -946843,6 +1002218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946858,12 +1002235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ae819" }, { @@ -946891,6 +1002269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946906,12 +1002286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0b6951" }, { @@ -946939,6 +1002320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -946954,12 +1002337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed5961" }, { @@ -946987,6 +1002371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947002,12 +1002388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2f948" }, { @@ -947035,6 +1002422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947050,12 +1002439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -947083,6 +1002473,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947098,12 +1002490,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29e1ba" }, { @@ -947131,6 +1002524,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947146,12 +1002541,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a4bf1" }, { @@ -947179,6 +1002575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947194,12 +1002592,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc2fb1" }, { @@ -947227,6 +1002626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947242,12 +1002643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c092e1" }, { @@ -947275,6 +1002677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947290,12 +1002694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4f854" }, { @@ -947323,6 +1002728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947338,12 +1002745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8fef" }, { @@ -947371,6 +1002779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947386,12 +1002796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fbcc6" }, { @@ -947419,6 +1002830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947434,12 +1002847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0cb5" }, { @@ -947467,6 +1002881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947482,12 +1002898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dd1d9" }, { @@ -947515,6 +1002932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947530,12 +1002949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -947563,6 +1002983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947578,12 +1003000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16ec42" } ], @@ -947614,6 +1003037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947632,9 +1003057,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -947661,6 +1003086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947681,12 +1003108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -947713,6 +1003141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947728,12 +1003158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34788c" }, { @@ -947761,6 +1003192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947776,12 +1003209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f5327" }, { @@ -947809,6 +1003243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947824,12 +1003260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "36f746" }, { @@ -947857,6 +1003294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947872,12 +1003311,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" } ], @@ -947908,6 +1003348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947923,12 +1003365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2be806" }, { @@ -947956,6 +1003399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -947971,12 +1003416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6b3fc" }, { @@ -948004,6 +1003450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948019,12 +1003467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8df4a7" } ], @@ -948091,6 +1003540,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948109,9 +1003560,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"010761\":{\"lock\":false,\"pos\":{\"x\":-4.3394,\"y\":1.5832,\"z\":-14.8563},\"rot\":{\"x\":359.9197,\"y\":270.0297,\"z\":0.0168}},\"22aed2\":{\"lock\":false,\"pos\":{\"x\":-3.9662,\"y\":1.6631,\"z\":15.0186},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"354fdf\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.6757,\"z\":5.7572},\"rot\":{\"x\":359.9178,\"y\":269.9999,\"z\":180.0176}},\"3b6840\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.08}},\"4fce07\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9944,\"z\":0.0169}},\"55a1cc\":{\"lock\":false,\"pos\":{\"x\":-20.6854,\"y\":1.6103,\"z\":-0.1589},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"5dbf9f\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0169,\"y\":179.9644,\"z\":0.0803}},\"67b662\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.08}},\"896136\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9694,\"z\":0.0803}},\"929e75\":{\"lock\":false,\"pos\":{\"x\":-27.5017,\"y\":1.6188,\"z\":-3.4612},\"rot\":{\"x\":0.0684,\"y\":135.0003,\"z\":0.0445}},\"a08ca6\":{\"lock\":false,\"pos\":{\"x\":-26.72,\"y\":1.6187,\"z\":-0.1747},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.279},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"a6deb8\":{\"lock\":false,\"pos\":{\"x\":-12.8992,\"y\":1.7102,\"z\":7.5718},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"b198c8\":{\"lock\":false,\"pos\":{\"x\":-3.922,\"y\":1.5614,\"z\":5.7517},\"rot\":{\"x\":359.9139,\"y\":270.0125,\"z\":0.0184}},\"bc76d7\":{\"lock\":false,\"pos\":{\"x\":-26.9092,\"y\":1.6168,\"z\":-7.5041},\"rot\":{\"x\":0.0799,\"y\":89.9998,\"z\":359.9831}},\"bfd8f6\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":0.0169}},\"c1ff41\":{\"lock\":false,\"pos\":{\"x\":-19.9987,\"y\":1.6083,\"z\":-3.8139},\"rot\":{\"x\":359.9554,\"y\":224.9997,\"z\":0.0685}},\"c26773\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":0.0169}},\"c4a174\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9989,\"z\":0.0169}},\"f06df7\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9988,\"z\":0.0169}},\"fd8c43\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -948138,6 +1003589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948156,9 +1003609,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Boundary Beyond'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "010761" }, { @@ -948186,6 +1003639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948201,12 +1003656,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22aed2" }, { @@ -948234,6 +1003690,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948262,7 +1003720,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "129": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -948270,7 +1003729,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2785": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -948278,12 +1003738,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -948310,6 +1003771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948325,12 +1003788,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03fa5a" }, { @@ -948358,6 +1003822,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948373,12 +1003839,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "93c195" }, { @@ -948406,6 +1003873,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948421,12 +1003890,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "737ecd" }, { @@ -948454,6 +1003924,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948469,12 +1003941,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -948502,6 +1003975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948517,12 +1003992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7fee93" }, { @@ -948550,6 +1004026,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948565,12 +1004043,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1461d8" }, { @@ -948598,6 +1004077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948613,12 +1004094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29e1ba" }, { @@ -948646,6 +1004128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948661,12 +1004145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8fef" }, { @@ -948694,6 +1004179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948709,12 +1004196,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4f854" }, { @@ -948742,6 +1004230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948757,12 +1004247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ce1b4" }, { @@ -948790,6 +1004281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948805,12 +1004298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e64c28" }, { @@ -948838,6 +1004332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948853,12 +1004349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2f948" } ], @@ -948889,6 +1004386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948907,9 +1004406,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b6840", "States": { "2": { @@ -948937,6 +1004436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -948955,9 +1004456,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -948985,6 +1004486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949003,9 +1004506,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -949035,6 +1004538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949050,12 +1004555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fce07" }, { @@ -949083,6 +1004589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949101,9 +1004609,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55a1cc", "States": { "2": { @@ -949131,6 +1004639,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949149,9 +1004659,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -949179,6 +1004689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949197,9 +1004709,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -949229,6 +1004741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949247,12 +1004761,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -949279,6 +1004794,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949294,12 +1004811,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c988f8" }, { @@ -949327,6 +1004845,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949342,12 +1004862,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e6717" } ], @@ -949378,6 +1004899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949393,12 +1004916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "67b662" }, { @@ -949426,6 +1004950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949444,9 +1004970,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -949474,6 +1005000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949492,9 +1005020,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -949522,6 +1005050,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949540,9 +1005070,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -949572,6 +1005102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949590,12 +1005122,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -949622,6 +1005155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949637,12 +1005172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdadde" }, { @@ -949670,6 +1005206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949685,12 +1005223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f3fa1" } ], @@ -949721,6 +1005260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949739,9 +1005280,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "929e75", "States": { "2": { @@ -949769,6 +1005310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949787,9 +1005330,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -949817,6 +1005360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949835,9 +1005380,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -949867,6 +1005412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949885,9 +1005432,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a08ca6", "States": { "2": { @@ -949915,6 +1005462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949933,9 +1005482,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -949963,6 +1005512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -949981,9 +1005532,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -950013,6 +1005564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950031,9 +1005584,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -950060,6 +1005613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950080,12 +1005635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -950112,6 +1005668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950127,12 +1005685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f5327" }, { @@ -950160,6 +1005719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950175,12 +1005736,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "54126a" }, { @@ -950208,6 +1005770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950223,12 +1005787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -950256,6 +1005821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950271,12 +1005838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34788c" } ], @@ -950307,6 +1005875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950322,12 +1005892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18f1d9" }, { @@ -950355,6 +1005926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950370,12 +1005943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6b3fc" }, { @@ -950403,6 +1005977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950411,9 +1005987,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -950440,6 +1006016,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950455,12 +1006033,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a92fa6" }, { @@ -950488,6 +1006067,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950503,12 +1006084,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d43edb" } ], @@ -950555,6 +1006137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950587,7 +1006171,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "129": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -950595,12 +1006180,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -950627,6 +1006213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950642,12 +1006230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "677b10" }, { @@ -950675,6 +1006264,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950690,12 +1006281,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c097d8" }, { @@ -950723,6 +1006315,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950738,12 +1006332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "71244a" }, { @@ -950771,6 +1006366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950786,12 +1006383,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8d52b" }, { @@ -950819,6 +1006417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950834,12 +1006434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd7bd2" }, { @@ -950867,6 +1006468,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950882,12 +1006485,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ae819" }, { @@ -950915,6 +1006519,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950930,12 +1006536,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e3a79d" }, { @@ -950963,6 +1006570,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -950978,12 +1006587,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0cec33" }, { @@ -951011,6 +1006621,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951026,12 +1006638,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29e1ba" }, { @@ -951059,6 +1006672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951074,12 +1006689,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b5d586" }, { @@ -951107,6 +1006723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951122,12 +1006740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f3c531" }, { @@ -951155,6 +1006774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951170,12 +1006791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a2616" }, { @@ -951203,6 +1006825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951218,12 +1006842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11e31d" }, { @@ -951251,6 +1006876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951266,12 +1006893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a17423" }, { @@ -951299,6 +1006927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951314,12 +1006944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72cf4d" }, { @@ -951347,6 +1006978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951362,12 +1006995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72603b" } ], @@ -951398,6 +1007032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951406,9 +1007042,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -951435,6 +1007071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951461,7 +1007099,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "130": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -951469,12 +1007108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -951501,6 +1007141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951516,12 +1007158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ff419" }, { @@ -951549,6 +1007192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951564,12 +1007209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "571733" }, { @@ -951597,6 +1007243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951612,12 +1007260,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -951645,6 +1007294,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951660,12 +1007311,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a02c" }, { @@ -951693,6 +1007345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951708,12 +1007362,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f4f54" }, { @@ -951741,6 +1007396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951756,12 +1007413,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "83df61" }, { @@ -951789,6 +1007447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951804,12 +1007464,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6a48e" }, { @@ -951837,6 +1007498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951852,12 +1007515,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89f4f6" }, { @@ -951885,6 +1007549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951900,12 +1007566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04e5d3" }, { @@ -951933,6 +1007600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -951948,12 +1007617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62cc1f" } ], @@ -951984,6 +1007654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952009,7 +1007681,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "131": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -952017,12 +1007690,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -952049,6 +1007723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952064,12 +1007740,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ff419" }, { @@ -952097,6 +1007774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952112,12 +1007791,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a02c" }, { @@ -952145,6 +1007825,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952160,12 +1007842,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ebadd" }, { @@ -952193,6 +1007876,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952208,12 +1007893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b107c" }, { @@ -952241,6 +1007927,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952256,12 +1007944,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfdbd5" }, { @@ -952289,6 +1007978,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952304,12 +1007995,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9542e8" }, { @@ -952337,6 +1008029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952352,12 +1008046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "571733" }, { @@ -952385,6 +1008080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952400,12 +1008097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "660874" }, { @@ -952433,6 +1008131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952448,12 +1008148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" } ], @@ -952484,6 +1008185,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952512,7 +1008215,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "130": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -952520,12 +1008224,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -952552,6 +1008257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952567,12 +1008274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -952600,6 +1008308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952615,12 +1008325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b7b" }, { @@ -952648,6 +1008359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952663,12 +1008376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df668b" }, { @@ -952696,6 +1008410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952711,12 +1008427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" }, { @@ -952744,6 +1008461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952759,12 +1008478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f4f54" }, { @@ -952792,6 +1008512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952807,12 +1008529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -952840,6 +1008563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952855,12 +1008580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "518ed8" }, { @@ -952888,6 +1008614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952903,12 +1008631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -952936,6 +1008665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952951,12 +1008682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6a48e" }, { @@ -952984,6 +1008716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -952999,12 +1008733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89f4f6" }, { @@ -953032,6 +1008767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953047,12 +1008784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04e5d3" }, { @@ -953080,6 +1008818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953095,12 +1008835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62cc1f" } ], @@ -953134,6 +1008875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953152,9 +1008895,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bc76d7", "States": { "2": { @@ -953182,6 +1008925,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953200,9 +1008945,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -953230,6 +1008975,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953248,9 +1008995,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -953280,6 +1009027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953295,12 +1009044,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bfd8f6" }, { @@ -953328,6 +1009078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953346,9 +1009098,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1ff41", "States": { "2": { @@ -953376,6 +1009128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953394,9 +1009148,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -953424,6 +1009178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953442,9 +1009198,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -953474,6 +1009230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953489,12 +1009247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c26773" }, { @@ -953522,6 +1009281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953537,12 +1009298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4a174" }, { @@ -953570,6 +1009332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953585,12 +1009349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f06df7" }, { @@ -953618,6 +1009383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953633,12 +1009400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd8c43" } ], @@ -953689,6 +1009457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953717,9 +1009487,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"02aa53\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6372,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9936,\"z\":0.0803}},\"061a07\":{\"lock\":false,\"pos\":{\"x\":-20.4536,\"y\":1.61,\"z\":-0.1113},\"rot\":{\"x\":0.0799,\"y\":89.9883,\"z\":359.9831}},\"07f90c\":{\"lock\":false,\"pos\":{\"x\":-27.1247,\"y\":1.6171,\"z\":-7.6321},\"rot\":{\"x\":359.9201,\"y\":270.0081,\"z\":0.0169}},\"0ef190\":{\"lock\":false,\"pos\":{\"x\":-23.6787,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9941,\"z\":0.0169}},\"1568bc\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.7022,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":0.0169}},\"187b63\":{\"lock\":false,\"pos\":{\"x\":-5.2163,\"y\":1.7408,\"z\":-5.0999},\"rot\":{\"x\":0.0169,\"y\":179.9892,\"z\":0.0802}},\"1f183b\":{\"lock\":false,\"pos\":{\"x\":-0.0422,\"y\":1.6336,\"z\":-4.8813},\"rot\":{\"x\":0.0168,\"y\":179.9948,\"z\":0.0803}},\"292569\":{\"lock\":false,\"pos\":{\"x\":-30.226,\"y\":1.6931,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.9972,\"z\":0.0169}},\"2a0b69\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7717,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.011,\"z\":180.0168}},\"34e74c\":{\"lock\":false,\"pos\":{\"x\":-33.506,\"y\":1.626,\"z\":-7.4641},\"rot\":{\"x\":359.9201,\"y\":270.002,\"z\":0.0169}},\"5789a0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0179,\"z\":359.9201}},\"6c4c60\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.998,\"z\":0.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0184,\"z\":359.92}},\"784ebd\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":0.0169}},\"7a95f6\":{\"lock\":false,\"pos\":{\"x\":-3.9866,\"y\":1.5827,\"z\":-14.6355},\"rot\":{\"x\":359.9197,\"y\":270.0305,\"z\":0.0168}},\"99909c\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0181,\"z\":359.9201}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"a5509c\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"adebd8\":{\"lock\":false,\"pos\":{\"x\":-27.4881,\"y\":1.621,\"z\":4.1396},\"rot\":{\"x\":359.9554,\"y\":225.0122,\"z\":0.0684}},\"ea713e\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0257,\"z\":0.0803}},\"f1a25d\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.001,\"z\":0.0169}},\"fbfaec\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.0056,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -953746,6 +1009516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953764,9 +1009536,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -953793,6 +1009565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953808,12 +1009582,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "891282" }, { @@ -953841,6 +1009616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953856,12 +1009633,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6cd01" }, { @@ -953889,6 +1009667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953904,12 +1009684,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c92d8" }, { @@ -953937,6 +1009718,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -953952,12 +1009735,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b9dbf" } ], @@ -954001,6 +1009785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954047,7 +1009833,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "124": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -954055,7 +1009842,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2726": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/", @@ -954063,12 +1009851,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -954095,6 +1009884,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954110,12 +1009901,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd287a" }, { @@ -954143,6 +1009935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954158,12 +1009952,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b06ff1" }, { @@ -954191,6 +1009986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954206,12 +1010003,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -954239,6 +1010037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954254,12 +1010054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "476433" }, { @@ -954287,6 +1010088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954302,12 +1010105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b124ef" }, { @@ -954335,6 +1010139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954350,12 +1010156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6793f" }, { @@ -954383,6 +1010190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954398,12 +1010207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" }, { @@ -954431,6 +1010241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954446,12 +1010258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -954479,6 +1010292,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954494,12 +1010309,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de1cd2" }, { @@ -954527,6 +1010343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954542,12 +1010360,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46af71" }, { @@ -954575,6 +1010394,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954590,12 +1010411,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e98498" }, { @@ -954623,6 +1010445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954638,12 +1010462,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "caabe8" }, { @@ -954671,6 +1010496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954686,12 +1010513,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -954719,6 +1010547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954734,12 +1010564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" }, { @@ -954767,6 +1010598,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954782,12 +1010615,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df668b" }, { @@ -954815,6 +1010649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954830,12 +1010666,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b7b" }, { @@ -954863,6 +1010700,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954878,12 +1010717,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f4f54" }, { @@ -954911,6 +1010751,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954926,12 +1010768,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62cc1f" }, { @@ -954959,6 +1010802,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -954974,12 +1010819,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04e5d3" }, { @@ -955007,6 +1010853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955022,12 +1010870,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89f4f6" }, { @@ -955055,6 +1010904,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955070,12 +1010921,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6a48e" }, { @@ -955103,6 +1010955,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955118,12 +1010972,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -955151,6 +1011006,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955166,12 +1011023,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd17ff" }, { @@ -955199,6 +1011057,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955214,12 +1011074,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e417e8" }, { @@ -955247,6 +1011108,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955262,12 +1011125,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "776222" }, { @@ -955295,6 +1011159,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955310,12 +1011176,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6e2b8" }, { @@ -955343,6 +1011210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955358,12 +1011227,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af5c41" }, { @@ -955391,6 +1011261,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955406,12 +1011278,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d1b30" }, { @@ -955439,6 +1011312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955454,12 +1011329,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e24635" }, { @@ -955487,6 +1011363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955502,12 +1011380,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" } ], @@ -955538,6 +1011417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955557,12 +1011438,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -955589,6 +1011471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955604,12 +1011488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35fe2f" }, { @@ -955637,6 +1011522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955652,12 +1011539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3d027" }, { @@ -955685,6 +1011573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955700,12 +1011590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0dc453" } ], @@ -955736,6 +1011627,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955760,12 +1011653,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -955792,6 +1011686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955807,12 +1011703,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c21ad7" }, { @@ -955840,6 +1011737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955855,12 +1011754,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14f8f1" }, { @@ -955888,6 +1011788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955903,12 +1011805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21cd56" }, { @@ -955936,6 +1011839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955951,12 +1011856,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1588b6" }, { @@ -955984,6 +1011890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -955999,12 +1011907,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7edfb0" }, { @@ -956032,6 +1011941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956047,12 +1011958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34409b" }, { @@ -956080,6 +1011992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956095,12 +1012009,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ee0f0" }, { @@ -956128,6 +1012043,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956143,12 +1012060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e59778" } ], @@ -956179,6 +1012097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956203,12 +1012123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -956235,6 +1012156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956250,12 +1012173,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d27333" }, { @@ -956283,6 +1012207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956298,12 +1012224,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "054826" }, { @@ -956331,6 +1012258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956346,12 +1012275,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f9aaf" }, { @@ -956379,6 +1012309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956394,12 +1012326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "926c99" }, { @@ -956427,6 +1012360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956442,12 +1012377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1a31dd" }, { @@ -956475,6 +1012411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956490,12 +1012428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8b7a2" }, { @@ -956523,6 +1012462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956538,12 +1012479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3757b7" }, { @@ -956571,6 +1012513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956586,12 +1012530,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "28ebe1" } ], @@ -956622,6 +1012567,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956646,12 +1012593,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -956678,6 +1012626,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956693,12 +1012643,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a69973" }, { @@ -956726,6 +1012677,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956741,12 +1012694,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "adcbb0" }, { @@ -956774,6 +1012728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956789,12 +1012745,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ffd6d" }, { @@ -956822,6 +1012779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956837,12 +1012796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7b446" }, { @@ -956870,6 +1012830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956885,12 +1012847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "029812" }, { @@ -956918,6 +1012881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956933,12 +1012898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "586028" }, { @@ -956966,6 +1012932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -956981,12 +1012949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a6d241" }, { @@ -957014,6 +1012983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957029,12 +1013000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e2806c" } ], @@ -957065,6 +1013037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957080,12 +1013054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6c4c60" }, { @@ -957113,6 +1013088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957131,9 +1013108,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Threads of Fate'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a95f6" }, { @@ -957161,6 +1013138,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957176,12 +1013155,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbfaec" }, { @@ -957209,6 +1013189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957227,9 +1013209,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "061a07", "States": { "2": { @@ -957257,6 +1013239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957275,9 +1013259,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -957305,6 +1013289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957323,9 +1013309,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -957355,6 +1013341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957373,9 +1013361,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -957403,6 +1013391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957421,9 +1013411,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -957451,6 +1013441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957469,9 +1013461,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -957501,6 +1013493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957516,12 +1013510,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5509c" }, { @@ -957549,6 +1013544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957564,12 +1013561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a25d" }, { @@ -957597,6 +1013595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957615,9 +1013615,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5789a0", "States": { "2": { @@ -957645,6 +1013645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957663,9 +1013665,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -957693,6 +1013695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957711,9 +1013715,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -957743,6 +1013747,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957761,9 +1013767,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "adebd8", "States": { "2": { @@ -957791,6 +1013797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957809,9 +1013817,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -957839,6 +1013847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957857,9 +1013867,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -957889,6 +1013899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957907,9 +1013919,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99909c", "States": { "2": { @@ -957937,6 +1013949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -957955,9 +1013969,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -957985,6 +1013999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958003,9 +1014019,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -958035,6 +1014051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958050,12 +1014068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "784ebd" }, { @@ -958083,6 +1014102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958098,12 +1014119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ef190" }, { @@ -958131,6 +1014153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958149,9 +1014173,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07f90c", "States": { "2": { @@ -958179,6 +1014203,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958197,9 +1014223,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -958227,6 +1014253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958245,9 +1014273,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -958277,6 +1014305,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958292,12 +1014322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "292569" }, { @@ -958325,6 +1014356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958343,9 +1014376,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34e74c", "States": { "2": { @@ -958373,6 +1014406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958391,9 +1014426,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -958421,6 +1014456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958439,9 +1014476,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -958471,6 +1014508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958486,12 +1014525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1568bc" } ], @@ -958542,6 +1014582,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958560,9 +1014602,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"115824\":{\"lock\":false,\"pos\":{\"x\":-12.3099,\"y\":1.6795,\"z\":7.5954},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"1ba19a\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0003,\"z\":0.0803}},\"3c7ec7\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7557,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0017,\"z\":180.0168}},\"493cb1\":{\"lock\":false,\"pos\":{\"x\":-3.9176,\"y\":1.5823,\"z\":-15.877},\"rot\":{\"x\":359.9197,\"y\":269.9936,\"z\":0.0168}},\"6aea4b\":{\"lock\":false,\"pos\":{\"x\":-3.8453,\"y\":1.6664,\"z\":10.3835},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"8f1f3c\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9961,\"z\":0.0168}},\"97335d\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6933,\"y\":1.5583,\"z\":14.2793},\"rot\":{\"x\":359.9551,\"y\":224.9978,\"z\":0.0687}},\"b1982f\":{\"lock\":false,\"pos\":{\"x\":-12.1766,\"y\":1.6688,\"z\":-14.398},\"rot\":{\"x\":0.0169,\"y\":179.9995,\"z\":180.0799}},\"c0ecac\":{\"lock\":false,\"pos\":{\"x\":-12.2234,\"y\":1.6708,\"z\":-7.7581},\"rot\":{\"x\":359.9201,\"y\":269.9925,\"z\":180.0169}},\"ff42ca\":{\"lock\":false,\"pos\":{\"x\":-2.7187,\"y\":1.664,\"z\":0.3792},\"rot\":{\"x\":0.017,\"y\":179.8649,\"z\":0.0802}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -958589,6 +1014631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958604,12 +1014648,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c0ecac" }, { @@ -958637,6 +1014682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958652,12 +1014699,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1982f" }, { @@ -958685,6 +1014733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958700,12 +1014750,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97335d" }, { @@ -958733,6 +1014784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958752,7 +1014805,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2786": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -958760,12 +1014814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -958792,6 +1014847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958807,12 +1014864,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0673f6" }, { @@ -958840,6 +1014898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958855,12 +1014915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "72be38" }, { @@ -958888,6 +1014949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958903,12 +1014966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e42c09" } ], @@ -958939,6 +1015003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -958965,7 +1015031,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2788": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -958973,7 +1015040,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "127": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/", @@ -958981,7 +1015049,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "131": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -958989,12 +1015058,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -959021,6 +1015091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959036,12 +1015108,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "964bf2" }, { @@ -959069,6 +1015142,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959084,12 +1015159,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43b8f7" }, { @@ -959117,6 +1015193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959132,12 +1015210,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a242fd" }, { @@ -959165,6 +1015244,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959180,12 +1015261,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "878051" }, { @@ -959213,6 +1015295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959228,12 +1015312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c7796" }, { @@ -959261,6 +1015346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959276,12 +1015363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b73a5" }, { @@ -959309,6 +1015397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959324,12 +1015414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab80bf" }, { @@ -959357,6 +1015448,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959372,12 +1015465,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "763f2b" }, { @@ -959405,6 +1015499,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959420,12 +1015516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -959453,6 +1015550,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959468,12 +1015567,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5b1e" } ], @@ -959504,6 +1015604,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959522,9 +1015624,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -959551,6 +1015653,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959571,12 +1015675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -959603,6 +1015708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959618,12 +1015725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -959651,6 +1015759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959666,12 +1015776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3bc36" }, { @@ -959699,6 +1015810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959714,12 +1015827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34788c" }, { @@ -959747,6 +1015861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959762,12 +1015878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f5327" } ], @@ -959814,6 +1015931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959857,7 +1015976,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "131": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -959865,7 +1015985,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "130": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -959873,7 +1015994,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2787": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -959881,7 +1016003,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -959889,12 +1016012,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -959921,6 +1016045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959936,12 +1016062,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "763f2b" }, { @@ -959969,6 +1016096,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -959984,12 +1016113,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85007f" }, { @@ -960017,6 +1016147,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960032,12 +1016164,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9989f2" }, { @@ -960065,6 +1016198,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960080,12 +1016215,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "894376" }, { @@ -960113,6 +1016249,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960128,12 +1016266,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "af5d2c" }, { @@ -960161,6 +1016300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960176,12 +1016317,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6550e9" }, { @@ -960209,6 +1016351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960224,12 +1016368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98a6eb" }, { @@ -960257,6 +1016402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960272,12 +1016419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05d368" }, { @@ -960305,6 +1016453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960320,12 +1016470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58ab68" }, { @@ -960353,6 +1016504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960368,12 +1016521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7d6b8" }, { @@ -960401,6 +1016555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960416,12 +1016572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8b917" }, { @@ -960449,6 +1016606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960464,12 +1016623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa161c" }, { @@ -960497,6 +1016657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960512,12 +1016674,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d682c" }, { @@ -960545,6 +1016708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960560,12 +1016725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "180783" }, { @@ -960593,6 +1016759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960608,12 +1016776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8fd9c" }, { @@ -960641,6 +1016810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960656,12 +1016827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e821da" }, { @@ -960689,6 +1016861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960704,12 +1016878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53458a" }, { @@ -960737,6 +1016912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960752,12 +1016929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4f854" }, { @@ -960785,6 +1016963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960800,12 +1016980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "70f9aa" }, { @@ -960833,6 +1017014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960848,12 +1017031,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8fef" }, { @@ -960881,6 +1017065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960896,12 +1017082,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a4243" }, { @@ -960929,6 +1017116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960944,12 +1017133,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "062575" }, { @@ -960977,6 +1017167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -960992,12 +1017184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f460e3" }, { @@ -961025,6 +1017218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961040,12 +1017235,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "632986" }, { @@ -961073,6 +1017269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961088,12 +1017286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -961121,6 +1017320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961136,12 +1017337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfda2a" }, { @@ -961169,6 +1017371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961184,12 +1017388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab80bf" } ], @@ -961220,6 +1017425,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961238,12 +1017445,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -961270,6 +1017478,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961285,12 +1017495,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61410b" }, { @@ -961318,6 +1017529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961333,12 +1017546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1893f1" } ], @@ -961369,6 +1017583,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961387,12 +1017603,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -961419,6 +1017636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961434,12 +1017653,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "178da9" }, { @@ -961467,6 +1017687,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961482,12 +1017704,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9e2e37" } ], @@ -961518,6 +1017741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961533,12 +1017758,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8f1f3c" }, { @@ -961566,6 +1017792,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961584,9 +1017812,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Heart of the Elders'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "493cb1" } ], @@ -961637,6 +1017865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961655,9 +1017885,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"121209\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0088,\"z\":0.0169}},\"1f68fb\":{\"lock\":false,\"pos\":{\"x\":-54.9973,\"y\":1.7324,\"z\":8.511},\"rot\":{\"x\":0.0169,\"y\":180.009,\"z\":0.0799}},\"20f554\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.002,\"z\":0.0169}},\"2fb6dc\":{\"lock\":false,\"pos\":{\"x\":-3.9281,\"y\":1.5824,\"z\":-15.5368},\"rot\":{\"x\":359.9197,\"y\":270.0274,\"z\":0.0168}},\"3dce5b\":{\"lock\":false,\"pos\":{\"x\":-55.0555,\"y\":1.7245,\"z\":-18.6656},\"rot\":{\"x\":0.0169,\"y\":180.0082,\"z\":0.0799}},\"3deaa9\":{\"lock\":false,\"pos\":{\"x\":-32.9161,\"y\":1.707,\"z\":26.6217},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"3f3f05\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0145,\"z\":0.0803}},\"412d82\":{\"lock\":false,\"pos\":{\"x\":0.5822,\"y\":1.3953,\"z\":-1.0302},\"rot\":{\"x\":359.9832,\"y\":0.0027,\"z\":359.9197}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.4629,\"y\":1.6112,\"z\":3.9167},\"rot\":{\"x\":359.9316,\"y\":315.0153,\"z\":359.9554}},\"80b566\":{\"lock\":false,\"pos\":{\"x\":-20.5734,\"y\":1.6091,\"z\":-3.8425},\"rot\":{\"x\":0.0446,\"y\":45.0002,\"z\":359.9316}},\"80ce22\":{\"lock\":false,\"pos\":{\"x\":-22.9044,\"y\":1.6773,\"z\":-26.6479},\"rot\":{\"x\":0.0799,\"y\":90,\"z\":359.9831}},\"8f462b\":{\"lock\":false,\"pos\":{\"x\":0.6305,\"y\":1.3961,\"z\":1.918},\"rot\":{\"x\":359.9832,\"y\":0.0003,\"z\":359.9197}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"a7cb09\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7877,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9976,\"z\":180.0168}},\"e9b3c5\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9989,\"z\":0.0168}},\"ed1363\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0022,\"z\":0.0169}},\"f893ca\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6145,\"z\":-0.03},\"rot\":{\"x\":0.0169,\"y\":179.9998,\"z\":0.0799}},\"f96416\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0296,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -961684,6 +1017914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961702,9 +1017934,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -961731,6 +1017963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961752,12 +1017986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -961784,6 +1018019,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961799,12 +1018036,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "896e92" }, { @@ -961832,6 +1018070,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961847,12 +1018087,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bef41" }, { @@ -961880,6 +1018121,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961895,12 +1018138,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2566f1" }, { @@ -961928,6 +1018172,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961943,12 +1018189,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18494c" }, { @@ -961976,6 +1018223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -961991,12 +1018240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b80a66" } ], @@ -962027,6 +1018277,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962042,12 +1018294,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8399dd" }, { @@ -962075,6 +1018328,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962095,12 +1018350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -962127,6 +1018383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962142,12 +1018400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bed6a" }, { @@ -962175,6 +1018434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962190,12 +1018451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5660fe" }, { @@ -962223,6 +1018485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962238,12 +1018502,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c0c10" }, { @@ -962271,6 +1018536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962286,12 +1018553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9bed6a" } ], @@ -962338,6 +1018606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962346,9 +1018616,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -962375,6 +1018645,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962390,12 +1018662,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f51f2d" }, { @@ -962423,6 +1018696,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962441,12 +1018716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -962473,6 +1018749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962488,12 +1018766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dc722" }, { @@ -962521,6 +1018800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962536,12 +1018817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4440de" } ], @@ -962572,6 +1018854,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962587,12 +1018871,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fa9e0" } ], @@ -962623,6 +1018908,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962631,9 +1018918,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -962660,6 +1018947,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962675,12 +1018964,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ed452" }, { @@ -962708,6 +1018998,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962726,12 +1019018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -962758,6 +1019051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962773,12 +1019068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dc722" }, { @@ -962806,6 +1019102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962821,12 +1019119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fa9e0" } ], @@ -962857,6 +1019156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962872,12 +1019173,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "508f85" } ], @@ -962908,6 +1019210,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -962957,7 +1019261,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -962965,12 +1019270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -962997,6 +1019303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963012,12 +1019320,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0fcf87" }, { @@ -963045,6 +1019354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963060,12 +1019371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b35444" }, { @@ -963093,6 +1019405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963108,12 +1019422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff0f15" }, { @@ -963141,6 +1019456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963156,12 +1019473,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e6edac" }, { @@ -963189,6 +1019507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963204,12 +1019524,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "621078" }, { @@ -963237,6 +1019558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963252,12 +1019575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "470a03" }, { @@ -963285,6 +1019609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963300,12 +1019626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a9b607" }, { @@ -963333,6 +1019660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963348,12 +1019677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "312d52" }, { @@ -963381,6 +1019711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963396,12 +1019728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0b1bb" }, { @@ -963429,6 +1019762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963444,12 +1019779,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "312d52" }, { @@ -963477,6 +1019813,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963492,12 +1019830,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "66f462" }, { @@ -963525,6 +1019864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963540,12 +1019881,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e32948" }, { @@ -963573,6 +1019915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963588,12 +1019932,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dea5d3" }, { @@ -963621,6 +1019966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963636,12 +1019983,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "41e5c9" }, { @@ -963669,6 +1020017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963684,12 +1020034,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dedf7d" }, { @@ -963717,6 +1020068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963732,12 +1020085,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "470d38" }, { @@ -963765,6 +1020119,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963780,12 +1020136,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8f268" }, { @@ -963813,6 +1020170,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963826,12 +1020185,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "260768" }, { @@ -963859,6 +1020219,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963872,12 +1020234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "da8001" }, { @@ -963905,6 +1020268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963918,12 +1020283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1a34d" }, { @@ -963951,6 +1020317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -963964,12 +1020332,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c05d" }, { @@ -963997,6 +1020366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964010,12 +1020381,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "18e09c" }, { @@ -964043,6 +1020415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964056,12 +1020430,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c40f57" }, { @@ -964089,6 +1020464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964102,12 +1020479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "aa3d47" }, { @@ -964135,6 +1020513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964148,12 +1020528,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -964181,6 +1020562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964194,12 +1020577,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -964227,6 +1020611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964240,12 +1020626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -964273,6 +1020660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964286,12 +1020675,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -964319,6 +1020709,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964332,12 +1020724,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "153bb1" }, { @@ -964365,6 +1020758,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964378,12 +1020773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7c5c91" }, { @@ -964411,6 +1020807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964424,12 +1020822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" }, { @@ -964457,6 +1020856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964470,12 +1020871,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -964503,6 +1020905,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964518,12 +1020922,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c1a8d" } ], @@ -964554,6 +1020959,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964573,12 +1020980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -964605,6 +1021013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964620,12 +1021030,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "caba36" }, { @@ -964653,6 +1021064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964668,12 +1021081,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "794903" }, { @@ -964701,6 +1021115,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964716,12 +1021132,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f68fb" } ], @@ -964752,6 +1021169,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964771,12 +1021190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -964803,6 +1021223,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964818,12 +1021240,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef8642" }, { @@ -964851,6 +1021274,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964866,12 +1021291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d1eec" }, { @@ -964899,6 +1021325,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964914,12 +1021342,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7347f2" } ], @@ -964950,6 +1021379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -964965,12 +1021396,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9b3c5" }, { @@ -964998,6 +1021430,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965016,9 +1021450,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The City of Archives'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "2fb6dc" }, { @@ -965046,6 +1021480,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965061,12 +1021497,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed1363" }, { @@ -965094,6 +1021531,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965112,9 +1021551,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -965142,6 +1021581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965160,9 +1021601,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -965190,6 +1021631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965208,9 +1021651,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -965240,6 +1021683,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965255,12 +1021700,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "121209" }, { @@ -965288,6 +1021734,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965303,12 +1021751,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "20f554" }, { @@ -965336,6 +1021785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965354,9 +1021805,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80b566", "States": { "2": { @@ -965384,6 +1021835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965402,9 +1021855,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -965432,6 +1021885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965450,9 +1021905,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -965482,6 +1021937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965500,9 +1021957,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f893ca", "States": { "2": { @@ -965530,6 +1021987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965548,9 +1022007,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -965578,6 +1022037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965596,9 +1022057,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -965628,6 +1022089,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965643,12 +1022106,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "80ce22" }, { @@ -965676,6 +1022140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965691,12 +1022157,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3dce5b" }, { @@ -965724,6 +1022191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965739,12 +1022208,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f68fb" }, { @@ -965772,6 +1022242,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965787,12 +1022259,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3deaa9" } ], @@ -965843,6 +1022316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965861,9 +1022336,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n {\r\n pos = {-0.7,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one counter 2\r\n {\r\n pos = {-0.52,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one xp 1\r\n {\r\n pos = {-0.517,0.1,-0.55},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 1\r\n {\r\n pos = {-0.274,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 2\r\n {\r\n pos = {-0.074,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two xp 1\r\n {\r\n pos = {-0.061,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 1\r\n {\r\n pos = {0.153,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 2\r\n {\r\n pos = {0.379,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three xp 1\r\n {\r\n pos = {0.38,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 1\r\n {\r\n pos = {0.614,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 2\r\n {\r\n pos = {0.82,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four xp 1\r\n {\r\n pos = {0.827,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Yig's Fury\r\n {\r\n pos = {0.097,0.1,0.88},\r\n size = 500,\r\n value = 0,\r\n hideBG = true\r\n },\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --Slot one player\r\n {\r\n pos = {-0.637,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one investigator\r\n {\r\n pos = {-0.637,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one story\r\n {\r\n pos = {-0.637,0.1,-0.25},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one Supplies\r\n {\r\n pos = {-0.637,0.1,0.05},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two player\r\n {\r\n pos = {-0.2,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two investigator\r\n {\r\n pos = {-0.2,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two story\r\n {\r\n pos = {-0.2,0.1,-0.25},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two supplies\r\n {\r\n pos = {-0.2,0.1,0.05},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three player\r\n {\r\n pos = {0.241,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three investigator\r\n {\r\n pos = {0.237,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three story\r\n {\r\n pos = {0.24,0.1,-0.25},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three supplies\r\n {\r\n pos = {0.24,0.1,0.05},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four player\r\n {\r\n pos = {0.671,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four investigator\r\n {\r\n pos = {0.671,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four story\r\n {\r\n pos = {0.671,0.1,-0.25},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four supplies\r\n {\r\n pos = {0.671,0.1,0.05},\r\n rows = 7,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes 1\r\n {\r\n pos = {-0.475,0.1,0.62},\r\n rows =12,\r\n width = 3200,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes 2\r\n {\r\n pos = {0.527,0.1,0.507},\r\n rows = 12,\r\n width = 3500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", "LuaScriptState": "{\"checkbox\":[],\"counter\":[{\"hideBG\":true,\"pos\":[-0.7,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.52,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.517,0.1,-0.55],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[-0.274,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.074,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.061,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.153,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.379,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.38,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.614,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.82,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.827,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.097,0.1,0.88],\"size\":500,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.25],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,0.05],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.25],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,0.05],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.241,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.237,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.24,0.1,-0.25],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.24,0.1,0.05],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.25],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,0.05],\"rows\":7,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[-0.475,0.1,0.62],\"rows\":12,\"value\":\"\",\"width\":3200},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.527,0.1,0.507],\"rows\":12,\"value\":\"\",\"width\":3500}]}", + "XmlUI": "", "GUID": "48b154", "States": { "2": { @@ -965891,6 +1022366,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965909,9 +1022386,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --1 checkbox\r\n {\r\n pos = {0.065,0.1,-0.867},\r\n size = 250,\r\n state = false\r\n },\r\n --2 checkbox\r\n {\r\n pos = {0.101,0.1,-0.764},\r\n size = 250,\r\n state = false\r\n },\r\n --3 checkbox\r\n {\r\n pos = {0.135,0.1,-0.669},\r\n size = 250,\r\n state = false\r\n },\r\n --4 checkbox\r\n {\r\n pos = {0.123,0.1,-0.57},\r\n size = 250,\r\n state = false\r\n },\r\n --5 checkbox\r\n {\r\n pos = {0.133,0.1,-0.483},\r\n size = 250,\r\n state = false\r\n },\r\n --6 checkbox\r\n {\r\n pos = {0.134,0.1,-0.387},\r\n size = 250,\r\n state = false\r\n },\r\n --7 checkbox\r\n {\r\n pos = {0.095,0.1,-0.303},\r\n size = 250,\r\n state = false\r\n },\r\n --8 checkbox\r\n {\r\n pos = {0.118,0.1,-0.2},\r\n size = 250,\r\n state = false\r\n },\r\n --9 checkbox\r\n {\r\n pos = {0.219,0.1,-0.099},\r\n size = 250,\r\n state = false\r\n },\r\n --10 checkbox\r\n {\r\n pos = {0.207,0.1,-0.008},\r\n size = 250,\r\n state = false\r\n },\r\n --11 checkbox\r\n {\r\n pos = {0.152,0.1,0.074},\r\n size = 250,\r\n state = false\r\n },\r\n --12 checkbox\r\n {\r\n pos = {0.139,0.1,0.164},\r\n size = 250,\r\n state = false\r\n },\r\n --13 checkbox\r\n {\r\n pos = {0.117,0.1,0.251},\r\n size = 250,\r\n state = false\r\n },\r\n --14 checkbox\r\n {\r\n pos = {0.098,0.1,0.347},\r\n size = 250,\r\n state = false\r\n },\r\n --15 checkbox\r\n {\r\n pos = {0.063,0.1,0.433},\r\n size = 250,\r\n state = false\r\n },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n\r\n --Campaign Notes\r\n {\r\n pos = {0.05,0.1,0.851},\r\n rows =5,\r\n width = 3800,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", "LuaScriptState": "{\"checkbox\":[{\"pos\":[0.065,0.1,-0.867],\"size\":250,\"state\":false},{\"pos\":[0.101,0.1,-0.764],\"size\":250,\"state\":false},{\"pos\":[0.135,0.1,-0.669],\"size\":250,\"state\":false},{\"pos\":[0.123,0.1,-0.57],\"size\":250,\"state\":false},{\"pos\":[0.133,0.1,-0.483],\"size\":250,\"state\":false},{\"pos\":[0.134,0.1,-0.387],\"size\":250,\"state\":false},{\"pos\":[0.095,0.1,-0.303],\"size\":250,\"state\":false},{\"pos\":[0.118,0.1,-0.2],\"size\":250,\"state\":false},{\"pos\":[0.219,0.1,-0.099],\"size\":250,\"state\":false},{\"pos\":[0.207,0.1,-0.008],\"size\":250,\"state\":false},{\"pos\":[0.152,0.1,0.074],\"size\":250,\"state\":false},{\"pos\":[0.139,0.1,0.164],\"size\":250,\"state\":false},{\"pos\":[0.117,0.1,0.251],\"size\":250,\"state\":false},{\"pos\":[0.098,0.1,0.347],\"size\":250,\"state\":false},{\"pos\":[0.063,0.1,0.433],\"size\":250,\"state\":false}],\"counter\":[],\"textbox\":[{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[0.05,0.1,0.851],\"rows\":5,\"value\":\"\",\"width\":3800}]}", + "XmlUI": "", "GUID": "353dc4" } } @@ -965941,6 +1022418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -965959,9 +1022438,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"10ce27\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7717,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0076,\"z\":180.0168}},\"30a2e4\":{\"lock\":false,\"pos\":{\"x\":-12.759,\"y\":1.6727,\"z\":7.598},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":180.0169}},\"340f04\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"4662da\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9961,\"z\":0.0168}},\"6ee3ce\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"88bd9e\":{\"lock\":false,\"pos\":{\"x\":-2.7207,\"y\":1.664,\"z\":0.3785},\"rot\":{\"x\":0.017,\"y\":179.883,\"z\":0.0802}},\"df31c5\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0008,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -965988,6 +1022467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966006,12 +1022487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -966038,6 +1022520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966053,12 +1022537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0bbb1e" }, { @@ -966086,6 +1022571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966101,12 +1022588,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0d3b97" } ], @@ -966137,6 +1022625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966155,12 +1022645,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -966187,6 +1022678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966202,12 +1022695,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2927d8" }, { @@ -966235,6 +1022729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966250,12 +1022746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89e433" } ], @@ -966286,6 +1022783,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966301,12 +1022800,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4662da" }, { @@ -966334,6 +1022834,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966380,7 +1022882,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2342": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -966388,7 +1022891,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -966396,7 +1022900,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "130": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -966404,7 +1022909,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "131": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -966412,7 +1022918,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "127": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/", @@ -966420,12 +1022927,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -966452,6 +1022960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966467,12 +1022977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a7539" }, { @@ -966500,6 +1023011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966515,12 +1023028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61dec3" }, { @@ -966548,6 +1023062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966563,12 +1023079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "906ef2" }, { @@ -966596,6 +1023113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966611,12 +1023130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b28aa" }, { @@ -966644,6 +1023164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966659,12 +1023181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "048d89" }, { @@ -966692,6 +1023215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966707,12 +1023232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b107c" }, { @@ -966740,6 +1023266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966755,12 +1023283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c025cd" }, { @@ -966788,6 +1023317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966803,12 +1023334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9542e8" }, { @@ -966836,6 +1023368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966851,12 +1023385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "660874" }, { @@ -966884,6 +1023419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966899,12 +1023436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ef7c7" }, { @@ -966932,6 +1023470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966947,12 +1023487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c71fb1" }, { @@ -966980,6 +1023521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -966995,12 +1023538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4f854" }, { @@ -967028,6 +1023572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967043,12 +1023589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8fef" }, { @@ -967076,6 +1023623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967091,12 +1023640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fbcc6" }, { @@ -967124,6 +1023674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967139,12 +1023691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7fd35" }, { @@ -967172,6 +1023725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967187,12 +1023742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0cb5" }, { @@ -967220,6 +1023776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967235,12 +1023793,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dd1d9" }, { @@ -967268,6 +1023827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967283,12 +1023844,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "084cff" }, { @@ -967316,6 +1023878,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967331,12 +1023895,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16ec42" }, { @@ -967364,6 +1023929,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967379,12 +1023946,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc2fb1" }, { @@ -967412,6 +1023980,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967427,12 +1023997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a4bf1" }, { @@ -967460,6 +1024031,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967475,12 +1024048,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c092e1" }, { @@ -967508,6 +1024082,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967523,12 +1024099,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cfc06" }, { @@ -967556,6 +1024133,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967571,12 +1024150,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3c278f" }, { @@ -967604,6 +1024184,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967619,12 +1024201,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "58ab68" }, { @@ -967652,6 +1024235,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967667,12 +1024252,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab80bf" }, { @@ -967700,6 +1024286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967715,12 +1024303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "54b136" }, { @@ -967748,6 +1024337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967763,12 +1024354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98a6eb" }, { @@ -967796,6 +1024388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967811,12 +1024405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05d368" }, { @@ -967844,6 +1024439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967859,12 +1024456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" } ], @@ -967895,6 +1024493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967913,9 +1024513,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -967942,6 +1024542,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -967962,12 +1024564,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -967994,6 +1024597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968009,12 +1024614,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "307d63" }, { @@ -968042,6 +1024648,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968057,12 +1024665,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f5327" }, { @@ -968090,6 +1024699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968105,12 +1024716,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -968138,6 +1024750,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968153,12 +1024767,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34788c" } ], @@ -968189,6 +1024804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968204,12 +1024821,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d00ab9" }, { @@ -968237,6 +1024855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968252,12 +1024872,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6b3fc" } ], @@ -968301,6 +1024922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968326,7 +1024949,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "130": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -968334,7 +1024958,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "131": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -968342,12 +1024967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -968374,6 +1025000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968389,12 +1025017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f68247" }, { @@ -968422,6 +1025051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968437,12 +1025068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab80bf" }, { @@ -968470,6 +1025102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968485,12 +1025119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a5cee7" }, { @@ -968518,6 +1025153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968533,12 +1025170,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -968566,6 +1025204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968581,12 +1025221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2a4bf1" }, { @@ -968614,6 +1025255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968629,12 +1025272,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "198394" }, { @@ -968662,6 +1025306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968677,12 +1025323,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a0365" }, { @@ -968710,6 +1025357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968725,12 +1025374,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7216f5" }, { @@ -968758,6 +1025408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968773,12 +1025425,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f759d9" } ], @@ -968809,6 +1025462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968824,12 +1025479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ee3ce" } ], @@ -968880,6 +1025536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968898,9 +1025556,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"32b13c\":{\"lock\":false,\"pos\":{\"x\":-3.922,\"y\":1.4036,\"z\":5.7517},\"rot\":{\"x\":359.9197,\"y\":270.0125,\"z\":0.0168}},\"459d60\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0198,\"z\":0.0803}},\"594b02\":{\"lock\":false,\"pos\":{\"x\":-17.1177,\"y\":1.6771,\"z\":-0.0277},\"rot\":{\"x\":359.9201,\"y\":270.0425,\"z\":0.0168}},\"6dc72a\":{\"lock\":false,\"pos\":{\"x\":-3.8603,\"y\":1.5825,\"z\":-14.7527},\"rot\":{\"x\":359.9197,\"y\":270.0045,\"z\":0.0168}},\"8dd6ee\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9981,\"z\":0.0803}},\"8eca57\":{\"lock\":false,\"pos\":{\"x\":-13.0966,\"y\":1.6849,\"z\":7.4101},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"9c631d\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6939,\"y\":1.5583,\"z\":14.2736},\"rot\":{\"x\":359.9551,\"y\":224.9988,\"z\":0.0687}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -968927,6 +1025585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968942,12 +1025602,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "594b02" }, { @@ -968975,6 +1025636,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -968997,7 +1025660,8 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -969005,12 +1025669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -969037,6 +1025702,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969052,12 +1025719,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbb723" }, { @@ -969085,6 +1025753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969100,12 +1025770,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -969133,6 +1025804,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969148,12 +1025821,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "623fb1" }, { @@ -969181,6 +1025855,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969196,12 +1025872,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9445f" }, { @@ -969229,6 +1025906,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969244,12 +1025923,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5db6b7" }, { @@ -969277,6 +1025957,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969292,12 +1025974,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59695a" } ], @@ -969328,6 +1026011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969347,12 +1026032,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -969379,6 +1026065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969394,12 +1026082,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bc8a2" }, { @@ -969427,6 +1026116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969442,12 +1026133,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b22648" }, { @@ -969475,6 +1026167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969490,12 +1026184,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49a6b7" } ], @@ -969526,6 +1026221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969534,9 +1026231,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -969563,6 +1026260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969601,7 +1026300,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -969609,7 +1026309,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2604": { "FaceURL": "https://i.imgur.com/4vUPeDS.jpg", @@ -969617,12 +1026318,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -969649,6 +1026351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969664,12 +1026368,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2f948" }, { @@ -969697,6 +1026402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969712,12 +1026419,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -969745,6 +1026453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969760,12 +1026470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29e1ba" }, { @@ -969793,6 +1026504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969808,12 +1026521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c388f" }, { @@ -969841,6 +1026555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969856,12 +1026572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ae819" }, { @@ -969889,6 +1026606,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969904,12 +1026623,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f4f54" }, { @@ -969937,6 +1026657,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -969952,12 +1026674,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7d2583" }, { @@ -969985,6 +1026708,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970000,12 +1026725,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62cc1f" }, { @@ -970033,6 +1026759,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970048,12 +1026776,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04e5d3" }, { @@ -970081,6 +1026810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970096,12 +1026827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89f4f6" }, { @@ -970129,6 +1026861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970144,12 +1026878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6a48e" }, { @@ -970177,6 +1026912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970192,12 +1026929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -970225,6 +1026963,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970240,12 +1026980,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "577ace" }, { @@ -970273,6 +1027014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970288,12 +1027031,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4dfc1c" }, { @@ -970321,6 +1027065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970336,12 +1027082,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc5c21" }, { @@ -970369,6 +1027116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970384,12 +1027133,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "35d4c5" }, { @@ -970417,6 +1027167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970432,12 +1027184,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b9445f" }, { @@ -970465,6 +1027218,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970480,12 +1027235,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46f30b" }, { @@ -970513,6 +1027269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970528,12 +1027286,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bb510" }, { @@ -970561,6 +1027320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970576,12 +1027337,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bcc344" }, { @@ -970609,6 +1027371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970624,12 +1027388,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "abd75a" }, { @@ -970657,6 +1027422,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970672,12 +1027439,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" } ], @@ -970708,6 +1027476,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970730,12 +1027500,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -970762,6 +1027533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970777,12 +1027550,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ef7c7" }, { @@ -970810,6 +1027584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970825,12 +1027601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "906ef2" }, { @@ -970858,6 +1027635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970873,12 +1027652,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -970906,6 +1027686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970921,12 +1027703,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b28aa" }, { @@ -970954,6 +1027737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -970969,12 +1027754,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61dec3" }, { @@ -971002,6 +1027788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971017,12 +1027805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a7539" } ], @@ -971053,6 +1027842,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971075,12 +1027866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -971107,6 +1027899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971122,12 +1027916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6f5b7b" }, { @@ -971155,6 +1027950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971170,12 +1027967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df668b" }, { @@ -971203,6 +1028001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971218,12 +1028018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "159f90" }, { @@ -971251,6 +1028052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971266,12 +1028069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70e63" }, { @@ -971299,6 +1028103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971314,12 +1028120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4072d7" }, { @@ -971347,6 +1028154,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971362,12 +1028171,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f0f8b" } ], @@ -971401,6 +1028211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971419,9 +1028231,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -971448,6 +1028260,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971466,12 +1028280,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -971498,6 +1028313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971513,12 +1028330,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89f177" }, { @@ -971546,6 +1028364,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971561,12 +1028381,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f2934" } ], @@ -971597,6 +1028418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971612,12 +1028435,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbfc9c" }, { @@ -971645,6 +1028469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971667,12 +1028493,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -971699,6 +1028526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971714,12 +1028543,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6d845" }, { @@ -971747,6 +1028577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971762,12 +1028594,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b6d9c" }, { @@ -971795,6 +1028628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971810,12 +1028645,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "353475" }, { @@ -971843,6 +1028679,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971858,12 +1028696,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "512f93" }, { @@ -971891,6 +1028730,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971906,12 +1028747,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "555dff" }, { @@ -971939,6 +1028781,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -971954,12 +1028798,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e6245" } ], @@ -971990,6 +1028835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972005,12 +1028852,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ff610" }, { @@ -972038,6 +1028886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972053,12 +1028903,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eeff54" }, { @@ -972086,6 +1028937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972101,12 +1028954,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7727b0" }, { @@ -972134,6 +1028988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972149,12 +1029005,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f1430" } ], @@ -972198,6 +1029055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972213,12 +1029072,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c631d" }, { @@ -972246,6 +1029106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972266,12 +1029128,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -972298,6 +1029161,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972313,12 +1029178,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebb16e" }, { @@ -972346,6 +1029212,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972361,12 +1029229,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "716efa" }, { @@ -972394,6 +1029263,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972409,12 +1029280,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0369d" }, { @@ -972442,6 +1029314,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972457,12 +1029331,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f17c8" } ], @@ -972493,6 +1029368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972511,9 +1029388,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Shattered Aeons'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dc72a" } ], @@ -972564,6 +1029441,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972582,9 +1029461,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"089fc0\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.825,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9919,\"z\":180.0169}},\"2da146\":{\"lock\":false,\"pos\":{\"x\":-5.5444,\"y\":1.7335,\"z\":-10.4706},\"rot\":{\"x\":3.5279,\"y\":269.9998,\"z\":0.017}},\"34eda1\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6555,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"7aa4e3\":{\"lock\":false,\"pos\":{\"x\":-3.8408,\"y\":1.5825,\"z\":-14.6727},\"rot\":{\"x\":359.9197,\"y\":270.0325,\"z\":0.0168}},\"8bdaaa\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6606,\"z\":0.3733},\"rot\":{\"x\":0.0169,\"y\":179.9701,\"z\":0.0803}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"dd61f1\":{\"lock\":false,\"pos\":{\"x\":-3.9579,\"y\":1.6339,\"z\":-10.4412},\"rot\":{\"x\":359.9163,\"y\":269.9963,\"z\":0.0158}},\"f7ca01\":{\"lock\":false,\"pos\":{\"x\":-12.9526,\"y\":1.6739,\"z\":9.0683},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"feb7ac\":{\"lock\":false,\"pos\":{\"x\":-12.9247,\"y\":1.6608,\"z\":11.7984},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -972611,6 +1029490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972626,12 +1029507,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f7ca01" }, { @@ -972659,6 +1029541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972684,12 +1029568,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -972716,6 +1029601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972731,12 +1029618,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c870e9" }, { @@ -972764,6 +1029652,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972779,12 +1029669,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4e4d3" }, { @@ -972812,6 +1029703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972827,12 +1029720,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2c8131" }, { @@ -972860,6 +1029754,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972875,12 +1029771,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1cc0b2" }, { @@ -972908,6 +1029805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972923,12 +1029822,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a0bede" }, { @@ -972956,6 +1029856,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -972971,12 +1029873,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f639f9" }, { @@ -973004,6 +1029907,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973019,12 +1029924,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b12cf" }, { @@ -973052,6 +1029958,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973067,12 +1029975,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef24b4" }, { @@ -973100,6 +1030009,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973115,12 +1030026,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d59e1" } ], @@ -973151,6 +1030063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973169,9 +1030083,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -973198,6 +1030112,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973216,9 +1030132,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53f6b5" }, { @@ -973246,6 +1030162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973266,12 +1030184,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -973298,6 +1030217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973313,12 +1030234,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f5327" }, { @@ -973346,6 +1030268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973361,12 +1030285,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -973394,6 +1030319,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973409,12 +1030336,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34788c" }, { @@ -973442,6 +1030370,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973457,12 +1030387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d3659f" } ], @@ -973493,6 +1030424,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973508,12 +1030441,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1be04" }, { @@ -973541,6 +1030475,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973556,12 +1030492,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d1206b" }, { @@ -973589,6 +1030526,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973604,12 +1030543,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6b3fc" } ], @@ -973653,6 +1030593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973709,7 +1030651,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "136": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -973717,7 +1030660,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2785": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -973725,7 +1030669,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "137": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -973733,7 +1030678,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2740": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/", @@ -973741,7 +1030687,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "135": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -973749,12 +1030696,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -973781,6 +1030729,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973796,12 +1030746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a7539" }, { @@ -973829,6 +1030780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973844,12 +1030797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61dec3" }, { @@ -973877,6 +1030831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973892,12 +1030848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76f023" }, { @@ -973925,6 +1030882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973940,12 +1030899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "906ef2" }, { @@ -973973,6 +1030933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -973988,12 +1030950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b28aa" }, { @@ -974021,6 +1030984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974036,12 +1031001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cc86ff" }, { @@ -974069,6 +1031035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974084,12 +1031052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b107c" }, { @@ -974117,6 +1031086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974132,12 +1031103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "39cc46" }, { @@ -974165,6 +1031137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974180,12 +1031154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16ec42" }, { @@ -974213,6 +1031188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974228,12 +1031205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -974261,6 +1031239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974276,12 +1031256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4f854" }, { @@ -974309,6 +1031290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974324,12 +1031307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8fef" }, { @@ -974357,6 +1031341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974372,12 +1031358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2de72d" }, { @@ -974405,6 +1031392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974420,12 +1031409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "085f52" }, { @@ -974453,6 +1031443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974468,12 +1031460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dd1d9" }, { @@ -974501,6 +1031494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974516,12 +1031511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50b857" }, { @@ -974549,6 +1031545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974564,12 +1031562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "082086" }, { @@ -974597,6 +1031596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974612,12 +1031613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7fd35" }, { @@ -974645,6 +1031647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974660,12 +1031664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0cb5" }, { @@ -974693,6 +1031698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974708,12 +1031715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "646c0e" }, { @@ -974741,6 +1031749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974756,12 +1031766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fbcc6" }, { @@ -974789,6 +1031800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974804,12 +1031817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "919da4" }, { @@ -974837,6 +1031851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974852,12 +1031868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ef7c7" }, { @@ -974885,6 +1031902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974900,12 +1031919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "660874" }, { @@ -974933,6 +1031953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974948,12 +1031970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9542e8" }, { @@ -974981,6 +1032004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -974996,12 +1032021,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b00a0" }, { @@ -975029,6 +1032055,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975044,12 +1032072,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "632986" }, { @@ -975077,6 +1032106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975092,12 +1032123,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bc688" }, { @@ -975125,6 +1032157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975140,12 +1032174,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7d6b8" }, { @@ -975173,6 +1032208,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975188,12 +1032225,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8b917" }, { @@ -975221,6 +1032259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975236,12 +1032276,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d4479" }, { @@ -975269,6 +1032310,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975284,12 +1032327,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd44d1" }, { @@ -975317,6 +1032361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975332,12 +1032378,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e75e4c" }, { @@ -975365,6 +1032412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975380,12 +1032429,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4f8c3" }, { @@ -975413,6 +1032463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975428,12 +1032480,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a1b639" }, { @@ -975461,6 +1032514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975476,12 +1032531,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0e4387" }, { @@ -975509,6 +1032565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975524,12 +1032582,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae8867" }, { @@ -975557,6 +1032616,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975572,12 +1032633,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "be7bde" }, { @@ -975605,6 +1032667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975620,12 +1032684,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "766633" }, { @@ -975653,6 +1032718,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975668,12 +1032735,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5b1e" } ], @@ -975704,6 +1032772,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975727,12 +1032797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -975759,6 +1032830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975774,12 +1032847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eefdee" }, { @@ -975807,6 +1032881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975822,12 +1032898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "05dbc3" }, { @@ -975855,6 +1032932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975870,12 +1032949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd6405" }, { @@ -975903,6 +1032983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975918,12 +1033000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c2af87" }, { @@ -975951,6 +1033034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -975966,12 +1033051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7275cb" }, { @@ -975999,6 +1033085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976014,12 +1033102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381f6" }, { @@ -976047,6 +1033136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976062,12 +1033153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56b578" } ], @@ -976098,6 +1033190,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976113,12 +1033207,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34eda1" }, { @@ -976146,6 +1033241,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -976160,12 +1033257,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {0,0,0,98}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,1.45},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1, y=1, z=1},\r\n font_size=350,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "dd61f1" }, { @@ -976193,6 +1033291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -976207,12 +1033307,13 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {0,0,0,98}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,1.45},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1, y=1, z=1},\r\n font_size=350,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "2da146" }, { @@ -976240,6 +1033341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976258,9 +1033361,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Depths of Yoth'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "7aa4e3" } ], @@ -976311,6 +1033414,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976329,9 +1033434,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"39c8c7\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9932,\"z\":0.0803}},\"6811b1\":{\"lock\":false,\"pos\":{\"x\":-12.8423,\"y\":1.6781,\"z\":7.602},\"rot\":{\"x\":359.9201,\"y\":270.0317,\"z\":180.0168}},\"7ea307\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7664,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9897,\"z\":180.0169}},\"a1b7d3\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9988,\"z\":0.0803}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6855,\"y\":1.5583,\"z\":14.2799},\"rot\":{\"x\":359.9551,\"y\":224.9958,\"z\":0.0687}},\"ac5f51\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4366},\"rot\":{\"x\":359.9197,\"y\":270.0039,\"z\":0.0168}},\"c286ca\":{\"lock\":false,\"pos\":{\"x\":-3.8394,\"y\":1.5825,\"z\":-14.9056},\"rot\":{\"x\":359.9197,\"y\":270.0045,\"z\":0.0168}},\"cf966e\":{\"lock\":false,\"pos\":{\"x\":-12.8747,\"y\":1.6695,\"z\":-15.3625},\"rot\":{\"x\":359.9201,\"y\":269.9698,\"z\":180.0169}},\"e5f222\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -976358,6 +1033463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976373,12 +1033480,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf966e" }, { @@ -976406,6 +1033514,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976421,12 +1033531,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e5f222" }, { @@ -976454,6 +1033565,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976480,7 +1033593,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2785": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/", @@ -976488,7 +1033602,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -976496,12 +1033611,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -976528,6 +1033644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976543,12 +1033661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47a8eb" }, { @@ -976576,6 +1033695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976591,12 +1033712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "959b4f" }, { @@ -976624,6 +1033746,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976639,12 +1033763,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3615aa" }, { @@ -976672,6 +1033797,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976687,12 +1033814,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fbe6e8" }, { @@ -976720,6 +1033848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976735,12 +1033865,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43dc89" }, { @@ -976768,6 +1033899,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976783,12 +1033916,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fbcc6" }, { @@ -976816,6 +1033950,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976831,12 +1033967,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c092e1" }, { @@ -976864,6 +1034001,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976879,12 +1034018,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -976912,6 +1034052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976927,12 +1034069,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8a4a35" }, { @@ -976960,6 +1034103,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -976975,12 +1034120,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d338b7" } ], @@ -977011,6 +1034157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977056,7 +1034204,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -977064,12 +1034213,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -977096,6 +1034246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977111,12 +1034263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4f854" }, { @@ -977144,6 +1034297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977159,12 +1034314,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -977192,6 +1034348,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977207,12 +1034365,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -977240,6 +1034399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977255,12 +1034416,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -977288,6 +1034450,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977303,12 +1034467,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6dd1d9" }, { @@ -977336,6 +1034501,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977351,12 +1034518,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e0cb5" }, { @@ -977384,6 +1034552,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977399,12 +1034569,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fdae0" }, { @@ -977432,6 +1034603,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977447,12 +1034620,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16ec42" }, { @@ -977480,6 +1034654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977495,12 +1034671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "433337" }, { @@ -977528,6 +1034705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977543,12 +1034722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb767b" }, { @@ -977576,6 +1034756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977591,12 +1034773,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc2fb1" }, { @@ -977624,6 +1034807,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977639,12 +1034824,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26d7ee" }, { @@ -977672,6 +1034858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977687,12 +1034875,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ae819" }, { @@ -977720,6 +1034909,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977735,12 +1034926,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e20708" }, { @@ -977768,6 +1034960,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977783,12 +1034977,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bdf6d" }, { @@ -977816,6 +1035011,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977831,12 +1035028,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8fef" }, { @@ -977864,6 +1035062,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977879,12 +1035079,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b2f948" }, { @@ -977912,6 +1035113,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977927,12 +1035130,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29e1ba" }, { @@ -977960,6 +1035164,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -977975,12 +1035181,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b107c" }, { @@ -978008,6 +1035215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978023,12 +1035232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e9aa9" }, { @@ -978056,6 +1035266,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978071,12 +1035283,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9542e8" }, { @@ -978104,6 +1035317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978119,12 +1035334,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "660874" }, { @@ -978152,6 +1035368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978167,12 +1035385,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1fab82" }, { @@ -978200,6 +1035419,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978215,12 +1035436,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ef7c7" }, { @@ -978248,6 +1035470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978263,12 +1035487,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a7539" }, { @@ -978296,6 +1035521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978311,12 +1035538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61dec3" }, { @@ -978344,6 +1035572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978359,12 +1035589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "906ef2" }, { @@ -978392,6 +1035623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978407,12 +1035640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b28aa" }, { @@ -978440,6 +1035674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978455,12 +1035691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" } ], @@ -978491,6 +1035728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978509,9 +1035748,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -978538,6 +1035777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978553,12 +1035794,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c6b3fc" }, { @@ -978586,6 +1035828,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978601,12 +1035845,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "89a5b3" }, { @@ -978634,6 +1035879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978654,12 +1035901,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -978686,6 +1035934,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978701,12 +1035951,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -978734,6 +1035985,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978749,12 +1036002,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f5327" }, { @@ -978782,6 +1036036,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978797,12 +1036053,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34788c" }, { @@ -978830,6 +1036087,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978845,12 +1036104,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a23736" } ], @@ -978897,6 +1036157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978916,12 +1036178,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -978948,6 +1036211,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -978963,12 +1036228,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d207f8" }, { @@ -978996,6 +1036262,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979011,12 +1036279,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae522c" }, { @@ -979044,6 +1036313,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979059,12 +1036330,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3065a4" } ], @@ -979095,6 +1036367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979113,12 +1036387,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -979145,6 +1036420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979160,12 +1036437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "964bf2" }, { @@ -979193,6 +1036471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979208,12 +1036488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2376d1" } ], @@ -979244,6 +1036525,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979262,9 +1036545,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Shattered Aeons'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "c286ca" }, { @@ -979292,6 +1036575,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979307,12 +1036592,13 @@ "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ac5f51" } ], @@ -979363,6 +1036649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979381,9 +1036669,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0ec5b4\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9949,\"z\":0.0803}},\"2ada4f\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9967,\"z\":0.0169}},\"3b6513\":{\"lock\":false,\"pos\":{\"x\":-12.3571,\"y\":1.6774,\"z\":7.4662},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"47909c\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7184,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9958,\"z\":180.0168}},\"7f1614\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0032,\"z\":0.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"b1982f\":{\"lock\":false,\"pos\":{\"x\":-11.8428,\"y\":1.6685,\"z\":-13.8781},\"rot\":{\"x\":0.0169,\"y\":180.0139,\"z\":180.0799}},\"e95200\":{\"lock\":false,\"pos\":{\"x\":-3.9363,\"y\":1.5826,\"z\":-14.9317},\"rot\":{\"x\":359.9197,\"y\":270.0018,\"z\":0.0168}},\"f67ad1\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -979410,6 +1036698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979436,7 +1036726,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "1299": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/", @@ -979444,12 +1036735,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -979476,6 +1036768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979491,12 +1036785,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -979524,6 +1036819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979539,12 +1036836,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "996dbb" }, { @@ -979572,6 +1036870,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979587,12 +1036887,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "746983" }, { @@ -979620,6 +1036921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979635,12 +1036938,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9b2074" }, { @@ -979668,6 +1036972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979683,12 +1036989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ec75c" }, { @@ -979716,6 +1037023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979731,12 +1037040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b9b1a" }, { @@ -979764,6 +1037074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979779,12 +1037091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90ed0e" }, { @@ -979812,6 +1037125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979827,12 +1037142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "227273" }, { @@ -979860,6 +1037176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979875,12 +1037193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8b917" }, { @@ -979908,6 +1037227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979923,12 +1037244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ca2654" } ], @@ -979959,6 +1037281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -979974,12 +1037298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ada4f" }, { @@ -980007,6 +1037332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980022,12 +1037349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f1614" }, { @@ -980055,6 +1037383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980073,9 +1037403,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'The Forgotten Age'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "e95200" }, { @@ -980103,6 +1037433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980121,12 +1037453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -980153,6 +1037486,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980168,12 +1037503,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9a2bf1" }, { @@ -980201,6 +1037537,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980216,12 +1037554,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f7d9a" } ], @@ -980252,6 +1037591,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980272,12 +1037613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -980304,6 +1037646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980319,12 +1037663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "54ef29" }, { @@ -980352,6 +1037697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980367,12 +1037714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "79390e" }, { @@ -980400,6 +1037748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980415,12 +1037765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "487d1f" }, { @@ -980448,6 +1037799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980463,12 +1037816,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b77109" } ], @@ -980499,6 +1037853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980535,7 +1037891,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -980543,12 +1037900,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -980575,6 +1037933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980590,12 +1037950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e7d6b8" }, { @@ -980623,6 +1037984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980638,12 +1038001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cfda2a" }, { @@ -980671,6 +1038035,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980686,12 +1038052,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d595ee" }, { @@ -980719,6 +1038086,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980734,12 +1038103,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b4f854" }, { @@ -980767,6 +1038137,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980782,12 +1038154,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0f4c0" }, { @@ -980815,6 +1038188,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980830,12 +1038205,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "062575" }, { @@ -980863,6 +1038239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980878,12 +1038256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "74a02c" }, { @@ -980911,6 +1038290,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980926,12 +1038307,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "571733" }, { @@ -980959,6 +1038341,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -980974,12 +1038358,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5b1e" }, { @@ -981007,6 +1038392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981022,12 +1038409,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8e8fef" }, { @@ -981055,6 +1038443,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981070,12 +1038460,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f460e3" }, { @@ -981103,6 +1038494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981118,12 +1038511,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "632986" }, { @@ -981151,6 +1038545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981166,12 +1038562,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa161c" }, { @@ -981199,6 +1038596,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981214,12 +1038613,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "53458a" }, { @@ -981247,6 +1038647,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981262,12 +1038664,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1ff419" }, { @@ -981295,6 +1038698,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981310,12 +1038715,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd0a26" }, { @@ -981343,6 +1038749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981358,12 +1038766,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "180783" }, { @@ -981391,6 +1038800,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981406,12 +1038817,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1921c5" }, { @@ -981439,6 +1038851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981454,12 +1038868,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -981487,6 +1038902,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981502,12 +1038919,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61e841" } ], @@ -981538,6 +1038956,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981556,9 +1038976,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -981585,6 +1039005,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981605,12 +1039027,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -981637,6 +1039060,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981652,12 +1039077,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34788c" }, { @@ -981685,6 +1039111,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981700,12 +1039128,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "68fd1b" }, { @@ -981733,6 +1039162,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981748,12 +1039179,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -981781,6 +1039213,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981796,12 +1039230,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1f5327" } ], @@ -981832,6 +1039267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -981854,12 +1039291,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -981886,6 +1039324,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": true, @@ -981901,12 +1039341,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a7539" }, { @@ -981934,6 +1039375,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": true, @@ -981949,12 +1039392,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "906ef2" }, { @@ -981982,6 +1039426,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": true, @@ -981997,12 +1039443,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b28aa" }, { @@ -982030,6 +1039477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": true, @@ -982045,12 +1039494,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -982078,6 +1039528,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": true, @@ -982093,12 +1039545,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ef7c7" }, { @@ -982126,6 +1039579,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": false, "Sticky": true, "Tooltip": true, @@ -982141,12 +1039596,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61dec3" } ], @@ -982177,6 +1039633,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -982192,12 +1039650,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b9dbf" }, { @@ -982225,6 +1039684,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -982240,12 +1039701,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73d855" }, { @@ -982273,6 +1039735,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -982292,7 +1039756,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "122": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/", @@ -982300,12 +1039765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -982332,6 +1039798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -982347,12 +1039815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "866eba" }, { @@ -982380,6 +1039849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -982395,12 +1039866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17871b" }, { @@ -982428,6 +1039900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -982443,12 +1039917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9eb622" } ], @@ -982495,6 +1039970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -982510,12 +1039987,13 @@ "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1982f" } ], @@ -982569,6 +1040047,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": false, @@ -982583,43504 +1040063,24 @@ "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 5.0, + "StandUp": false, "Stackable": false } }, - "XmlUI": "", "LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {1,1,1,95}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend", "LuaScriptState": "[true,0]", + "XmlUI": "", "GUID": "1235d9" }, { "Name": "Custom_Model_Bag", "Transform": { - "posX": 51.6523857, - "posY": 1.40532446, - "posZ": -27.8698082, + "posX": 32.2999954, + "posY": 1.44891191, + "posZ": 28.5301933, "rotX": 359.920135, - "rotY": 269.99884, - "rotZ": 0.01687465, - "scaleX": 1.0, - "scaleY": 0.139652729, - "scaleZ": 1.0 - }, - "Nickname": "The Circle Undone", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517669843863/DC0750A38111062909FEDA1BC20685895A574A54/", - "NormalURL": "", - "ColliderURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CustomShader": { - "SpecularColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "SpecularIntensity": 0.0, - "SpecularSharpness": 2.0, - "FresnelStrength": 0.0 - }, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 4\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={1.5,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-1.2,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-4,5,6}, rotation={0,0,0}, height=500, width=1000,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1.35,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1.25,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-6,1,0}, rotation={0,90,0}, height=500, width=1200,\r\n-- font_size=350, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", - "LuaScriptState": "{\"ml\":{\"0fad66\":{\"lock\":false,\"pos\":{\"x\":12.2492,\"y\":1.4562,\"z\":-28.0139},\"rot\":{\"x\":359.9201,\"y\":269.9982,\"z\":0.0169}},\"1e45e8\":{\"lock\":false,\"pos\":{\"x\":12.2498,\"y\":1.4656,\"z\":3.9864},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"20f70a\":{\"lock\":false,\"pos\":{\"x\":12.2499,\"y\":1.4609,\"z\":-12.0136},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"2f008a\":{\"lock\":false,\"pos\":{\"x\":12.2493,\"y\":1.475,\"z\":35.9864},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"44a05a\":{\"lock\":false,\"pos\":{\"x\":-1.4402,\"y\":1.4756,\"z\":-27.0401},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":0.0169}},\"5c79d0\":{\"lock\":false,\"pos\":{\"x\":12.2519,\"y\":1.468,\"z\":11.9864},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"67a775\":{\"lock\":false,\"pos\":{\"x\":12.2502,\"y\":1.4727,\"z\":27.9864},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"7388bc\":{\"lock\":false,\"pos\":{\"x\":12.2499,\"y\":1.4703,\"z\":19.9864},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"a61b48\":{\"lock\":false,\"pos\":{\"x\":12.2494,\"y\":1.4633,\"z\":-4.0136},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"effb49\":{\"lock\":false,\"pos\":{\"x\":12.2505,\"y\":1.4585,\"z\":-20.0137},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}}}}", - "ContainedObjects": [ - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 12.2492056, - "posY": 1.45618343, - "posZ": -28.0139084, - "rotX": 359.920135, - "rotY": 269.998138, - "rotZ": 0.0168765429, - "scaleX": 2.21, - "scaleY": 0.46, - "scaleZ": 2.42 - }, - "Nickname": "8: Before the Black Throne", - "Description": "The Circle Undone", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/784110538847462298/680FFE88F10AC7B0B77502DC95683D1FCFE653ED/", - "NormalURL": "", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CustomShader": { - "SpecularColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "SpecularIntensity": 0.0, - "SpecularSharpness": 2.0, - "FresnelStrength": 0.0 - }, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", - "LuaScriptState": "{\"ml\":{\"308386\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7717,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"41010d\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"752424\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6739,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0028,\"z\":0.0169}},\"910e54\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"a14586\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6959,\"y\":1.5583,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"a8d84d\":{\"lock\":false,\"pos\":{\"x\":-3.9264,\"y\":1.666,\"z\":15.1913},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"b16392\":{\"lock\":false,\"pos\":{\"x\":-3.3993,\"y\":1.5817,\"z\":-15.3519},\"rot\":{\"x\":359.9197,\"y\":270.0007,\"z\":0.0168}},\"c23159\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":270.0524,\"z\":0.0168}},\"c2cc36\":{\"lock\":false,\"pos\":{\"x\":1.133,\"y\":1.6533,\"z\":5.8024},\"rot\":{\"x\":359.9198,\"y\":269.9668,\"z\":0.0169}}}}", - "ContainedObjects": [ - { - "Name": "Deck", - "Transform": { - "posX": -3.92770028, - "posY": 1.77170992, - "posZ": 5.75720072, - "rotX": 359.919739, - "rotY": 270.0, - "rotZ": 180.016815, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 369134, - 369134, - 3623, - 369131, - 369133, - 231804, - 231823, - 3625, - 369133, - 12120, - 231804, - 3625, - 369134, - 369131, - 3623, - 231823, - 12120, - 369130, - 369132, - 231823, - 369130, - 369133, - 3624, - 12120, - 231822, - 231822, - 231804, - 3623, - 369132, - 231822 - ], - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 27.1961613, - "posY": 1.51052463, - "posZ": 75.40924, - "rotX": 0.02553703, - "rotY": 270.00946, - "rotZ": 0.009734581, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mindless Dancer", - "Description": "Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369134, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "97fa36" - }, - { - "Name": "Card", - "Transform": { - "posX": 26.83129, - "posY": 1.35331261, - "posZ": 75.2230759, - "rotX": 0.02116842, - "rotY": 270.00946, - "rotZ": 0.0145142619, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mindless Dancer", - "Description": "Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369134, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "892799" - }, - { - "Name": "Card", - "Transform": { - "posX": 98.97962, - "posY": 1.55247211, - "posZ": 16.3414173, - "rotX": 359.99057, - "rotY": 269.9967, - "rotZ": 359.984833, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Acolyte", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3623, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c70e63" - }, - { - "Name": "Card", - "Transform": { - "posX": 26.82527, - "posY": 1.47165251, - "posZ": 75.17854, - "rotX": 0.0233987048, - "rotY": 270.022919, - "rotZ": 0.01573934, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The End is Nigh!", - "Description": "Endtimes.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369131, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f8cfe7" - }, - { - "Name": "Card", - "Transform": { - "posX": 27.0071526, - "posY": 1.50224555, - "posZ": 75.08285, - "rotX": 0.0144073488, - "rotY": 270.0216, - "rotZ": 0.0137497745, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ultimate Chaos", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369133, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "99b040" - }, - { - "Name": "Card", - "Transform": { - "posX": 32.13641, - "posY": 1.67431533, - "posZ": 67.64259, - "rotX": 0.002807944, - "rotY": 270.002472, - "rotZ": 0.0201477651, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Daemonic Piping", - "Description": "Power. Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231804, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f79968" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.6707478, - "posY": 1.76058781, - "posZ": -33.23441, - "rotX": 359.465271, - "rotY": 269.459351, - "rotZ": 9.029153, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "717c42" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.2046661, - "posY": 1.54923761, - "posZ": 15.9180088, - "rotX": 359.989929, - "rotY": 270.0, - "rotZ": 359.98764, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysterious Chanting", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3625, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "df668b" - }, - { - "Name": "Card", - "Transform": { - "posX": 26.2738438, - "posY": 1.51910114, - "posZ": 75.7763443, - "rotX": 0.0268196836, - "rotY": 270.00943, - "rotZ": 0.00688381027, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ultimate Chaos", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369133, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "99b040" - }, - { - "Name": "Card", - "Transform": { - "posX": 115.309677, - "posY": 1.40331125, - "posZ": 1.5845021, - "rotX": 359.987427, - "rotY": 270.0, - "rotZ": 359.984558, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e0f4c0" - }, - { - "Name": "Card", - "Transform": { - "posX": -29.3314133, - "posY": 1.583834, - "posZ": -34.59758, - "rotX": 359.916046, - "rotY": 269.966034, - "rotZ": 0.0159121323, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Daemonic Piping", - "Description": "Power. Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231804, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f84e0e" - }, - { - "Name": "Card", - "Transform": { - "posX": 98.78452, - "posY": 1.40295327, - "posZ": 16.366806, - "rotX": 359.987427, - "rotY": 269.999817, - "rotZ": 359.984558, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysterious Chanting", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3625, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6f5b7b" - }, - { - "Name": "Card", - "Transform": { - "posX": 27.1961956, - "posY": 1.524544, - "posZ": 75.40927, - "rotX": 0.0189705323, - "rotY": 270.00946, - "rotZ": 0.01297347, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mindless Dancer", - "Description": "Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369134, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "892799" - }, - { - "Name": "Card", - "Transform": { - "posX": 27.00521, - "posY": 1.49737585, - "posZ": 75.26165, - "rotX": 0.02033227, - "rotY": 270.023071, - "rotZ": 0.0153790619, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The End is Nigh!", - "Description": "Endtimes.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369131, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f8cfe7" - }, - { - "Name": "Card", - "Transform": { - "posX": 98.93172, - "posY": 1.556378, - "posZ": 15.9665985, - "rotX": 359.989929, - "rotY": 269.999969, - "rotZ": 359.98764, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Acolyte", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3623, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c70e63" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.46502, - "posY": 2.16774321, - "posZ": -34.8072357, - "rotX": 0.232217044, - "rotY": 270.777466, - "rotZ": 353.199249, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fbcb9f" - }, - { - "Name": "Card", - "Transform": { - "posX": 115.318665, - "posY": 1.5414474, - "posZ": 1.587292, - "rotX": 359.989929, - "rotY": 270.000031, - "rotZ": 359.9876, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1921c5" - }, - { - "Name": "Card", - "Transform": { - "posX": 26.9027119, - "posY": 1.49093223, - "posZ": 74.82743, - "rotX": 0.0201691929, - "rotY": 269.983276, - "rotZ": 0.0146726873, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "A World in Darkness", - "Description": "Endtimes.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369130, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a7dd13" - }, - { - "Name": "Card", - "Transform": { - "posX": 26.1838646, - "posY": 1.5230999, - "posZ": 75.33933, - "rotX": 0.0202491973, - "rotY": 270.003174, - "rotZ": 0.0142255416, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispered Bargain", - "Description": "Pact.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369132, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bec23e" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.7152367, - "posY": 1.91512489, - "posZ": -32.59262, - "rotX": 359.910583, - "rotY": 269.364441, - "rotZ": 341.912537, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ef132d" - }, - { - "Name": "Card", - "Transform": { - "posX": 26.9910221, - "posY": 1.49399364, - "posZ": 74.62291, - "rotX": 0.0125041958, - "rotY": 270.003937, - "rotZ": 0.0224464256, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "A World in Darkness", - "Description": "Endtimes.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369130, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a7dd13" - }, - { - "Name": "Card", - "Transform": { - "posX": 26.3793659, - "posY": 1.521326, - "posZ": 75.6197739, - "rotX": 0.0247275848, - "rotY": 270.00943, - "rotZ": 0.0109192254, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ultimate Chaos", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369133, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "99b040" - }, - { - "Name": "Card", - "Transform": { - "posX": 98.45666, - "posY": 1.55439174, - "posZ": 16.9464512, - "rotX": 1.20685, - "rotY": 269.9761, - "rotZ": 357.846649, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wizard of the Order", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3624, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "159f90" - }, - { - "Name": "Card", - "Transform": { - "posX": 114.991905, - "posY": 1.59937644, - "posZ": 1.31244183, - "rotX": 1.97711754, - "rotY": 270.070251, - "rotZ": 359.990356, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "61e841" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6618786, - "posY": 2.18380141, - "posZ": -35.4214439, - "rotX": 359.156219, - "rotY": 270.890381, - "rotZ": 355.0201, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1a350a" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.27985, - "posY": 1.99979043, - "posZ": -34.2781525, - "rotX": 359.187378, - "rotY": 270.910339, - "rotZ": 355.236023, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "43ba03" - }, - { - "Name": "Card", - "Transform": { - "posX": -29.403286, - "posY": 1.77933121, - "posZ": -35.6114159, - "rotX": 359.909668, - "rotY": 269.9743, - "rotZ": 0.0608307645, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Daemonic Piping", - "Description": "Power. Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231804, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "397fce" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.0756, - "posY": 1.55269325, - "posZ": 16.03813, - "rotX": 359.989929, - "rotY": 270.0, - "rotZ": 359.9876, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Acolyte", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3623, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4072d7" - }, - { - "Name": "Card", - "Transform": { - "posX": 27.1292152, - "posY": 1.5078367, - "posZ": 74.87716, - "rotX": 0.01768027, - "rotY": 270.0032, - "rotZ": 0.0175336991, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispered Bargain", - "Description": "Pact.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369132, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bec23e" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.3842, - "posY": 2.1039958, - "posZ": -34.9055138, - "rotX": 359.182831, - "rotY": 270.902466, - "rotZ": 355.1978, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4f41b0" - } - ], - "GUID": "308386" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.7248, - "posY": 1.65664124, - "posZ": 0.3733003, - "rotX": 0.0168353245, - "rotY": 179.999908, - "rotZ": 0.0802577, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agenda Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 368832, - 368831, - 368830 - ], - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 29.6161041, - "posY": 1.52157807, - "posZ": 81.59478, - "rotX": 0.0170167852, - "rotY": 180.000381, - "rotZ": 179.97052, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Final Countdown", - "Description": "Agenda 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368832, - "SidewaysCard": true, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a7d884" - }, - { - "Name": "Card", - "Transform": { - "posX": 27.12275, - "posY": 1.49183035, - "posZ": 73.28463, - "rotX": 0.0107065951, - "rotY": 180.021, - "rotZ": 359.9565, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "It Awaits", - "Description": "Agenda 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368831, - "SidewaysCard": true, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d14e41" - }, - { - "Name": "Card", - "Transform": { - "posX": 32.4442558, - "posY": 1.51944351, - "posZ": 81.19754, - "rotX": 0.02509384, - "rotY": 180.0, - "rotZ": 359.9623, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "WHEEL OF FORTUNE · X", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368830, - "SidewaysCard": true, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "aac284" - } - ], - "GUID": "41010d" - }, - { - "Name": "Deck", - "Transform": { - "posX": -17.1201, - "posY": 1.673901, - "posZ": -7.700001, - "rotX": 359.9201, - "rotY": 270.0028, - "rotZ": 0.0168730933, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Cosmos", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 369446, - 369443, - 369446, - 369442, - 369440, - 369442, - 369443, - 369442, - 369443, - 369441, - 369440, - 369440 - ], - "CustomDeck": { - "3694": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 25.7866783, - "posY": 1.50211155, - "posZ": 80.19073, - "rotX": 0.0416825265, - "rotY": 269.934662, - "rotZ": 180.046219, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369446, - "SidewaysCard": false, - "CustomDeck": { - "3693": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1a0ad2" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.8718376, - "posY": 1.765196, - "posZ": 81.15501, - "rotX": 0.0277312379, - "rotY": 269.9878, - "rotZ": 179.152924, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369443, - "SidewaysCard": false, - "CustomDeck": { - "3693": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3cb235" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.6602125, - "posY": 1.82060313, - "posZ": 7.400929, - "rotX": 359.939331, - "rotY": 270.003479, - "rotZ": 0.0173203982, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369446, - "SidewaysCard": false, - "CustomDeck": { - "3694": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4e8ae3" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.8633728, - "posY": 1.75881338, - "posZ": 80.81227, - "rotX": 359.965759, - "rotY": 270.0135, - "rotZ": 183.539963, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369442, - "SidewaysCard": false, - "CustomDeck": { - "3693": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "af7186" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.80183, - "posY": 1.56914055, - "posZ": 81.8392639, - "rotX": 0.0901726261, - "rotY": 269.989746, - "rotZ": 174.203156, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369440, - "SidewaysCard": false, - "CustomDeck": { - "3693": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "30fc53" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.8266087, - "posY": 1.64924, - "posZ": 81.20057, - "rotX": 0.0271498263, - "rotY": 270.009827, - "rotZ": 180.019913, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369442, - "SidewaysCard": false, - "CustomDeck": { - "3693": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "2ec90f" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.7772255, - "posY": 1.67048526, - "posZ": 81.4754639, - "rotX": 0.0305660572, - "rotY": 269.986816, - "rotZ": 177.442657, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369443, - "SidewaysCard": false, - "CustomDeck": { - "3693": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3cb235" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.8354111, - "posY": 1.59674382, - "posZ": 80.58062, - "rotX": 359.941284, - "rotY": 269.976563, - "rotZ": 183.790771, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369442, - "SidewaysCard": false, - "CustomDeck": { - "3693": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4a7eac" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.8071117, - "posY": 1.58692122, - "posZ": 81.6339645, - "rotX": 0.110584244, - "rotY": 269.9804, - "rotZ": 174.4053, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369443, - "SidewaysCard": false, - "CustomDeck": { - "3693": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3cb235" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.7674541, - "posY": 1.50622034, - "posZ": 85.7123, - "rotX": 0.0207059048, - "rotY": 269.998566, - "rotZ": 180.017822, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369441, - "SidewaysCard": false, - "CustomDeck": { - "3694": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "435152" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.68824, - "posY": 1.5909071, - "posZ": 81.73422, - "rotX": 0.08713126, - "rotY": 269.992065, - "rotZ": 174.381149, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369440, - "SidewaysCard": false, - "CustomDeck": { - "3693": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8f3e16" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.476862, - "posY": 1.82039285, - "posZ": 7.371406, - "rotX": 359.93866, - "rotY": 270.000671, - "rotZ": 0.01858811, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369440, - "SidewaysCard": false, - "CustomDeck": { - "3694": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a89dbf" - } - ], - "GUID": "752424" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6762981, - "posY": 1.688458, - "posZ": 7.569999, - "rotX": 359.9201, - "rotY": 269.999817, - "rotZ": 0.0168760028, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmic Ingress", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369438, - "SidewaysCard": false, - "CustomDeck": { - "3694": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "910e54" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.6886, - "posY": 1.65499747, - "posZ": -5.0485, - "rotX": 0.0168352127, - "rotY": 179.999939, - "rotZ": 0.08025744, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 368835, - 368834, - 368833 - ], - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 33.4550858, - "posY": 1.53751588, - "posZ": 77.87682, - "rotX": 0.0165670067, - "rotY": 180.000061, - "rotZ": 179.979721, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "What Must Be Done", - "Description": "Act 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368835, - "SidewaysCard": true, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44760d" - }, - { - "Name": "Card", - "Transform": { - "posX": 32.9625854, - "posY": 1.50385928, - "posZ": 77.5973053, - "rotX": 0.02732806, - "rotY": 180.002045, - "rotZ": 179.9804, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "In Azathoth's Domain", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368834, - "SidewaysCard": true, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "263ac1" - }, - { - "Name": "Card", - "Transform": { - "posX": 33.2288971, - "posY": 1.3590883, - "posZ": 77.75054, - "rotX": 0.0151657, - "rotY": 179.986511, - "rotZ": 179.989563, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Cosmos Beckons", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368833, - "SidewaysCard": true, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c5cae9" - } - ], - "GUID": "a14586" - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 1.6959008, - "posY": 1.55831766, - "posZ": 14.2786026, - "rotX": 359.955139, - "rotY": 224.998016, - "rotZ": 0.06867308, - "scaleX": 2.0, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "Nickname": "Set-aside", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.02148666, - "g": 0.00100758043, - "b": 0.02148666 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", - "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 1, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 35.2725334, - "posY": 3.410345, - "posZ": 71.10349, - "rotX": 0.0197880846, - "rotY": 269.9805, - "rotZ": 0.0158734079, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Piper of Azatoth", - "Description": "Monster. Elite.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231803, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "092d86" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.69648683, - "posY": 3.71621919, - "posZ": 14.2788115, - "rotX": 359.9606, - "rotY": 224.998, - "rotZ": 180.055725, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369445, - "SidewaysCard": false, - "CustomDeck": { - "3694": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7a3ece" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.6964196, - "posY": 3.73114252, - "posZ": 14.2788334, - "rotX": 359.948059, - "rotY": 224.998062, - "rotZ": 180.058319, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369444, - "SidewaysCard": false, - "CustomDeck": { - "3694": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "311eb1" - } - ], - "PhysicsMaterial": { - "StaticFriction": 0.6, - "DynamicFriction": 0.6, - "Bounciness": 0.0, - "FrictionCombine": 0, - "BounceCombine": 0 - }, - "Rigidbody": { - "Mass": 1.375, - "Drag": 5.0, - "AngularDrag": 5.0, - "UseGravity": true - }, - "GUID": "a45247" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.92640018, - "posY": 1.66596162, - "posZ": 15.1913033, - "rotX": 359.919739, - "rotY": 270.0, - "rotZ": 180.01683, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cosmos", - "Description": "Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369439, - "SidewaysCard": false, - "CustomDeck": { - "3694": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a8d84d" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.39930058, - "posY": 1.58171177, - "posZ": -15.351903, - "rotX": 359.919739, - "rotY": 270.000732, - "rotZ": 0.0168368518, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "Before the Black Throne", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'For the Greater Good'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", - "LuaScriptState": "", - "GUID": "b16392" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.9559, - "posY": 1.655648, - "posZ": -10.4413013, - "rotX": 359.919739, - "rotY": 270.052429, - "rotZ": 0.0167676732, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "Before the Black Throne", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 368729, - "SidewaysCard": false, - "CustomDeck": { - "3687": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c23159" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.13300025, - "posY": 1.65329313, - "posZ": 5.80240059, - "rotX": 359.919769, - "rotY": 269.9668, - "rotZ": 0.0168874338, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Azathoth", - "Description": "The Primal Chaos", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369129, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c2cc36" - } - ], - "GUID": "0fad66", - "AttachedDecals": [ - { - "Transform": { - "posX": -0.0021877822, - "posY": -0.08963572, - "posZ": -0.00288731651, - "rotX": 270.0, - "rotY": 359.869568, - "rotZ": 0.0, - "scaleX": 2.00000215, - "scaleY": 2.00000238, - "scaleZ": 2.00000262 - }, - "CustomDecal": { - "Name": "dunwich_back", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", - "Size": 7.4 - } - } - ] - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 12.2498045, - "posY": 1.46560585, - "posZ": 3.98639965, - "rotX": 359.920135, - "rotY": 269.999969, - "rotZ": 0.0168737639, - "scaleX": 2.21, - "scaleY": 0.46, - "scaleZ": 2.42 - }, - "Nickname": "4: The Wages of Sin", - "Description": "The Circle Undone", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/829135524527188494/F284E83641B5CCF665158F9E45BC8A8FF3B6CA37/", - "NormalURL": "", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", - "LuaScriptState": "{\"ml\":{\"06bdb3\":{\"lock\":false,\"pos\":{\"x\":-28.7473,\"y\":1.7436,\"z\":-15.2642},\"rot\":{\"x\":359.9193,\"y\":270.0026,\"z\":180.0171}},\"1042cb\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":180.017}},\"183001\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7397,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9899,\"z\":180.0168}},\"1f7560\":{\"lock\":false,\"pos\":{\"x\":-2.6882,\"y\":1.6623,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":180.0082,\"z\":0.0803}},\"2009dd\":{\"lock\":false,\"pos\":{\"x\":-33.7293,\"y\":1.6297,\"z\":3.8315},\"rot\":{\"x\":359.9554,\"y\":225.0006,\"z\":0.0684}},\"34b9e9\":{\"lock\":false,\"pos\":{\"x\":-28.7736,\"y\":1.7526,\"z\":15.1216},\"rot\":{\"x\":359.9194,\"y\":270.0193,\"z\":180.0171}},\"3e1d3a\":{\"lock\":false,\"pos\":{\"x\":-30.1891,\"y\":1.6202,\"z\":-11.5052},\"rot\":{\"x\":0.0168,\"y\":180.0183,\"z\":0.0799}},\"42fbac\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"55d8f1\":{\"lock\":false,\"pos\":{\"x\":-22.2549,\"y\":1.7368,\"z\":-7.7064},\"rot\":{\"x\":0.0793,\"y\":270.0031,\"z\":179.9831}},\"58b8c5\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.7004,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":180.0169}},\"5bcc5d\":{\"lock\":false,\"pos\":{\"x\":-30.2184,\"y\":1.7026,\"z\":15.1986},\"rot\":{\"x\":359.9201,\"y\":270.0047,\"z\":180.017}},\"5dab65\":{\"lock\":false,\"pos\":{\"x\":-26.9492,\"y\":1.6168,\"z\":-7.69},\"rot\":{\"x\":0.08,\"y\":90.4419,\"z\":359.9837}},\"60ca46\":{\"lock\":false,\"pos\":{\"x\":-26.6037,\"y\":1.6219,\"z\":11.1799},\"rot\":{\"x\":0.0684,\"y\":135.0088,\"z\":0.0446}},\"62d69d\":{\"lock\":false,\"pos\":{\"x\":-22.1916,\"y\":1.7412,\"z\":7.6069},\"rot\":{\"x\":0.0791,\"y\":270.0016,\"z\":179.983}},\"6d3a3b\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.7073,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.6602,\"y\":1.6273,\"z\":-3.847},\"rot\":{\"x\":0.0684,\"y\":134.9951,\"z\":0.0446}},\"8ee597\":{\"lock\":false,\"pos\":{\"x\":-3.8733,\"y\":1.7211,\"z\":15.1997},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6958,\"y\":1.5583,\"z\":14.2785},\"rot\":{\"x\":359.9551,\"y\":224.9978,\"z\":0.0687}},\"a9af08\":{\"lock\":false,\"pos\":{\"x\":-12.3886,\"y\":1.6747,\"z\":11.2381},\"rot\":{\"x\":359.9201,\"y\":270.0116,\"z\":0.0169}},\"ac274f\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9992,\"z\":0.0168}},\"ad2d6f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6236,\"z\":-0.03},\"rot\":{\"x\":0.0168,\"y\":180.0181,\"z\":0.0799}},\"b21125\":{\"lock\":false,\"pos\":{\"x\":-3.945,\"y\":1.5827,\"z\":-14.7449},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"e2ad21\":{\"lock\":false,\"pos\":{\"x\":-30.2238,\"y\":1.6937,\"z\":-15.2805},\"rot\":{\"x\":359.9201,\"y\":270.0069,\"z\":180.017}},\"e2b8fc\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.998,\"z\":180.017}},\"efc4b5\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9995,\"z\":0.0803}},\"f2e96f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.627,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":180.0032,\"z\":0.0799}},\"f74271\":{\"lock\":false,\"pos\":{\"x\":-26.6267,\"y\":1.6209,\"z\":7.6662},\"rot\":{\"x\":0.08,\"y\":90.2464,\"z\":359.9834}},\"f8c429\":{\"lock\":false,\"pos\":{\"x\":-27.1766,\"y\":1.6161,\"z\":-11.2744},\"rot\":{\"x\":359.9554,\"y\":225.0012,\"z\":0.0684}}}}", - "ContainedObjects": [ - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 1.69580126, - "posY": 1.55831814, - "posZ": 14.2785034, - "rotX": 359.955139, - "rotY": 224.997849, - "rotZ": 0.06867339, - "scaleX": 2.0, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "Nickname": "Set-aside", - "Description": "The Wages of Sin", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.02148666, - "g": 0.00100758043, - "b": 0.02148666 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", - "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 1, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Deck", - "Transform": { - "posX": 17.0063362, - "posY": 2.58263564, - "posZ": -39.591713, - "rotX": 359.920135, - "rotY": 270.001343, - "rotZ": 0.0168687031, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Spectral Web", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 275733, - 275733, - 275733, - 275733 - ], - "CustomDeck": { - "2757": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 28.41885, - "posY": 1.347801, - "posZ": 54.34455, - "rotX": 0.0202481523, - "rotY": 270.007416, - "rotZ": 0.0163530763, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Spectral Web", - "Description": "Spell.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275733, - "SidewaysCard": false, - "CustomDeck": { - "2757": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "550697" - }, - { - "Name": "Card", - "Transform": { - "posX": 28.0886059, - "posY": 1.3968327, - "posZ": 54.9196, - "rotX": 359.890167, - "rotY": 270.0158, - "rotZ": 0.145918369, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Spectral Web", - "Description": "Spell.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275733, - "SidewaysCard": false, - "CustomDeck": { - "2757": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8fe838" - }, - { - "Name": "Card", - "Transform": { - "posX": 28.1784782, - "posY": 1.51447129, - "posZ": 54.86489, - "rotX": 359.7677, - "rotY": 270.000275, - "rotZ": 0.723122358, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Spectral Web", - "Description": "Spell.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275733, - "SidewaysCard": false, - "CustomDeck": { - "2757": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d6ed28" - }, - { - "Name": "Card", - "Transform": { - "posX": 0.272214681, - "posY": 1.66790545, - "posZ": 28.77715, - "rotX": 358.207977, - "rotY": 270.006134, - "rotZ": 0.0131794261, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Spectral Web", - "Description": "Spell.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275733, - "SidewaysCard": false, - "CustomDeck": { - "2757": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "863f1a" - } - ], - "GUID": "a1811b" - }, - { - "Name": "Deck", - "Transform": { - "posX": 32.8993034, - "posY": 3.40332723, - "posZ": 52.0560722, - "rotX": 0.020968182, - "rotY": 269.9796, - "rotZ": 0.0168605149, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Watcher", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231802, - 231802, - 231801 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -27.8545532, - "posY": 1.58170176, - "posZ": -34.8676262, - "rotX": 359.915649, - "rotY": 269.974121, - "rotZ": 0.01525554, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Watcher's Grasp", - "Description": "Power. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231802, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f798c8" - }, - { - "Name": "Card", - "Transform": { - "posX": -27.9526443, - "posY": 1.72608125, - "posZ": -34.6397629, - "rotX": 359.9233, - "rotY": 269.9745, - "rotZ": 0.00772151956, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Watcher's Grasp", - "Description": "Power. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231802, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f92f1e" - }, - { - "Name": "Card", - "Transform": { - "posX": -27.4475632, - "posY": 1.74305177, - "posZ": -34.8419075, - "rotX": 359.9185, - "rotY": 269.974243, - "rotZ": 0.0167756584, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Spectral Watcher", - "Description": "You Are Its Prey", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231801, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a1eb9b" - } - ], - "GUID": "28374b" - } - ], - "PhysicsMaterial": { - "StaticFriction": 0.6, - "DynamicFriction": 0.6, - "Bounciness": 0.0, - "FrictionCombine": 0, - "BounceCombine": 0 - }, - "Rigidbody": { - "Mass": 1.375, - "Drag": 5.0, - "AngularDrag": 5.0, - "UseGravity": true - }, - "GUID": "a45247" - }, - { - "Name": "Deck", - "Transform": { - "posX": -3.87325621, - "posY": 1.72111368, - "posZ": 15.1996946, - "rotX": 359.919739, - "rotY": 270.0, - "rotZ": 180.016815, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Spectral Encounter Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 275540, - 275535, - 275537, - 275535, - 275540, - 275537, - 231818, - 231821, - 231819, - 231818, - 231820, - 231819, - 231822, - 231823, - 231821, - 231823, - 231822, - 231823, - 231820, - 231822 - ], - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -5.60290337, - "posY": 1.72524989, - "posZ": 23.9985065, - "rotX": 359.922028, - "rotY": 269.989441, - "rotZ": 180.019623, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Bane of the Living", - "Description": "Curse. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275540, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9b05f2" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.60289574, - "posY": 1.72287846, - "posZ": 23.99851, - "rotX": 359.918, - "rotY": 269.990021, - "rotZ": 180.017792, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Malevolent Spirit", - "Description": "Monster. Geist. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275535, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d02d98" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.602903, - "posY": 1.72468817, - "posZ": 23.9984875, - "rotX": 359.919464, - "rotY": 269.9897, - "rotZ": 180.018677, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Burdens of the Past", - "Description": "Curse. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275537, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "199d00" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.602903, - "posY": 1.73853827, - "posZ": 23.9984875, - "rotX": 359.919464, - "rotY": 269.989716, - "rotZ": 180.018723, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Malevolent Spirit", - "Description": "Monster. Geist. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275535, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f65ded" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.60288858, - "posY": 1.7209518, - "posZ": 23.9984589, - "rotX": 359.917633, - "rotY": 269.989624, - "rotZ": 180.03064, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Bane of the Living", - "Description": "Curse. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275540, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d9c83e" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.60292864, - "posY": 1.57090807, - "posZ": 23.99852, - "rotX": 359.9202, - "rotY": 269.989868, - "rotZ": 180.017975, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Burdens of the Past", - "Description": "Curse. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275537, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f3088f" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.14106, - "posY": 1.62496328, - "posZ": -36.8201828, - "rotX": 359.913239, - "rotY": 269.973724, - "rotZ": 0.00411301153, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wraith", - "Description": "Monster. Geist. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231818, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7732b3" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.9579411, - "posY": 1.72431993, - "posZ": -29.8048172, - "rotX": 359.8922, - "rotY": 269.971619, - "rotZ": 0.06810118, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shapes in the Mist", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231821, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3c04e0" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.006403, - "posY": 1.73293757, - "posZ": -36.7171631, - "rotX": 359.904938, - "rotY": 269.972717, - "rotZ": 0.0009751208, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Trapped Spirits", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231819, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "10c2cb" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6921558, - "posY": 1.5753423, - "posZ": -36.98296, - "rotX": 359.918884, - "rotY": 269.973633, - "rotZ": 0.016206529, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wraith", - "Description": "Monster. Geist. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231818, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "db1b65" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.5189228, - "posY": 1.92383051, - "posZ": -29.7425785, - "rotX": 359.8803, - "rotY": 269.977753, - "rotZ": 0.07589612, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Realm of Torment", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231820, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e49187" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.8059444, - "posY": 1.67718458, - "posZ": -36.7148056, - "rotX": 359.913239, - "rotY": 269.9757, - "rotZ": 0.004121993, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Trapped Spirits", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231819, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4e4752" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.27985, - "posY": 1.99979043, - "posZ": -34.2781525, - "rotX": 359.187378, - "rotY": 270.910339, - "rotZ": 355.236023, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "43ba03" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.7152367, - "posY": 1.91512489, - "posZ": -32.59262, - "rotX": 359.910583, - "rotY": 269.364441, - "rotZ": 341.912537, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ef132d" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.974844, - "posY": 1.58076048, - "posZ": -29.1853924, - "rotX": 359.916321, - "rotY": 269.977448, - "rotZ": 0.01572173, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shapes in the Mist", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231821, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "47147f" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.46502, - "posY": 2.16774321, - "posZ": -34.8072357, - "rotX": 0.232217044, - "rotY": 270.777466, - "rotZ": 353.199249, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fbcb9f" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.3842, - "posY": 2.1039958, - "posZ": -34.9055138, - "rotX": 359.182831, - "rotY": 270.902466, - "rotZ": 355.1978, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4f41b0" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.6707478, - "posY": 1.76058781, - "posZ": -33.23441, - "rotX": 359.465271, - "rotY": 269.459351, - "rotZ": 9.029153, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "717c42" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.91995, - "posY": 1.77833688, - "posZ": -29.84826, - "rotX": 359.884155, - "rotY": 269.9732, - "rotZ": 0.074736394, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Realm of Torment", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231820, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "278e46" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6618786, - "posY": 2.18380141, - "posZ": -35.4214439, - "rotX": 359.156219, - "rotY": 270.890381, - "rotZ": 355.0201, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1a350a" - } - ], - "GUID": "8ee597" - }, - { - "Name": "Deck", - "Transform": { - "posX": -3.92741847, - "posY": 1.73973286, - "posZ": 5.757205, - "rotX": 359.919739, - "rotY": 269.989868, - "rotZ": 180.01683, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231805, - 231808, - 275536, - 275539, - 231809, - 275534, - 231809, - 231814, - 231814, - 231807, - 275534, - 231813, - 231808, - 231807, - 231805, - 275538, - 231806, - 275536, - 275538, - 275539, - 231814, - 231807, - 231813, - 231805 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -25.6442871, - "posY": 1.72278082, - "posZ": -36.0347443, - "rotX": 359.911224, - "rotY": 269.974, - "rotZ": 0.0136959022, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Coven Initiate", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231805, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c35966" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.71135, - "posY": 1.56800044, - "posZ": -33.49924, - "rotX": 359.9177, - "rotY": 269.978638, - "rotZ": 0.0161360279, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wracked", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231808, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4949ea" - }, - { - "Name": "Card", - "Transform": { - "posX": 19.40219, - "posY": 1.34403968, - "posZ": 52.6477, - "rotX": 0.0208171587, - "rotY": 269.9707, - "rotZ": 0.0167593136, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Punishment", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275536, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ad69c7" - }, - { - "Name": "Card", - "Transform": { - "posX": 15.4475288, - "posY": 1.34161592, - "posZ": 49.3494568, - "rotX": 0.0195411555, - "rotY": 269.9999, - "rotZ": 0.0161290076, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Grave-Light", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275539, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "716bb1" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.1656151, - "posY": 1.716761, - "posZ": -33.74088, - "rotX": 359.918976, - "rotY": 269.9787, - "rotZ": 0.018134892, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Bedeviled", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231809, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f7c676" - }, - { - "Name": "Card", - "Transform": { - "posX": 11.8467007, - "posY": 1.48010254, - "posZ": 51.81632, - "rotX": 0.0149586685, - "rotY": 269.982483, - "rotZ": 0.0217985548, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Vengeful Witch", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275534, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "801539" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.6637516, - "posY": 1.7296617, - "posZ": -33.73086, - "rotX": 359.9201, - "rotY": 269.978882, - "rotZ": 0.0205486864, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Bedeviled", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231809, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a558b5" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.7263336, - "posY": 1.754926, - "posZ": -33.80658, - "rotX": 0.0413828529, - "rotY": 269.9769, - "rotZ": 0.3666429, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9cb625" - }, - { - "Name": "Card", - "Transform": { - "posX": -21.0152721, - "posY": 1.57281208, - "posZ": -32.7783356, - "rotX": 359.9176, - "rotY": 269.977783, - "rotZ": 0.01638736, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "81dc7a" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.055851, - "posY": 1.72234285, - "posZ": -33.4770279, - "rotX": 359.9191, - "rotY": 269.978851, - "rotZ": 0.0164938, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Diabolic Voices", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231807, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0fa642" - }, - { - "Name": "Card", - "Transform": { - "posX": 11.7847424, - "posY": 1.34110641, - "posZ": 52.07729, - "rotX": 0.0207291655, - "rotY": 269.982758, - "rotZ": 0.01682211, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Vengeful Witch", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275534, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "de0939" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.7343235, - "posY": 1.86165559, - "posZ": -33.3503036, - "rotX": 359.785339, - "rotY": 269.9796, - "rotZ": 0.07815084, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Evil Past", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231813, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "976fd8" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.80855, - "posY": 1.71239948, - "posZ": -33.79921, - "rotX": 359.910339, - "rotY": 269.97876, - "rotZ": 0.03349457, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wracked", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231808, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c8092b" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.0510273, - "posY": 1.71469259, - "posZ": -33.44395, - "rotX": 359.919128, - "rotY": 269.978668, - "rotZ": 0.0163030848, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Diabolic Voices", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231807, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "407e66" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.7267475, - "posY": 1.74028778, - "posZ": -36.1106224, - "rotX": 359.918823, - "rotY": 269.9739, - "rotZ": 0.0168967526, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Coven Initiate", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231805, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6f2c2e" - }, - { - "Name": "Card", - "Transform": { - "posX": 15.5294752, - "posY": 1.34248006, - "posZ": 52.47316, - "rotX": 0.015629, - "rotY": 269.982422, - "rotZ": 0.0147842215, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ominous Portents", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275538, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0fc433" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.8414345, - "posY": 1.57860494, - "posZ": -36.132618, - "rotX": 359.919647, - "rotY": 269.974, - "rotZ": 0.0165877342, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Priestess of the Coven", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231806, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "326f11" - }, - { - "Name": "Card", - "Transform": { - "posX": 19.4425049, - "posY": 1.49075043, - "posZ": 52.53749, - "rotX": 0.0168869942, - "rotY": 269.9707, - "rotZ": 0.01725625, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Punishment", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275536, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "832e11" - }, - { - "Name": "Card", - "Transform": { - "posX": 15.5567713, - "posY": 1.48118174, - "posZ": 52.53753, - "rotX": 0.0234855525, - "rotY": 269.971039, - "rotZ": -0.000177135516, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ominous Portents", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275538, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8767b5" - }, - { - "Name": "Card", - "Transform": { - "posX": 15.3969, - "posY": 1.480602, - "posZ": 49.3430138, - "rotX": 0.009779532, - "rotY": 270.000031, - "rotZ": 0.0111978985, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Grave-Light", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275539, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "84bbd0" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.54692, - "posY": 1.60918021, - "posZ": -33.3808479, - "rotX": 359.9352, - "rotY": 269.982361, - "rotZ": 0.376713872, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0a13d0" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.73656, - "posY": 1.71689022, - "posZ": -33.5350227, - "rotX": 359.918945, - "rotY": 269.979126, - "rotZ": 0.0171701312, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Diabolic Voices", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231807, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "64341a" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.8834572, - "posY": 1.89827907, - "posZ": -33.5683937, - "rotX": 0.110509835, - "rotY": 269.976044, - "rotZ": 0.334469885, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Evil Past", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231813, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ab69b8" - }, - { - "Name": "Card", - "Transform": { - "posX": -26.0635834, - "posY": 1.72707784, - "posZ": -35.83386, - "rotX": 359.920868, - "rotY": 269.973969, - "rotZ": 0.0147350542, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Coven Initiate", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231805, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "367d03" - } - ], - "GUID": "183001" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.68819952, - "posY": 1.662333, - "posZ": -5.0486, - "rotX": 0.0168235619, - "rotY": 180.008179, - "rotZ": 0.08026045, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 275332, - 275331 - ], - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 29.15592, - "posY": 1.34646809, - "posZ": 49.01146, - "rotX": 0.0136854285, - "rotY": 179.9997, - "rotZ": 359.9776, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "In Pursuit of the Living", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275332, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ca12dd" - }, - { - "Name": "Card", - "Transform": { - "posX": 28.7154121, - "posY": 1.4910543, - "posZ": 49.2659225, - "rotX": 0.0129829422, - "rotY": 180.0006, - "rotZ": 359.928925, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "In Pursuit of the Dead", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275331, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "70fcce" - } - ], - "GUID": "1f7560" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.72459984, - "posY": 1.66397715, - "posZ": 0.3733007, - "rotX": 0.016835453, - "rotY": 179.999512, - "rotZ": 0.08025768, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agenda Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 275330, - 275329 - ], - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 29.4476528, - "posY": 1.34756792, - "posZ": 52.4735947, - "rotX": 0.0133047355, - "rotY": 179.9995, - "rotZ": 359.978241, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Death's Approach", - "Description": "Agenda 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275330, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "57bcb8" - }, - { - "Name": "Card", - "Transform": { - "posX": 29.4080963, - "posY": 1.49256372, - "posZ": 52.60277, - "rotX": 0.0171353649, - "rotY": 180.001144, - "rotZ": 359.970551, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "THE HANGED MAN · XII", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275329, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0e45a9" - } - ], - "GUID": "efc4b5" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.9559, - "posY": 1.655648, - "posZ": -10.4412022, - "rotX": 359.919739, - "rotY": 269.9992, - "rotZ": 0.0168424752, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "The Wages of Sin", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275428, - "SidewaysCard": false, - "CustomDeck": { - "2754": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ac274f" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.94500041, - "posY": 1.58265471, - "posZ": -14.7449055, - "rotX": 359.919739, - "rotY": 270.004883, - "rotZ": 0.0168309528, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "The Wages of Sin", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'The Wages of Sin'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", - "LuaScriptState": "", - "GUID": "b21125" - }, - { - "Name": "Deck", - "Transform": { - "posX": -12.3885965, - "posY": 1.67466307, - "posZ": 11.2381, - "rotX": 359.9201, - "rotY": 270.011566, - "rotZ": 0.0168606378, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Heretics", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 275435, - 275436, - 275434, - 275438, - 275437, - 275433 - ], - "CustomDeck": { - "2754": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 16.5071, - "posY": 1.34559619, - "posZ": 61.5575562, - "rotX": 0.0208071545, - "rotY": 270.0, - "rotZ": 0.0167729761, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Heretic", - "Description": "Monster. Geist. Witch. Spectral. Elite.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275435, - "SidewaysCard": false, - "CustomDeck": { - "2754": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "13d3f3" - }, - { - "Name": "Card", - "Transform": { - "posX": 16.4758682, - "posY": 1.34500444, - "posZ": 58.9735146, - "rotX": 0.027376866, - "rotY": 269.998535, - "rotZ": 0.019387, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Heretic", - "Description": "Monster. Geist. Witch. Spectral. Elite.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275436, - "SidewaysCard": false, - "CustomDeck": { - "2754": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "71e37c" - }, - { - "Name": "Card", - "Transform": { - "posX": 16.4763718, - "posY": 1.34412086, - "posZ": 56.5552368, - "rotX": 0.0208079629, - "rotY": 270.0, - "rotZ": 0.0167719, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Heretic", - "Description": "Monster. Geist. Witch. Spectral. Elite.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275434, - "SidewaysCard": false, - "CustomDeck": { - "2754": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6f896e" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.2133646, - "posY": 1.34292543, - "posZ": 56.51944, - "rotX": 0.0208042227, - "rotY": 270.000031, - "rotZ": 0.0167716611, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Heretic", - "Description": "Monster. Geist. Witch. Spectral. Elite.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275438, - "SidewaysCard": false, - "CustomDeck": { - "2754": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "962a85" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.0830288, - "posY": 1.34435523, - "posZ": 61.5660324, - "rotX": 0.02080735, - "rotY": 270.0, - "rotZ": 0.0167676, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Heretic", - "Description": "Monster. Geist. Witch. Spectral. Elite.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275437, - "SidewaysCard": false, - "CustomDeck": { - "2754": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6d6a42" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.3551321, - "posY": 1.34373021, - "posZ": 59.03893, - "rotX": 0.022275405, - "rotY": 270.000916, - "rotZ": 0.0167769566, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Heretic", - "Description": "Monster. Geist. Witch. Spectral. Elite.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275433, - "SidewaysCard": false, - "CustomDeck": { - "2754": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6c0d7e" - } - ], - "GUID": "a9af08" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.67648, - "posY": 1.691279, - "posZ": 7.569963, - "rotX": 359.920135, - "rotY": 269.9987, - "rotZ": 180.017014, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Gallows", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 276040, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1042cb" - }, - { - "Name": "Card", - "Transform": { - "posX": -22.1916351, - "posY": 1.74124277, - "posZ": 7.60687733, - "rotX": 0.0790919662, - "rotY": 270.001617, - "rotZ": 179.983047, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Gallows", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 276039, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "62d69d" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -26.6267, - "posY": 1.62088692, - "posZ": 7.66619968, - "rotX": 0.0799662, - "rotY": 90.24637, - "rotZ": 359.983429, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f74271", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2241821, - "posY": 1.70041144, - "posZ": 7.569985, - "rotX": 359.9201, - "rotY": 270.0002, - "rotZ": 180.016861, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Haunted Fields", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 276037, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "58b8c5" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2242, - "posY": 1.62702024, - "posZ": 11.4600058, - "rotX": 0.0168672036, - "rotY": 180.003189, - "rotZ": 0.07993552, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f2e96f", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2183952, - "posY": 1.70264828, - "posZ": 15.1986485, - "rotX": 359.9201, - "rotY": 270.0047, - "rotZ": 180.016968, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Heretics' Graves", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 276042, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5bcc5d" - }, - { - "Name": "Card", - "Transform": { - "posX": -28.7736053, - "posY": 1.75261486, - "posZ": 15.1216192, - "rotX": 359.9194, - "rotY": 270.019348, - "rotZ": 180.01712, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Heretics' Graves", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 276041, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "34b9e9" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -26.6037, - "posY": 1.62188947, - "posZ": 11.1799011, - "rotX": 0.0684242, - "rotY": 135.0088, - "rotZ": 0.04457203, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "60ca46", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2242, - "posY": 1.623637, - "posZ": -0.02999952, - "rotX": 0.0168465637, - "rotY": 180.018127, - "rotZ": 0.07994472, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": false, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ad2d6f", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -33.7293, - "posY": 1.62966168, - "posZ": 3.83150053, - "rotX": 359.955444, - "rotY": 225.000641, - "rotZ": 0.068403706, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "2009dd", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -33.6602, - "posY": 1.62730432, - "posZ": -3.84700012, - "rotX": 0.0684347749, - "rotY": 134.995117, - "rotZ": 0.044556018, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7234af", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -36.7732, - "posY": 1.70730567, - "posZ": -0.0299987774, - "rotX": 359.9201, - "rotY": 270.000061, - "rotZ": 180.016861, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hangman's Brook", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 276036, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6d3a3b" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2243347, - "posY": 1.69591522, - "posZ": -7.699994, - "rotX": 359.9201, - "rotY": 269.999817, - "rotZ": 180.016861, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Abandoned Chapel", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 276038, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "42fbac" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.1891, - "posY": 1.6202091, - "posZ": -11.5052032, - "rotX": 0.0168461744, - "rotY": 180.018326, - "rotZ": 0.07994516, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": false, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3e1d3a", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2238064, - "posY": 1.69368041, - "posZ": -15.2804556, - "rotX": 359.9201, - "rotY": 270.006866, - "rotZ": 180.017, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Chapel Crypt", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 276044, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e2ad21" - }, - { - "Name": "Card", - "Transform": { - "posX": -28.7473469, - "posY": 1.74364579, - "posZ": -15.2642126, - "rotX": 359.919342, - "rotY": 270.0026, - "rotZ": 180.017075, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Chapel Crypt", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 276043, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "06bdb3" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -27.1766, - "posY": 1.61607635, - "posZ": -11.2744007, - "rotX": 359.955444, - "rotY": 225.001221, - "rotZ": 0.06840099, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f8c429", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -26.9492, - "posY": 1.61681485, - "posZ": -7.690002, - "rotX": 0.08002207, - "rotY": 90.441925, - "rotZ": 359.9837, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": false, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5dab65", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6764965, - "posY": 1.68678308, - "posZ": -7.700061, - "rotX": 359.9201, - "rotY": 269.998, - "rotZ": 180.016983, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Chapel Attic", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 276046, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e2b8fc" - }, - { - "Name": "Card", - "Transform": { - "posX": -22.254879, - "posY": 1.73675287, - "posZ": -7.70638561, - "rotX": 0.079266, - "rotY": 270.003052, - "rotZ": 179.983109, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Chapel Attic", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 276045, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "55d8f1" - } - ], - "GUID": "1e45e8", - "AttachedDecals": [ - { - "Transform": { - "posX": -0.0021877822, - "posY": -0.08963572, - "posZ": -0.00288731651, - "rotX": 270.0, - "rotY": 359.869568, - "rotZ": 0.0, - "scaleX": 2.00000215, - "scaleY": 2.00000238, - "scaleZ": 2.00000262 - }, - "CustomDecal": { - "Name": "dunwich_back", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", - "Size": 7.4 - } - } - ] - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 12.2499027, - "posY": 1.460894, - "posZ": -12.0136023, - "rotX": 359.920135, - "rotY": 270.000031, - "rotZ": 0.0168742016, - "scaleX": 2.21, - "scaleY": 0.46, - "scaleZ": 2.42 - }, - "Nickname": "6: Union and Disillusion", - "Description": "The Circle Undone", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/786356000879748596/DA7C8528E79ECD42DF9410CCC3B43692F95B1853/", - "NormalURL": "", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", - "LuaScriptState": "{\"ml\":{\"01b2f4\":{\"lock\":false,\"pos\":{\"x\":-12.3725,\"y\":1.4107,\"z\":-10.0935},\"rot\":{\"x\":359.9825,\"y\":359.5721,\"z\":359.9202}},\"15f544\":{\"lock\":false,\"pos\":{\"x\":0.6017,\"y\":1.3942,\"z\":-4.6511},\"rot\":{\"x\":359.9832,\"y\":-0.0043,\"z\":359.9197}},\"2c3cbf\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7045,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.001,\"z\":0.0169}},\"308386\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.8037,\"z\":5.757},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"3fe126\":{\"lock\":false,\"pos\":{\"x\":-3.9971,\"y\":1.5826,\"z\":-15.0596},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":0.0168}},\"4d8a79\":{\"lock\":false,\"pos\":{\"x\":-12.0414,\"y\":1.4162,\"z\":10.1505},\"rot\":{\"x\":359.9826,\"y\":359.6253,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.7179,\"y\":1.6285,\"z\":0.059},\"rot\":{\"x\":359.9201,\"y\":269.9936,\"z\":0.0169}},\"7cd1b4\":{\"lock\":false,\"pos\":{\"x\":-12.0817,\"y\":1.6749,\"z\":13.617},\"rot\":{\"x\":359.9201,\"y\":270.0193,\"z\":0.0168}},\"976ab3\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6959,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9981,\"z\":0.0687}},\"a92959\":{\"lock\":false,\"pos\":{\"x\":-12.2766,\"y\":1.4116,\"z\":-6.9025},\"rot\":{\"x\":359.9826,\"y\":359.6471,\"z\":359.9201}},\"c9aba5\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0117,\"z\":0.0169}},\"de8bb6\":{\"lock\":false,\"pos\":{\"x\":-5.9501,\"y\":1.6583,\"z\":-4.9413},\"rot\":{\"x\":0.0803,\"y\":89.991,\"z\":359.9832}},\"df4773\":{\"lock\":false,\"pos\":{\"x\":-12.0606,\"y\":1.4153,\"z\":6.9461},\"rot\":{\"x\":359.9826,\"y\":359.6064,\"z\":359.9201}},\"e94e6a\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180.0048,\"z\":0.0799}},\"f919fb\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"ff9ef7\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180.0049,\"z\":0.0799}}}}", - "ContainedObjects": [ - { - "Name": "Bag", - "Transform": { - "posX": -12.3724995, - "posY": 1.41074646, - "posZ": -10.0935, - "rotX": 359.9825, - "rotY": 359.572144, - "rotZ": 359.920166, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Jerome Davids", - "Description": "Check your campaign log to see which assets are used for this scenario", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.7961671, - "g": 0.6238528, - "b": 0.0485465154 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 16.5156631, - "posY": 3.39582157, - "posZ": 62.1980438, - "rotX": 1.05251372, - "rotY": 270.039734, - "rotZ": 2.95118141, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Jerome Davids", - "Description": "In Way Over His Head", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312512, - "SidewaysCard": false, - "CustomDeck": { - "3125": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d99735" - }, - { - "Name": "Card", - "Transform": { - "posX": 16.59595, - "posY": 3.42349625, - "posZ": 61.9471664, - "rotX": 0.130632967, - "rotY": 270.000671, - "rotZ": 0.860997736, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Jerome Davids", - "Description": "Starved for Answers", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312420, - "SidewaysCard": false, - "CustomDeck": { - "3124": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "03d161" - } - ], - "GUID": "01b2f4" - }, - { - "Name": "Bag", - "Transform": { - "posX": 0.601700842, - "posY": 1.39421773, - "posZ": -4.6511, - "rotX": 359.983154, - "rotY": -0.00436139246, - "rotZ": 359.919678, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Choose the appropiate act deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.0, - "g": 0.0, - "b": 0.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Deck", - "Transform": { - "posX": 0.23602137, - "posY": 3.72991681, - "posZ": -5.026141, - "rotX": 0.331751645, - "rotY": 179.979309, - "rotZ": 359.427246, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act deck 4", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 312318, - 312316, - 312312, - 312311 - ], - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 35.17768, - "posY": 1.35963142, - "posZ": 86.7354, - "rotX": 0.0178930666, - "rotY": 179.993759, - "rotZ": 359.972076, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Broken Rite", - "Description": "Act 4", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312318, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "69cb27" - }, - { - "Name": "Card", - "Transform": { - "posX": 35.54324, - "posY": 1.52220082, - "posZ": 86.34647, - "rotX": 0.0235369857, - "rotY": 179.995529, - "rotZ": 359.978729, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Beyond the Mist (v.iv)", - "Description": "Act 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312316, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "43e32c" - }, - { - "Name": "Card", - "Transform": { - "posX": 42.7906075, - "posY": 1.51721013, - "posZ": 87.14333, - "rotX": 0.01583153, - "rotY": 179.994324, - "rotZ": 359.977234, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fated Souls", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312312, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5a6ee0" - }, - { - "Name": "Card", - "Transform": { - "posX": 42.752037, - "posY": 1.52329528, - "posZ": 86.70215, - "rotX": 0.01787383, - "rotY": 180.017426, - "rotZ": 359.96228, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Unvisited Isle", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312311, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "105a09" - } - ], - "GUID": "46a22b" - }, - { - "Name": "Deck", - "Transform": { - "posX": 0.998252451, - "posY": 3.73006868, - "posZ": -4.334121, - "rotX": 359.6625, - "rotY": 179.99382, - "rotZ": 0.652902544, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act deck 3", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 312318, - 312315, - 312312, - 312311 - ], - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 35.17768, - "posY": 1.35963142, - "posZ": 86.7354, - "rotX": 0.0178930666, - "rotY": 179.993759, - "rotZ": 359.972076, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Broken Rite", - "Description": "Act 4", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312318, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "69cb27" - }, - { - "Name": "Card", - "Transform": { - "posX": 35.1743622, - "posY": 1.50851762, - "posZ": 86.41296, - "rotX": 0.01734771, - "rotY": 180.002411, - "rotZ": 359.974762, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Beyond the Mist (v.iii)", - "Description": "Act 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312315, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7a14df" - }, - { - "Name": "Card", - "Transform": { - "posX": 42.7906075, - "posY": 1.51721013, - "posZ": 87.14333, - "rotX": 0.01583153, - "rotY": 179.994324, - "rotZ": 359.977234, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fated Souls", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312312, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5a6ee0" - }, - { - "Name": "Card", - "Transform": { - "posX": 42.752037, - "posY": 1.52329528, - "posZ": 86.70215, - "rotX": 0.01787383, - "rotY": 180.017426, - "rotZ": 359.96228, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Unvisited Isle", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312311, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "105a09" - } - ], - "GUID": "95e124" - }, - { - "Name": "Deck", - "Transform": { - "posX": 0.998232961, - "posY": 3.71798468, - "posZ": 0.3140087, - "rotX": 0.0168787017, - "rotY": 179.993851, - "rotZ": 0.07989697, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act deck 2", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 312318, - 312314, - 312312, - 312311 - ], - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 35.17768, - "posY": 1.35963142, - "posZ": 86.7354, - "rotX": 0.0178930666, - "rotY": 179.993759, - "rotZ": 359.972076, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Broken Rite", - "Description": "Act 4", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312318, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "69cb27" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.8555021, - "posY": 2.55597639, - "posZ": -52.9200325, - "rotX": 0.0168702248, - "rotY": 180.0, - "rotZ": 0.0798789, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Beyond the Mist (v.ii)", - "Description": "Act 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312314, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e2e22d" - }, - { - "Name": "Card", - "Transform": { - "posX": 42.7906075, - "posY": 1.51721013, - "posZ": 87.14333, - "rotX": 0.01583153, - "rotY": 179.994324, - "rotZ": 359.977234, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fated Souls", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312312, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5a6ee0" - }, - { - "Name": "Card", - "Transform": { - "posX": 42.752037, - "posY": 1.52329528, - "posZ": 86.70215, - "rotX": 0.01787383, - "rotY": 180.017426, - "rotZ": 359.96228, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Unvisited Isle", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312311, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "105a09" - } - ], - "GUID": "4bfab7" - }, - { - "Name": "Deck", - "Transform": { - "posX": 0.336339772, - "posY": 3.73190331, - "posZ": -4.35674524, - "rotX": 359.7062, - "rotY": 180.004379, - "rotZ": 359.528473, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act deck 1", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 312317, - 312313, - 312312, - 312311 - ], - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 35.28919, - "posY": 1.50461233, - "posZ": 86.5776749, - "rotX": 0.03455867, - "rotY": 179.992249, - "rotZ": 359.97522, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Binding Rite", - "Description": "Act 4", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312317, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8be145" - }, - { - "Name": "Card", - "Transform": { - "posX": 43.1273766, - "posY": 1.51220691, - "posZ": 86.5578461, - "rotX": 0.011362901, - "rotY": 180.0067, - "rotZ": 359.972015, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Beyond the Mist (v.i)", - "Description": "Act 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312313, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ea642f" - }, - { - "Name": "Card", - "Transform": { - "posX": 42.7906075, - "posY": 1.51721013, - "posZ": 87.14333, - "rotX": 0.01583153, - "rotY": 179.994324, - "rotZ": 359.977234, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fated Souls", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312312, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5a6ee0" - }, - { - "Name": "Card", - "Transform": { - "posX": 42.752037, - "posY": 1.52329528, - "posZ": 86.70215, - "rotX": 0.01787383, - "rotY": 180.017426, - "rotZ": 359.96228, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Unvisited Isle", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312311, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "105a09" - } - ], - "GUID": "352387" - } - ], - "GUID": "15f544" - }, - { - "Name": "Card", - "Transform": { - "posX": -36.7731, - "posY": 1.70448267, - "posZ": -0.0301005617, - "rotX": 359.9201, - "rotY": 270.001038, - "rotZ": 0.0168748442, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Miskatonic River", - "Description": "River.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312913, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "2c3cbf" - }, - { - "Name": "Deck", - "Transform": { - "posX": -3.927512, - "posY": 1.79835689, - "posZ": 5.75700426, - "rotX": 359.919739, - "rotY": 270.000061, - "rotZ": 180.016815, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231823, - 231816, - 231816, - 231821, - 231820, - 231822, - 312615, - 231823, - 12121, - 312618, - 312619, - 312617, - 231817, - 12120, - 12122, - 231823, - 312616, - 312620, - 231817, - 12122, - 312616, - 231822, - 312619, - 312616, - 231820, - 12120, - 312618, - 231815, - 312617, - 312615, - 12121, - 12120, - 231822, - 231821, - 312620 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -23.46502, - "posY": 2.16774321, - "posZ": -34.8072357, - "rotX": 0.232217044, - "rotY": 270.777466, - "rotZ": 353.199249, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fbcb9f" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.9589443, - "posY": 1.57623374, - "posZ": -40.001133, - "rotX": 359.919617, - "rotY": 269.9781, - "rotZ": 0.0166504774, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shadow Hound", - "Description": "Monster. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231816, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c9136e" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.7281628, - "posY": 1.7203182, - "posZ": -40.06545, - "rotX": 359.911, - "rotY": 269.9779, - "rotZ": 0.0166180339, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shadow Hound", - "Description": "Monster. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231816, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9d53c1" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.9579411, - "posY": 1.72431993, - "posZ": -29.8048172, - "rotX": 359.8922, - "rotY": 269.971619, - "rotZ": 0.06810118, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shapes in the Mist", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231821, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3c04e0" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.91995, - "posY": 1.77833688, - "posZ": -29.84826, - "rotX": 359.884155, - "rotY": 269.9732, - "rotZ": 0.074736394, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Realm of Torment", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231820, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "278e46" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.27985, - "posY": 1.99979043, - "posZ": -34.2781525, - "rotX": 359.187378, - "rotY": 270.910339, - "rotZ": 355.236023, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "43ba03" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.5409679, - "posY": 1.46492875, - "posZ": 66.74556, - "rotX": 0.02031056, - "rotY": 270.011963, - "rotZ": 0.01745984, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Spectral Raven", - "Description": "Creature. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312615, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0f6a54" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.7152367, - "posY": 1.91512489, - "posZ": -32.59262, - "rotX": 359.910583, - "rotY": 269.364441, - "rotZ": 341.912537, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ef132d" - }, - { - "Name": "Card", - "Transform": { - "posX": 114.196693, - "posY": 1.5660888, - "posZ": 0.6905602, - "rotX": 0.678696752, - "rotY": 270.054779, - "rotZ": 1.15300965, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Crypt Chill", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12121, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b78c3b" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.7520781, - "posY": 1.50085175, - "posZ": 66.91246, - "rotX": 0.018156765, - "rotY": 270.0284, - "rotZ": 0.02139155, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Psychopomp's Song", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312618, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "292724" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.6781693, - "posY": 1.34609175, - "posZ": 66.53277, - "rotX": 0.0244889967, - "rotY": 270.024231, - "rotZ": 0.01303638, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Death Approaches", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312619, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d4452d" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.738122, - "posY": 1.49504566, - "posZ": 66.4728546, - "rotX": 0.016593812, - "rotY": 270.0216, - "rotZ": 0.0190968849, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Eager for Death", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312617, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1f2790" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.3439846, - "posY": 1.72281778, - "posZ": -40.31694, - "rotX": 359.918823, - "rotY": 269.9783, - "rotZ": 0.01890598, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispers in the Dark", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231817, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c4c440" - }, - { - "Name": "Card", - "Transform": { - "posX": 115.318665, - "posY": 1.5414474, - "posZ": 1.587292, - "rotX": 359.989929, - "rotY": 270.000031, - "rotZ": 359.9876, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1921c5" - }, - { - "Name": "Card", - "Transform": { - "posX": 114.345848, - "posY": 1.40365446, - "posZ": 1.09680057, - "rotX": 359.987427, - "rotY": 270.0, - "rotZ": 359.984558, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Obscuring Fog", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12122, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "356046" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.6707478, - "posY": 1.76058781, - "posZ": -33.23441, - "rotX": 359.465271, - "rotY": 269.459351, - "rotZ": 9.029153, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "717c42" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.6381521, - "posY": 1.53795457, - "posZ": 66.5653152, - "rotX": 0.02065301, - "rotY": 270.030853, - "rotZ": 0.01686186, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whippoorwill", - "Description": "Creature.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312616, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "582874" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.6993036, - "posY": 1.49622345, - "posZ": 67.3393555, - "rotX": 0.0255488418, - "rotY": 270.0217, - "rotZ": 359.961548, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Marked for Death", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312620, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d21848" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.812706, - "posY": 1.72420788, - "posZ": -39.9615822, - "rotX": 359.9189, - "rotY": 269.9785, - "rotZ": 0.0168172251, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispers in the Dark", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231817, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "aa8c0e" - }, - { - "Name": "Card", - "Transform": { - "posX": 114.314957, - "posY": 1.54512763, - "posZ": 0.6048646, - "rotX": 359.989929, - "rotY": 270.0, - "rotZ": 359.98764, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Obscuring Fog", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12122, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "03a265" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.764946, - "posY": 1.49348664, - "posZ": 66.5689, - "rotX": 0.0188208539, - "rotY": 270.023376, - "rotZ": 0.0156058017, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whippoorwill", - "Description": "Creature.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312616, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "582874" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.3842, - "posY": 2.1039958, - "posZ": -34.9055138, - "rotX": 359.182831, - "rotY": 270.902466, - "rotZ": 355.1978, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4f41b0" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.7743082, - "posY": 1.49132657, - "posZ": 66.9497757, - "rotX": 0.0142956963, - "rotY": 270.002075, - "rotZ": 359.971527, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Death Approaches", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312619, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a81e3d" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.7430582, - "posY": 1.50304949, - "posZ": 66.25444, - "rotX": 0.0196000263, - "rotY": 270.01767, - "rotZ": 0.01730376, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whippoorwill", - "Description": "Creature.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312616, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "582874" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.5189228, - "posY": 1.92383051, - "posZ": -29.7425785, - "rotX": 359.8803, - "rotY": 269.977753, - "rotZ": 0.07589612, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Realm of Torment", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231820, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e49187" - }, - { - "Name": "Card", - "Transform": { - "posX": 115.309677, - "posY": 1.40331125, - "posZ": 1.5845021, - "rotX": 359.987427, - "rotY": 270.0, - "rotZ": 359.984558, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e0f4c0" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.55829, - "posY": 1.50713491, - "posZ": 66.40654, - "rotX": 0.0186886359, - "rotY": 270.019684, - "rotZ": 0.0154543091, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Psychopomp's Song", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312618, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "292724" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.8214874, - "posY": 1.73793507, - "posZ": -39.8119354, - "rotX": 359.9189, - "rotY": 269.9784, - "rotZ": 0.0163416639, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nether Mist.", - "Description": "Monster. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231815, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d32fa0" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.7001686, - "posY": 1.50878441, - "posZ": 66.88676, - "rotX": 0.0180376209, - "rotY": 270.022552, - "rotZ": 0.015583, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Eager for Death", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312617, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1f2790" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.6192122, - "posY": 1.47448981, - "posZ": 66.46063, - "rotX": 0.0176389478, - "rotY": 270.019257, - "rotZ": 0.0141896484, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Spectral Raven", - "Description": "Creature. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312615, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0f6a54" - }, - { - "Name": "Card", - "Transform": { - "posX": 114.522324, - "posY": 1.55249166, - "posZ": 0.8631874, - "rotX": 359.9873, - "rotY": 270.023346, - "rotZ": 359.9829, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Crypt Chill", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12121, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fb311c" - }, - { - "Name": "Card", - "Transform": { - "posX": 114.991905, - "posY": 1.59937644, - "posZ": 1.31244183, - "rotX": 1.97711754, - "rotY": 270.070251, - "rotZ": 359.990356, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "61e841" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6618786, - "posY": 2.18380141, - "posZ": -35.4214439, - "rotX": 359.156219, - "rotY": 270.890381, - "rotZ": 355.0201, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1a350a" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.974844, - "posY": 1.58076048, - "posZ": -29.1853924, - "rotX": 359.916321, - "rotY": 269.977448, - "rotZ": 0.01572173, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shapes in the Mist", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231821, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "47147f" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.7586489, - "posY": 1.4931128, - "posZ": 67.25514, - "rotX": 0.014992889, - "rotY": 270.0251, - "rotZ": -0.0006061943, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Marked for Death", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312620, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d21848" - } - ], - "GUID": "308386" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.99709988, - "posY": 1.58263516, - "posZ": -15.0596037, - "rotX": 359.919739, - "rotY": 270.000549, - "rotZ": 0.0168370251, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "Union and Disillusion", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'For the Greater Good'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", - "LuaScriptState": "", - "GUID": "3fe126" - }, - { - "Name": "Bag", - "Transform": { - "posX": -12.041398, - "posY": 1.41624629, - "posZ": 10.1505013, - "rotX": 359.9826, - "rotY": 359.625458, - "rotZ": 359.920135, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Valentino Rivas", - "Description": "Check your campaign log to see which assets are used for this scenario", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.149620354, - "g": 0.433797479, - "b": 0.112605818 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 10.1851606, - "posY": 3.3869102, - "posZ": 62.9403229, - "rotX": 0.170986146, - "rotY": 269.985718, - "rotZ": 356.4469, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Valentino Rivas", - "Description": "Took You Long Enough", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312514, - "SidewaysCard": false, - "CustomDeck": { - "3125": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "726d1d" - }, - { - "Name": "Card", - "Transform": { - "posX": 10.5905542, - "posY": 3.4228456, - "posZ": 62.9285431, - "rotX": 359.715485, - "rotY": 269.9952, - "rotZ": 359.283234, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Valentino Rivas", - "Description": "Ripped Asunder", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312422, - "SidewaysCard": false, - "CustomDeck": { - "3124": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "723cb3" - } - ], - "GUID": "4d8a79" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -33.7179, - "posY": 1.628535, - "posZ": 0.05899978, - "rotX": 359.9201, - "rotY": 269.99353, - "rotZ": 0.0169086326, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7234af", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Deck", - "Transform": { - "posX": -12.0816994, - "posY": 1.67493558, - "posZ": 13.617, - "rotX": 359.9201, - "rotY": 270.019257, - "rotZ": 0.0168498326, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unvisited Isle", - "Description": "Shuffle and draw two random cards and put them into play. Set the remaining locations aside.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 312915, - 312917, - 312920, - 312918, - 312919, - 312916 - ], - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 6.32896566, - "posY": 1.59139073, - "posZ": 52.1738, - "rotX": 0.00671885163, - "rotY": 270.0194, - "rotZ": 359.819183, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unvisited Isle", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312915, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b6bad1" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.326119, - "posY": 1.38597572, - "posZ": 51.5215569, - "rotX": 0.0243220236, - "rotY": 269.999329, - "rotZ": 359.895142, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unvisited Isle", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312917, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "763808" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.12983, - "posY": 1.78647959, - "posZ": 51.7469177, - "rotX": 0.000309893163, - "rotY": 269.998474, - "rotZ": 359.853333, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unvisited Isle", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312920, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d3d507" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.1658144, - "posY": 1.53217626, - "posZ": 51.3674545, - "rotX": 0.008162117, - "rotY": 270.015137, - "rotZ": 359.852234, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unvisited Isle", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312918, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0e7c75" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.269921, - "posY": 1.64109087, - "posZ": 51.53916, - "rotX": 0.01828617, - "rotY": 269.993164, - "rotZ": 359.8429, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unvisited Isle", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312919, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7b8b0d" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.4932623, - "posY": 1.82444286, - "posZ": 13.5781155, - "rotX": 359.938, - "rotY": 270.003754, - "rotZ": 0.01362878, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unvisited Isle", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312916, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0b9471" - } - ], - "GUID": "7cd1b4" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.95580029, - "posY": 1.65564787, - "posZ": -10.4412012, - "rotX": 359.919739, - "rotY": 269.999817, - "rotZ": 0.0168412179, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "Union and Disillusion", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312408, - "SidewaysCard": false, - "CustomDeck": { - "3124": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "976ab3" - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 1.69590068, - "posY": 1.55831766, - "posZ": 14.2787018, - "rotX": 359.955139, - "rotY": 224.997986, - "rotZ": 0.06867291, - "scaleX": 2.0, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "Nickname": "Set-aside", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.02148666, - "g": 0.00100758043, - "b": 0.02148666 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", - "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 1, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Deck", - "Transform": { - "posX": 26.0301323, - "posY": 3.40631747, - "posZ": 59.986618, - "rotX": 0.00703197345, - "rotY": 269.99115, - "rotZ": 359.1912, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Anette’s Coven", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231806, - 231805, - 231805, - 231805 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -25.8414345, - "posY": 1.57860494, - "posZ": -36.132618, - "rotX": 359.919647, - "rotY": 269.974, - "rotZ": 0.0165877342, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Priestess of the Coven", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231806, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "326f11" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.6442871, - "posY": 1.72278082, - "posZ": -36.0347443, - "rotX": 359.911224, - "rotY": 269.974, - "rotZ": 0.0136959022, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Coven Initiate", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231805, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c35966" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.7267475, - "posY": 1.74028778, - "posZ": -36.1106224, - "rotX": 359.918823, - "rotY": 269.9739, - "rotZ": 0.0168967526, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Coven Initiate", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231805, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6f2c2e" - }, - { - "Name": "Card", - "Transform": { - "posX": -26.0635834, - "posY": 1.72707784, - "posZ": -35.83386, - "rotX": 359.920868, - "rotY": 269.973969, - "rotZ": 0.0147350542, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Coven Initiate", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231805, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "367d03" - } - ], - "GUID": "bd372e" - }, - { - "Name": "Deck", - "Transform": { - "posX": 26.1715622, - "posY": 3.4023025, - "posZ": 63.1447678, - "rotX": 0.0208224747, - "rotY": 269.980743, - "rotZ": 0.0167681612, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Silver Twilight Lodge", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231812, - 231812, - 231810, - 231810, - 231810, - 231811 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -18.7109814, - "posY": 1.56981552, - "posZ": -32.18543, - "rotX": 359.91922, - "rotY": 269.979279, - "rotZ": 0.0165627878, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysteries of the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231812, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0eb939" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.6118813, - "posY": 1.71404207, - "posZ": -32.3841057, - "rotX": 359.91098, - "rotY": 269.979034, - "rotZ": 0.0195768736, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysteries of the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231812, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7870f6" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.5851078, - "posY": 1.73144269, - "posZ": -32.35143, - "rotX": 359.919037, - "rotY": 269.979156, - "rotZ": 0.01716643, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Neophyte", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231810, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "408a82" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.3490829, - "posY": 1.71755159, - "posZ": -31.918066, - "rotX": 359.918579, - "rotY": 269.9797, - "rotZ": 0.0158215724, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Neophyte", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231810, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "525275" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.6574612, - "posY": 1.71596491, - "posZ": -31.9956455, - "rotX": 359.918976, - "rotY": 269.979736, - "rotZ": 0.0163928568, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Neophyte", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231810, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8dac94" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.7752514, - "posY": 1.71879411, - "posZ": -32.00056, - "rotX": 359.919342, - "rotY": 269.979553, - "rotZ": 0.0157596618, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Keeper of Secrets", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231811, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3761ce" - } - ], - "GUID": "747a12" - }, - { - "Name": "Deck", - "Transform": { - "posX": 26.355526, - "posY": 3.41626024, - "posZ": 56.5081444, - "rotX": 359.664368, - "rotY": 269.9748, - "rotZ": 0.0141816773, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Watcher", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231802, - 231802, - 231801 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -27.8545532, - "posY": 1.58170176, - "posZ": -34.8676262, - "rotX": 359.915649, - "rotY": 269.974121, - "rotZ": 0.01525554, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Watcher's Grasp", - "Description": "Power. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231802, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f798c8" - }, - { - "Name": "Card", - "Transform": { - "posX": -27.9526443, - "posY": 1.72608125, - "posZ": -34.6397629, - "rotX": 359.9233, - "rotY": 269.9745, - "rotZ": 0.00772151956, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Watcher's Grasp", - "Description": "Power. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231802, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f92f1e" - }, - { - "Name": "Card", - "Transform": { - "posX": -27.4475632, - "posY": 1.74305177, - "posZ": -34.8419075, - "rotX": 359.9185, - "rotY": 269.974243, - "rotZ": 0.0167756584, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Spectral Watcher", - "Description": "You Are Its Prey", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231801, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a1eb9b" - } - ], - "GUID": "28374b" - }, - { - "Name": "Card", - "Transform": { - "posX": 24.7874584, - "posY": 3.41788054, - "posZ": 57.00284, - "rotX": 0.0208195858, - "rotY": 270.01297, - "rotZ": 0.0167733133, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Watcher's Gaze", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312621, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "940982" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.42768, - "posY": 3.41823053, - "posZ": 57.0940857, - "rotX": 0.0207847822, - "rotY": 270.0282, - "rotZ": 0.016788546, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Josef Meiger", - "Description": "Lodge Host", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231921, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ffedcd" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.5652676, - "posY": 3.40047717, - "posZ": 60.1692467, - "rotX": 0.0208106264, - "rotY": 269.99408, - "rotZ": 0.0167708788, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Anette Mason", - "Description": "The High Priestess", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231800, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "845563" - }, - { - "Name": "Card", - "Transform": { - "posX": 16.3543873, - "posY": 2.99721336, - "posZ": -25.0456238, - "rotX": 359.920135, - "rotY": 270.000153, - "rotZ": 0.0168761238, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Geist-Trap", - "Description": "Woods. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312921, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bcd556" - } - ], - "PhysicsMaterial": { - "StaticFriction": 0.6, - "DynamicFriction": 0.6, - "Bounciness": 0.0, - "FrictionCombine": 0, - "BounceCombine": 0 - }, - "Rigidbody": { - "Mass": 1.375, - "Drag": 5.0, - "AngularDrag": 5.0, - "UseGravity": true - }, - "GUID": "a45247" - }, - { - "Name": "Bag", - "Transform": { - "posX": -12.276598, - "posY": 1.41155243, - "posZ": -6.902501, - "rotX": 359.982635, - "rotY": 359.647064, - "rotZ": 359.920135, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Gavriella Mizrah", - "Description": "Check your campaign log to see which assets are used for this scenario", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.09311653, - "g": 0.0185841657, - "b": 0.8205576 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 13.76362, - "posY": 3.382562, - "posZ": 61.98181, - "rotX": 359.6189, - "rotY": 269.970642, - "rotZ": 3.68352914, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Gavriella Mizrah", - "Description": "Not Going Down That Easily", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312511, - "SidewaysCard": false, - "CustomDeck": { - "3125": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "2237f4" - }, - { - "Name": "Card", - "Transform": { - "posX": 13.7222319, - "posY": 3.42867041, - "posZ": 62.23854, - "rotX": 359.938263, - "rotY": 269.987762, - "rotZ": 0.606381536, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Gavriella Mizrah", - "Description": "You're Next", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312419, - "SidewaysCard": false, - "CustomDeck": { - "3124": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "367d1d" - } - ], - "GUID": "a92959" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2243, - "posY": 1.69535077, - "posZ": -0.03000033, - "rotX": 359.9201, - "rotY": 270.011658, - "rotZ": 0.0168599971, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Forbidding Shore", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312914, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c9aba5" - }, - { - "Name": "Notecard", - "Transform": { - "posX": -5.952036, - "posY": 1.61604857, - "posZ": -4.94174147, - "rotX": 359.6874, - "rotY": 89.96019, - "rotZ": 1.09442353, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "Choose the appropiate Act deck", - "Description": "Deck 1: Investigators sided with the Lodge\nDeck 2: Investigators sided with the Coven, decveived the Lodge AND were inducted into the Circle\nDeck 3: If the above is NOT true, investigators sided with the Coven and at least TWO of the following are true: deceiving the Lodge, hiding knowledge of the Coven, hid mementos\nDeck 4: None of the above is true, sided with Coven", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": false, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "de8bb6" - }, - { - "Name": "Bag", - "Transform": { - "posX": -12.0605984, - "posY": 1.415331, - "posZ": 6.94610262, - "rotX": 359.982574, - "rotY": 359.6063, - "rotZ": 359.920135, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Penny White", - "Description": "Check your campaign log to see which assets are used for this scenario", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.5487805, - "g": 0.05449549, - "b": 0.05449549 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 9.043777, - "posY": 3.4052, - "posZ": 59.8786736, - "rotX": 0.194419473, - "rotY": 270.02478, - "rotZ": 2.24903536, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Penny White", - "Description": "The Nightmare is Over", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312513, - "SidewaysCard": false, - "CustomDeck": { - "3125": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "73bccf" - }, - { - "Name": "Card", - "Transform": { - "posX": 9.474563, - "posY": 3.424348, - "posZ": 59.85384, - "rotX": 359.617157, - "rotY": 270.02243, - "rotZ": 0.496872425, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Penny White", - "Description": "Tragic Loss", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312421, - "SidewaysCard": false, - "CustomDeck": { - "3124": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "31bd61" - } - ], - "GUID": "df4773" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2243, - "posY": 1.62478256, - "posZ": 3.86000061, - "rotX": 0.0168653019, - "rotY": 180.004608, - "rotZ": 0.0799400955, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e94e6a", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.72459984, - "posY": 1.66397727, - "posZ": 0.373300523, - "rotX": 0.0168352332, - "rotY": 179.999878, - "rotZ": 0.0802578256, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agenda deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 312310, - 312309 - ], - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 44.3959923, - "posY": 1.36092937, - "posZ": 79.4062958, - "rotX": 0.0140304007, - "rotY": 179.994614, - "rotZ": 359.979431, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Crossroads of Fate", - "Description": "Agenda 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312310, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "abace6" - }, - { - "Name": "Card", - "Transform": { - "posX": 43.9007072, - "posY": 1.5056318, - "posZ": 79.3353958, - "rotX": 0.00339584588, - "rotY": 180.0137, - "rotZ": 359.959167, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "THE LOVERS · VI", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312309, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "90788e" - } - ], - "GUID": "f919fb" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2243, - "posY": 1.62251818, - "posZ": -3.83000016, - "rotX": 0.0168652274, - "rotY": 180.004684, - "rotZ": 0.07994083, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ff9ef7", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - } - ], - "GUID": "20f70a", - "AttachedDecals": [ - { - "Transform": { - "posX": -0.0021877822, - "posY": -0.08963572, - "posZ": -0.00288731651, - "rotX": 270.0, - "rotY": 359.869568, - "rotZ": 0.0, - "scaleX": 2.00000215, - "scaleY": 2.00000238, - "scaleZ": 2.00000262 - }, - "CustomDecal": { - "Name": "dunwich_back", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", - "Size": 7.4 - } - } - ] - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 12.2493019, - "posY": 1.47502923, - "posZ": 35.9864044, - "rotX": 359.920135, - "rotY": 270.000031, - "rotZ": 0.01687357, - "scaleX": 2.21, - "scaleY": 0.46, - "scaleZ": 2.42 - }, - "Nickname": "Prologue: Disappearance at the Twilight Estate", - "Description": "The Circle Undone", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/829135118401802201/BBA2D56684DEDDE1029593B9CD9C931FAE39348B/", - "NormalURL": "", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CustomShader": { - "SpecularColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0 - }, - "SpecularIntensity": 0.0, - "SpecularSharpness": 2.0, - "FresnelStrength": 0.0 - }, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", - "LuaScriptState": "{\"ml\":{\"05f912\":{\"lock\":false,\"pos\":{\"x\":-3.7579,\"y\":1.5825,\"z\":-14.3157},\"rot\":{\"x\":359.9197,\"y\":270.0054,\"z\":0.0168}},\"060886\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"327f3b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"349eb6\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6907,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"3b69ae\":{\"lock\":false,\"pos\":{\"x\":-23.6767,\"y\":1.6817,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"62c1c6\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9996,\"z\":0.0799}},\"6913e9\":{\"lock\":false,\"pos\":{\"x\":-20.4586,\"y\":1.61,\"z\":-0.0349},\"rot\":{\"x\":0.0799,\"y\":89.9997,\"z\":359.9831}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-27.2548,\"y\":1.6194,\"z\":-0.19},\"rot\":{\"x\":359.9201,\"y\":269.9944,\"z\":0.0169}},\"7cb46b\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"8f704c\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7157,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"94ef8e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"9dd605\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9998,\"z\":0.0799}},\"a1eb9b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6965,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"a6d5fb\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9995,\"z\":0.0799}},\"aa1331\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0011,\"z\":0.0803}},\"e4fd93\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6179,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"f2806a\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"f4f8dc\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6555,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"f5616e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"fa2600\":{\"lock\":false,\"pos\":{\"x\":-12.2948,\"y\":1.4158,\"z\":7.4542},\"rot\":{\"x\":359.9831,\"y\":-0.0002,\"z\":359.92}}}}", - "ContainedObjects": [ - { - "Name": "Deck", - "Transform": { - "posX": -3.92770076, - "posY": 1.71574712, - "posZ": 5.7571, - "rotX": 359.919739, - "rotY": 270.004883, - "rotZ": 0.0168388188, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 12121, - 12121, - 275023, - 275020, - 12122, - 275016, - 275021, - 275023, - 275022, - 275002, - 275022, - 275022, - 12122, - 275020, - 275018, - 275021, - 275016, - 275015, - 275019, - 275017, - 275017, - 275023, - 275018, - 275002, - 275019 - ], - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2750": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -28.5070229, - "posY": 1.75684988, - "posZ": 9.774932, - "rotX": 354.0092, - "rotY": 269.797241, - "rotZ": 0.05575819, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Crypt Chill", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12121, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fb311c" - }, - { - "Name": "Card", - "Transform": { - "posX": -28.2133236, - "posY": 1.596211, - "posZ": 12.41327, - "rotX": 359.920135, - "rotY": 269.999756, - "rotZ": 0.0168656427, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Crypt Chill", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12121, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b78c3b" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.3964348, - "posY": 1.59983659, - "posZ": 9.659243, - "rotX": 359.919434, - "rotY": 269.9977, - "rotZ": 0.0151809463, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275023, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fbcb9f" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.8700485, - "posY": 1.687739, - "posZ": 1.73515284, - "rotX": 359.920563, - "rotY": 269.9831, - "rotZ": 355.3065, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Realm of Torment", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275020, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "278e46" - }, - { - "Name": "Card", - "Transform": { - "posX": -28.4553566, - "posY": 1.59503615, - "posZ": 7.27901125, - "rotX": 359.920135, - "rotY": 269.993866, - "rotZ": 0.0168785062, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Obscuring Fog", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12122, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "356046" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.6406765, - "posY": 1.59453154, - "posZ": -9.515267, - "rotX": 359.9201, - "rotY": 270.014374, - "rotZ": 0.0168471411, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shadow Hound", - "Description": "Monster. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275016, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c9136e" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.573534, - "posY": 1.59301436, - "posZ": -14.3349619, - "rotX": 359.9199, - "rotY": 269.991882, - "rotZ": 0.0167854447, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shapes in the Mist", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275021, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "47147f" - }, - { - "Name": "Card", - "Transform": { - "posX": -27.9579372, - "posY": 1.5929203, - "posZ": 2.44796968, - "rotX": 359.920135, - "rotY": 269.9995, - "rotZ": 0.0168674216, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275023, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "717c42" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.4375153, - "posY": 1.59565043, - "posZ": -4.75423574, - "rotX": 359.920135, - "rotY": 270.0017, - "rotZ": 0.016865246, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275022, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4f41b0" - }, - { - "Name": "Card", - "Transform": { - "posX": -26.8521061, - "posY": 1.58786321, - "posZ": -9.490302, - "rotX": 359.920135, - "rotY": 269.999969, - "rotZ": 0.0168652888, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Watcher's Grasp", - "Description": "Power. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275002, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f798c8" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.7596, - "posY": 1.67825866, - "posZ": -2.013425, - "rotX": 359.92, - "rotY": 270.000549, - "rotZ": 4.292792, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275022, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "43ba03" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.7052422, - "posY": 1.59740448, - "posZ": -0.0485267043, - "rotX": 359.919922, - "rotY": 270.007019, - "rotZ": 0.0168208443, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275022, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1a350a" - }, - { - "Name": "Card", - "Transform": { - "posX": -28.2566147, - "posY": 1.59406376, - "posZ": 4.91735125, - "rotX": 359.920135, - "rotY": 269.9997, - "rotZ": 0.0168691725, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Obscuring Fog", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12122, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "03a265" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.7993183, - "posY": 1.59880829, - "posZ": 4.25690842, - "rotX": 359.920135, - "rotY": 269.999573, - "rotZ": 0.01687331, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Realm of Torment", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275020, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e49187" - }, - { - "Name": "Card", - "Transform": { - "posX": -27.3012123, - "posY": 1.58601832, - "posZ": -17.8810863, - "rotX": 359.920135, - "rotY": 269.999756, - "rotZ": 0.0168696512, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wraith", - "Description": "Monster. Geist. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275018, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7732b3" - }, - { - "Name": "Card", - "Transform": { - "posX": -32.68019, - "posY": 1.67363954, - "posZ": -12.2995234, - "rotX": 359.920166, - "rotY": 269.988342, - "rotZ": 355.892548, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shapes in the Mist", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275021, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3c04e0" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.2036572, - "posY": 1.59459114, - "posZ": -7.24409771, - "rotX": 359.920135, - "rotY": 270.006256, - "rotZ": 0.01685856, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shadow Hound", - "Description": "Monster. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275016, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9d53c1" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.7644672, - "posY": 1.59955311, - "posZ": 6.95123863, - "rotX": 359.920135, - "rotY": 269.998657, - "rotZ": 0.01686673, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nether Mist.", - "Description": "Monster. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275015, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d32fa0" - }, - { - "Name": "Card", - "Transform": { - "posX": -27.7993889, - "posY": 1.59196377, - "posZ": -0.0492937826, - "rotX": 359.920135, - "rotY": 269.99942, - "rotZ": 0.0168678835, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Trapped Spirits", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275019, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "10c2cb" - }, - { - "Name": "Card", - "Transform": { - "posX": -26.9741821, - "posY": 1.661381, - "posZ": -14.4091225, - "rotX": 359.9201, - "rotY": 270.005066, - "rotZ": 3.94704032, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispers in the Dark", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275017, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c4c440" - }, - { - "Name": "Card", - "Transform": { - "posX": -26.918148, - "posY": 1.58713388, - "posZ": -12.2730618, - "rotX": 359.920074, - "rotY": 270.006378, - "rotZ": 0.0167598221, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispers in the Dark", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275017, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "aa8c0e" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.396637, - "posY": 1.67693043, - "posZ": 11.7433891, - "rotX": 359.9186, - "rotY": 270.000336, - "rotZ": 356.001038, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275023, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ef132d" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.9720936, - "posY": 1.59132147, - "posZ": -17.2514343, - "rotX": 359.920135, - "rotY": 269.9997, - "rotZ": 0.0168706663, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wraith", - "Description": "Monster. Geist. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275018, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "db1b65" - }, - { - "Name": "Card", - "Transform": { - "posX": -27.6742229, - "posY": 1.58979166, - "posZ": -6.83305073, - "rotX": 359.920135, - "rotY": 269.9995, - "rotZ": 0.01686861, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Watcher's Grasp", - "Description": "Power. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275002, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f92f1e" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.92616558, - "posY": 1.9221096, - "posZ": 5.755823, - "rotX": 358.468964, - "rotY": 269.9793, - "rotZ": 1.27267146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Trapped Spirits", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275019, - "SidewaysCard": false, - "CustomDeck": { - "2750": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4e4752" - } - ], - "GUID": "8f704c" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.68859982, - "posY": 1.65545762, - "posZ": -5.04850054, - "rotX": 0.01683514, - "rotY": 180.000031, - "rotZ": 0.0802575, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Disappearance", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232002, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f4f8dc" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.7248, - "posY": 1.65710151, - "posZ": 0.3733004, - "rotX": 0.0168334637, - "rotY": 180.001144, - "rotZ": 0.08025778, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "JUDGMENT · XX", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232001, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "aa1331" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.9559, - "posY": 1.655648, - "posZ": -10.4412251, - "rotX": 359.919739, - "rotY": 269.999969, - "rotZ": 0.0168405436, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "Disappearance at the Twilight Estate", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231700, - "SidewaysCard": false, - "CustomDeck": { - "2317": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f2806a" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.7579, - "posY": 1.58251858, - "posZ": -14.3157024, - "rotX": 359.919739, - "rotY": 270.005432, - "rotZ": 0.0168303642, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "The Circle Undone", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'The Circle Undone'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", - "LuaScriptState": "", - "GUID": "05f912" - }, - { - "Name": "Bag", - "Transform": { - "posX": -12.2948, - "posY": 1.4158051, - "posZ": 7.454201, - "rotX": 359.983124, - "rotY": -0.000205736433, - "rotZ": 359.920044, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Neutral Investigators", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.7058823, - "g": 0.366520882, - "b": 0.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Bag", - "Transform": { - "posX": 26.3065453, - "posY": 3.29357, - "posZ": -9.469313, - "rotX": 1.42241311, - "rotY": 359.957733, - "rotZ": 357.492, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Gavriella Mizrah", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.7058823, - "g": 0.366520882, - "b": 0.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Deck", - "Transform": { - "posX": 34.1210976, - "posY": 3.3517437, - "posZ": -12.8516035, - "rotX": 357.597778, - "rotY": 270.0035, - "rotZ": 359.817932, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Opening Hand", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 226324, - 226326, - 226309, - 226313, - 226337, - 273707, - 273707 - ], - "CustomDeck": { - "2263": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2737": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 4.631482, - "posY": 1.344554, - "posZ": 72.72989, - "rotX": 0.0208172444, - "rotY": 269.969421, - "rotZ": 0.0167602915, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "First Aid", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 226324, - "SidewaysCard": false, - "CustomDeck": { - "2263": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5cd622" - }, - { - "Name": "Card", - "Transform": { - "posX": 4.516396, - "posY": 1.34366512, - "posZ": 69.83648, - "rotX": 0.0208185278, - "rotY": 269.9694, - "rotZ": 0.0167605374, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Guard Dog", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 226326, - "SidewaysCard": false, - "CustomDeck": { - "2263": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "08bdf1" - }, - { - "Name": "Card", - "Transform": { - "posX": 4.567363, - "posY": 1.34280407, - "posZ": 66.83125, - "rotX": 0.020799987, - "rotY": 270.027039, - "rotZ": 0.0167772286, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Evidence!", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 226309, - "SidewaysCard": false, - "CustomDeck": { - "2263": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "2db518" - }, - { - "Name": "Card", - "Transform": { - "posX": 4.3307, - "posY": 1.34025061, - "posZ": 58.4018, - "rotX": 0.0208008438, - "rotY": 270.027039, - "rotZ": 0.01677944, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dodge", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 226313, - "SidewaysCard": false, - "CustomDeck": { - "2263": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e0dff3" - }, - { - "Name": "Card", - "Transform": { - "posX": 4.14204025, - "posY": 1.33948767, - "posZ": 56.0293541, - "rotX": 0.0208072253, - "rotY": 269.999847, - "rotZ": 0.0167742968, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Extra Ammunition (1)", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 226337, - "SidewaysCard": false, - "CustomDeck": { - "2263": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f60263" - }, - { - "Name": "Card", - "Transform": { - "posX": 5.00387335, - "posY": 1.50773728, - "posZ": 72.87777, - "rotX": 0.020830743, - "rotY": 270.027039, - "rotZ": 0.0169054624, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Delay the Inevitable", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 273707, - "SidewaysCard": false, - "CustomDeck": { - "2737": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "83ad4d" - }, - { - "Name": "Card", - "Transform": { - "posX": 5.003854, - "posY": 1.456672, - "posZ": 72.87767, - "rotX": 0.0194944441, - "rotY": 270.026917, - "rotZ": 0.0161545, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Delay the Inevitable", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 273707, - "SidewaysCard": false, - "CustomDeck": { - "2737": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "74788f" - } - ], - "GUID": "281d29" - }, - { - "Name": "Card", - "Transform": { - "posX": 35.6639748, - "posY": 3.32260823, - "posZ": -19.1232128, - "rotX": 359.920135, - "rotY": 269.999756, - "rotZ": 0.0168644935, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Physical Training", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 226323, - "SidewaysCard": false, - "CustomDeck": { - "2263": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1165db" - }, - { - "Name": "Card", - "Transform": { - "posX": 34.7973251, - "posY": 3.324777, - "posZ": -15.8624535, - "rotX": 359.920135, - "rotY": 269.9996, - "rotZ": 0.016867958, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": ".45 Automatic", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 226330, - "SidewaysCard": false, - "CustomDeck": { - "2263": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "12660b" - }, - { - "Name": "Card", - "Transform": { - "posX": 38.7383156, - "posY": 3.31823277, - "posZ": -19.4288616, - "rotX": 359.920135, - "rotY": 269.999847, - "rotZ": 0.0168620888, - "scaleX": 0.452574432, - "scaleY": 1.0, - "scaleZ": 0.452574432 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 281003, - "SidewaysCard": false, - "CustomDeck": { - "2810": { - "FaceURL": "https://i.imgur.com/lGTlFGx.jpg", - "BackURL": "https://i.imgur.com/tHE0Iz1.jpg", - "NumWidth": 2, - "NumHeight": 2, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0feaae" - }, - { - "Name": "Card", - "Transform": { - "posX": 32.6476936, - "posY": 3.5249207, - "posZ": -24.765955, - "rotX": 1.92433882, - "rotY": 180.085037, - "rotZ": 3.40546966, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Gavriella Mizrah", - "Description": "Private Security", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 232003, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8a83e8" - } - ], - "GUID": "0e30b9" - }, - { - "Name": "Bag", - "Transform": { - "posX": 26.7795773, - "posY": 3.2582202, - "posZ": -9.099031, - "rotX": 1.79921126, - "rotY": 359.871857, - "rotZ": 357.5099, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Jerome Davids", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.7058823, - "g": 0.366520882, - "b": 0.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Deck", - "Transform": { - "posX": -11.10893, - "posY": 3.62021971, - "posZ": 0.353564084, - "rotX": 1.02570677, - "rotY": 270.011627, - "rotZ": 1.272254, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Opening Hand", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 230424, - 230408, - 230413, - 230404, - 230402, - 230437, - 273210, - 273209, - 273208, - 273208 - ], - "CustomDeck": { - "2304": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2732": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -11.1692886, - "posY": 1.33912277, - "posZ": 73.77951, - "rotX": 0.0208120961, - "rotY": 269.9788, - "rotZ": 0.0167658757, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hyperawareness", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 230424, - "SidewaysCard": false, - "CustomDeck": { - "2304": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e5dd39" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.3107576, - "posY": 1.47291374, - "posZ": 73.35265, - "rotX": 0.0221921522, - "rotY": 269.9974, - "rotZ": 359.76178, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mind over Matter", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 230408, - "SidewaysCard": false, - "CustomDeck": { - "2304": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8cf335" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.42252, - "posY": 1.501595, - "posZ": 73.46465, - "rotX": 0.021279335, - "rotY": 269.984344, - "rotZ": 0.0184201915, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Working a Hunch", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 230413, - "SidewaysCard": false, - "CustomDeck": { - "2304": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "eb6165" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.3899441, - "posY": 1.48795211, - "posZ": 73.5318451, - "rotX": 0.0215425957, - "rotY": 269.983582, - "rotZ": 0.0192076042, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Barricade", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 230404, - "SidewaysCard": false, - "CustomDeck": { - "2304": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "edb554" - }, - { - "Name": "Card", - "Transform": { - "posX": -10.9712381, - "posY": 1.4861536, - "posZ": 73.77901, - "rotX": 0.0191635229, - "rotY": 269.960022, - "rotZ": 0.0128358416, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Deduction", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 230402, - "SidewaysCard": false, - "CustomDeck": { - "2304": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b265c4" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.1768236, - "posY": 1.4889226, - "posZ": 74.07263, - "rotX": 0.0141705936, - "rotY": 270.000122, - "rotZ": 0.0101296967, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Magnifying Glass (1)", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 230437, - "SidewaysCard": false, - "CustomDeck": { - "2304": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "378e84" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.2189875, - "posY": 1.49380946, - "posZ": 74.10728, - "rotX": 0.02095028, - "rotY": 269.984741, - "rotZ": 0.0163107812, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fingerprint Kit", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 273210, - "SidewaysCard": false, - "CustomDeck": { - "2732": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b9bb2a" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.3964529, - "posY": 1.4997499, - "posZ": 73.34295, - "rotX": 0.02103572, - "rotY": 269.97757, - "rotZ": 0.0182552375, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Connect the Dots", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 273209, - "SidewaysCard": false, - "CustomDeck": { - "2732": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "13413d" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.1932592, - "posY": 1.45179629, - "posZ": 73.80069, - "rotX": 0.0208130423, - "rotY": 269.964661, - "rotZ": 0.0167861488, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Curiosity", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 273208, - "SidewaysCard": false, - "CustomDeck": { - "2732": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c2b986" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.1543875, - "posY": 1.45944822, - "posZ": 73.82197, - "rotX": 0.0194276161, - "rotY": 269.964661, - "rotZ": 0.0194934011, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Curiosity", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 273208, - "SidewaysCard": false, - "CustomDeck": { - "2732": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "50a804" - } - ], - "GUID": "b879b9" - }, - { - "Name": "Card", - "Transform": { - "posX": -10.9994316, - "posY": 3.58587575, - "posZ": 0.729995549, - "rotX": 0.9148791, - "rotY": 269.837, - "rotZ": 349.8496, - "scaleX": 0.452574432, - "scaleY": 1.0, - "scaleZ": 0.452574432 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 281000, - "SidewaysCard": false, - "CustomDeck": { - "2810": { - "FaceURL": "https://i.imgur.com/lGTlFGx.jpg", - "BackURL": "https://i.imgur.com/tHE0Iz1.jpg", - "NumWidth": 2, - "NumHeight": 2, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5d06b4" - }, - { - "Name": "Card", - "Transform": { - "posX": 32.9491234, - "posY": 3.56672716, - "posZ": -20.8460236, - "rotX": 0.5360949, - "rotY": 179.95636, - "rotZ": 0.333235145, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Jerome Davids", - "Description": "Josef's Secretary", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 232004, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d80c14" - } - ], - "GUID": "886e03" - }, - { - "Name": "Bag", - "Transform": { - "posX": 26.3010883, - "posY": 3.2914772, - "posZ": -9.41391, - "rotX": 1.69062531, - "rotY": 359.959747, - "rotZ": 357.6101, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Valentino Rivas", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.7058823, - "g": 0.366520882, - "b": 0.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 32.1356659, - "posY": 3.537645, - "posZ": -9.438395, - "rotX": 357.1436, - "rotY": 270.017761, - "rotZ": 359.418243, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Well Connected", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274208, - "SidewaysCard": false, - "CustomDeck": { - "2742": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "66b7d5" - }, - { - "Name": "Deck", - "Transform": { - "posX": 36.4942055, - "posY": 3.48028517, - "posZ": -9.690706, - "rotX": 359.920135, - "rotY": 269.987671, - "rotZ": 0.01688546, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Opening Hand", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 274206, - 274206, - 277654, - 261702, - 261528, - 274207, - 274207 - ], - "CustomDeck": { - "2742": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2776": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2617": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2615": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 42.0147934, - "posY": 1.49191868, - "posZ": -8.96351051, - "rotX": 359.915619, - "rotY": 269.998535, - "rotZ": 0.015286142, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cunning", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274206, - "SidewaysCard": false, - "CustomDeck": { - "2742": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1f601c" - }, - { - "Name": "Card", - "Transform": { - "posX": 42.1102753, - "posY": 1.63229167, - "posZ": -9.064435, - "rotX": 359.932861, - "rotY": 269.999847, - "rotZ": 0.0226543453, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cunning", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274206, - "SidewaysCard": false, - "CustomDeck": { - "2742": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "03ff2d" - }, - { - "Name": "Card", - "Transform": { - "posX": 42.01537, - "posY": 1.65020156, - "posZ": -8.873732, - "rotX": 359.932343, - "rotY": 270.00058, - "rotZ": 0.0120726945, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Sure Gamble (3)", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 277654, - "SidewaysCard": false, - "CustomDeck": { - "2776": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "308be1" - }, - { - "Name": "Card", - "Transform": { - "posX": 41.97797, - "posY": 1.636614, - "posZ": -9.04462051, - "rotX": 359.935425, - "rotY": 270.003418, - "rotZ": 0.0175489858, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Opportunist", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 261702, - "SidewaysCard": false, - "CustomDeck": { - "2617": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a88392" - }, - { - "Name": "Card", - "Transform": { - "posX": 41.9782, - "posY": 1.63467884, - "posZ": -9.390869, - "rotX": 359.932526, - "rotY": 269.996277, - "rotZ": 0.0225799251, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": ".41 Derringer", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 261528, - "SidewaysCard": false, - "CustomDeck": { - "2615": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fe2db3" - }, - { - "Name": "Card", - "Transform": { - "posX": 42.02679, - "posY": 1.63689828, - "posZ": -9.450618, - "rotX": 359.930267, - "rotY": 270.00058, - "rotZ": 0.0174559243, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Money Talks", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274207, - "SidewaysCard": false, - "CustomDeck": { - "2742": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3712d1" - }, - { - "Name": "Card", - "Transform": { - "posX": 41.81751, - "posY": 1.64222491, - "posZ": -9.19327, - "rotX": 359.920471, - "rotY": 269.9992, - "rotZ": 0.01775414, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Money Talks", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274207, - "SidewaysCard": false, - "CustomDeck": { - "2742": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "64b423" - } - ], - "GUID": "0c1b64" - }, - { - "Name": "Card", - "Transform": { - "posX": 31.6972256, - "posY": 3.48417282, - "posZ": -7.21520758, - "rotX": 359.9201, - "rotY": 270.0282, - "rotZ": 0.01683228, - "scaleX": 0.452574432, - "scaleY": 1.0, - "scaleZ": 0.452574432 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 281002, - "SidewaysCard": false, - "CustomDeck": { - "2810": { - "FaceURL": "https://i.imgur.com/lGTlFGx.jpg", - "BackURL": "https://i.imgur.com/tHE0Iz1.jpg", - "NumWidth": 2, - "NumHeight": 2, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "cc299a" - }, - { - "Name": "Card", - "Transform": { - "posX": 33.1302948, - "posY": 3.520642, - "posZ": -14.959734, - "rotX": 2.45931625, - "rotY": 180.086182, - "rotZ": 2.66070175, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Valentino Rivas", - "Description": "Wealthy Philanthropist", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 232005, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "41d2da" - } - ], - "GUID": "d4a4b4" - }, - { - "Name": "Bag", - "Transform": { - "posX": -11.8164482, - "posY": 3.49307728, - "posZ": 7.85791874, - "rotX": 359.9391, - "rotY": 314.996979, - "rotZ": 359.1888, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Penny White", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.7058823, - "g": 0.366520882, - "b": 0.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 5.18085051, - "posY": 2.65918827, - "posZ": 0.446127057, - "rotX": 0.0208086427, - "rotY": 269.999969, - "rotZ": 0.0167691186, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dig Deep", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368831, - "SidewaysCard": false, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fc9e1b" - }, - { - "Name": "Card", - "Transform": { - "posX": 32.73767, - "posY": 3.47830081, - "posZ": -14.1185627, - "rotX": 359.920135, - "rotY": 270.000549, - "rotZ": 0.01686701, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Knife", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 209612, - "SidewaysCard": false, - "CustomDeck": { - "2096": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0ab3f1" - }, - { - "Name": "Card", - "Transform": { - "posX": 31.430542, - "posY": 3.48107457, - "posZ": -10.8877916, - "rotX": 359.920135, - "rotY": 269.999847, - "rotZ": 0.0168695319, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Flashlight", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 209615, - "SidewaysCard": false, - "CustomDeck": { - "2096": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1a6a10" - }, - { - "Name": "Deck", - "Transform": { - "posX": 8.684676, - "posY": 2.99370885, - "posZ": -1.173617, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.0168783572, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Opening Hand", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 276006, - 209612, - 276006, - 276007, - 276007, - 209615, - 368824, - 368810 - ], - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2096": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -11.8823442, - "posY": 1.579667, - "posZ": 33.6978073, - "rotX": 359.9206, - "rotY": 270.000336, - "rotZ": 0.0137964133, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Able Bodied", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 276006, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "74ca59" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.04713, - "posY": 1.72501063, - "posZ": 33.97278, - "rotX": 359.9552, - "rotY": 270.000763, - "rotZ": 359.961975, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Knife", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 209612, - "SidewaysCard": false, - "CustomDeck": { - "2096": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3c3398" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.5777493, - "posY": 1.57913435, - "posZ": 33.9234543, - "rotX": 359.922363, - "rotY": 270.002167, - "rotZ": 0.00185142609, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Able Bodied", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 276006, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bbe2c9" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.7172565, - "posY": 1.61746192, - "posZ": 34.4364853, - "rotX": 0.2480991, - "rotY": 270.00116, - "rotZ": 0.1788842, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act of Desperation", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 276007, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6b61d6" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.7584276, - "posY": 1.763603, - "posZ": 34.2776337, - "rotX": 0.252691746, - "rotY": 269.9969, - "rotZ": 359.892365, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act of Desperation", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 276007, - "SidewaysCard": false, - "CustomDeck": { - "2760": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5ccd29" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.9528351, - "posY": 1.90474594, - "posZ": 34.3866234, - "rotX": 0.366804957, - "rotY": 269.994843, - "rotZ": 359.834, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Flashlight", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 209615, - "SidewaysCard": false, - "CustomDeck": { - "2096": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bb1cce" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.3030424, - "posY": 1.748418, - "posZ": 30.3551445, - "rotX": 359.936462, - "rotY": 269.996277, - "rotZ": 0.0131700477, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Stray Cat", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368824, - "SidewaysCard": false, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6f4ab8" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.507946, - "posY": 1.75507188, - "posZ": 30.6507645, - "rotX": 359.936768, - "rotY": 270.003479, - "rotZ": 0.0126198474, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lucky!", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368810, - "SidewaysCard": false, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "17e14e" - } - ], - "GUID": "8b1f19" - }, - { - "Name": "Card", - "Transform": { - "posX": 36.4499664, - "posY": 3.473211, - "posZ": -13.8278351, - "rotX": 359.920135, - "rotY": 270.0102, - "rotZ": 0.0168484319, - "scaleX": 0.452574432, - "scaleY": 1.0, - "scaleZ": 0.452574432 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 281001, - "SidewaysCard": false, - "CustomDeck": { - "2810": { - "FaceURL": "https://i.imgur.com/lGTlFGx.jpg", - "BackURL": "https://i.imgur.com/tHE0Iz1.jpg", - "NumWidth": 2, - "NumHeight": 2, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "077ac6" - }, - { - "Name": "Card", - "Transform": { - "posX": 27.0678978, - "posY": 3.55900526, - "posZ": -22.6408882, - "rotX": 1.36415613, - "rotY": 179.958588, - "rotZ": 357.447632, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Penny White", - "Description": "Josef's Housekeeper", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 232006, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "23b99c" - } - ], - "GUID": "da417c" - } - ], - "GUID": "fa2600" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.1199, - "posY": 1.67707765, - "posZ": -0.0300005451, - "rotX": 359.9201, - "rotY": 269.999756, - "rotZ": 0.0168766826, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Office", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274520, - "SidewaysCard": false, - "CustomDeck": { - "2745": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "060886" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765, - "posY": 1.68845832, - "posZ": 7.56999874, - "rotX": 359.9201, - "rotY": 269.999756, - "rotZ": 0.0168770235, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Trophy Room", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275916, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f5616e" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765, - "posY": 1.68622029, - "posZ": -0.0300003029, - "rotX": 359.9201, - "rotY": 270.0, - "rotZ": 0.0168763548, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Victorian Halls", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275115, - "SidewaysCard": false, - "CustomDeck": { - "2751": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "94ef8e" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6764, - "posY": 1.690702, - "posZ": 15.1900005, - "rotX": 359.9201, - "rotY": 269.999725, - "rotZ": 0.0168762486, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Billiards Room", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274717, - "SidewaysCard": false, - "CustomDeck": { - "2747": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "349eb6" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765, - "posY": 1.68396187, - "posZ": -7.7, - "rotX": 359.9201, - "rotY": 269.999573, - "rotZ": 0.0168769266, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Master Bedroom", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274618, - "SidewaysCard": false, - "CustomDeck": { - "2746": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "327f3b" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -23.6765, - "posY": 1.61112618, - "posZ": -11.5100012, - "rotX": 0.0168721452, - "rotY": 179.999756, - "rotZ": 0.0799345151, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9dd605", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6767, - "posY": 1.68173015, - "posZ": -15.2800007, - "rotX": 359.9201, - "rotY": 269.999481, - "rotZ": 0.0168770626, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Balcony", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274819, - "SidewaysCard": false, - "CustomDeck": { - "2748": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3b69ae" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -23.6765, - "posY": 1.6133877, - "posZ": -3.83000016, - "rotX": 0.01687219, - "rotY": 179.999634, - "rotZ": 0.07993924, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "62c1c6", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -23.6765, - "posY": 1.61789, - "posZ": 11.460001, - "rotX": 0.0168718267, - "rotY": 180.000046, - "rotZ": 0.07993619, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e4fd93", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -23.6765, - "posY": 1.61565208, - "posZ": 3.85999966, - "rotX": 0.0168725941, - "rotY": 179.999481, - "rotZ": 0.07994033, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a6d5fb", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -20.4586, - "posY": 1.61001825, - "posZ": -0.03490027, - "rotX": 0.07989431, - "rotY": 89.99967, - "rotZ": 359.9831, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6913e9", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -27.2548, - "posY": 1.61944926, - "posZ": -0.190000266, - "rotX": 359.9201, - "rotY": 269.994446, - "rotZ": 0.016907258, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7234af", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2242, - "posY": 1.69535065, - "posZ": -0.03000034, - "rotX": 359.9201, - "rotY": 269.999939, - "rotZ": 0.0168762822, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Entry Hall", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274914, - "SidewaysCard": false, - "CustomDeck": { - "2749": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7cb46b" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2243, - "posY": 1.69649625, - "posZ": 3.86, - "rotX": 359.9201, - "rotY": 269.999664, - "rotZ": 0.01687665, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Spectral Watcher", - "Description": "You Are Its Prey", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275201, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a1eb9b" - } - ], - "GUID": "2f008a" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -1.44019914, - "posY": 1.47555459, - "posZ": -27.0401039, - "rotX": 359.920135, - "rotY": 270.000458, - "rotZ": 0.016871037, - "scaleX": 6.5, - "scaleY": 1.0, - "scaleZ": 6.5 - }, - "Nickname": "The Circle Undone Campaign Log 1", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/786356000880323787/F4D94402AF1C8265D7EED669076D554116A90DEC/", - "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/786356000880295670/8FF05F1C905042FF3C3BBD6D369D1DD0E03463D6/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 0, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {0.902,0.886,0.788}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n {\r\n pos = {-0.7,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one counter 2\r\n {\r\n pos = {-0.50,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one xp 1\r\n {\r\n pos = {-0.517,0.1,-0.55},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 1\r\n {\r\n pos = {-0.274,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 2\r\n {\r\n pos = {-0.06,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two xp 1\r\n {\r\n pos = {-0.061,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 1\r\n {\r\n pos = {0.153,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 2\r\n {\r\n pos = {0.379,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three xp 1\r\n {\r\n pos = {0.38,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 1\r\n {\r\n pos = {0.614,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 2\r\n {\r\n pos = {0.82,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four xp 1\r\n {\r\n pos = {0.827,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --Slot one player\r\n {\r\n pos = {-0.637,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one investigator\r\n {\r\n pos = {-0.637,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one story\r\n {\r\n pos = {-0.637,0.1,-0.27},\r\n rows = 10,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two player\r\n {\r\n pos = {-0.2,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two investigator\r\n {\r\n pos = {-0.2,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two story\r\n {\r\n pos = {-0.2,0.1,-0.27},\r\n rows = 10,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three player\r\n {\r\n pos = {0.241,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three investigator\r\n {\r\n pos = {0.237,0.1,-0.62},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three story\r\n {\r\n pos = {0.24,0.1,-0.268},\r\n rows = 10,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four player\r\n {\r\n pos = {0.671,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four investigator\r\n {\r\n pos = {0.671,0.1,-0.62},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four story\r\n {\r\n pos = {0.671,0.1,-0.265},\r\n rows = 10,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes\r\n {\r\n pos = {-0.464,0.1,0.507},\r\n rows =16,\r\n width = 3200,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign NOtes 2\r\n {\r\n pos = {0.344,0.1,0.187},\r\n rows = 10,\r\n width = 3500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Mementos\r\n {\r\n pos = {0.351,0.1,0.744},\r\n rows = 12,\r\n width = 3500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend", - "LuaScriptState": "{\"checkbox\":[],\"counter\":[{\"hideBG\":true,\"pos\":[-0.7,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.5,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.517,0.1,-0.55],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[-0.274,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.06,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.061,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.153,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.379,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.38,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.614,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.82,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.827,0.1,-0.54],\"size\":300,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.27],\"rows\":10,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.27],\"rows\":10,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.241,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.237,0.1,-0.62],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[0.24,0.1,-0.268],\"rows\":10,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.62],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.265],\"rows\":10,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[-0.464,0.1,0.507],\"rows\":16,\"value\":\"\",\"width\":3200},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.344,0.1,0.187],\"rows\":10,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.351,0.1,0.744],\"rows\":12,\"value\":\"\",\"width\":3500}]}", - "GUID": "44a05a", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -1.440166, - "posY": 1.47563934, - "posZ": -26.7525749, - "rotX": 359.920135, - "rotY": 270.0003, - "rotZ": 0.0168714, - "scaleX": 6.5, - "scaleY": 1.0, - "scaleZ": 6.5 - }, - "Nickname": "The Circle Undone Campaign Log 2", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/786356000880325037/481B73FE2FF5AAA5E6CA26C28AD1D75EE24B362C/", - "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/786356000880295670/8FF05F1C905042FF3C3BBD6D369D1DD0E03463D6/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 0, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {0.902,0.886,0.788}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --1 checkbox\r\n {\r\n pos = {-0.829,0.1,-0.848},\r\n size = 250,\r\n state = false\r\n },\r\n --2 checkbox\r\n {\r\n pos = {-0.827,0.1,-0.776},\r\n size = 250,\r\n state = false\r\n },\r\n --3 checkbox\r\n {\r\n pos = {-0.824,0.1,-0.665},\r\n size = 250,\r\n state = false\r\n },\r\n --4 checkbox\r\n {\r\n pos = {-0.819,0.1,-0.574},\r\n size = 250,\r\n state = false\r\n },\r\n --5 checkbox\r\n {\r\n pos = {-0.819,0.1,-0.489},\r\n size = 250,\r\n state = false\r\n },\r\n --6 checkbox\r\n {\r\n pos = {-0.821,0.1,-0.352},\r\n size = 250,\r\n state = false\r\n },\r\n --7 checkbox\r\n {\r\n pos = {-0.817,0.1,-0.26},\r\n size = 250,\r\n state = false\r\n },\r\n --8 checkbox\r\n {\r\n pos = {-0.816,0.1,-0.168},\r\n size = 250,\r\n state = false\r\n },\r\n --9 checkbox\r\n {\r\n pos = {-0.814,0.1,-0.074},\r\n size = 250,\r\n state = false\r\n },\r\n --10 checkbox\r\n {\r\n pos = {-0.816,0.1,0.02},\r\n size = 250,\r\n state = false\r\n },\r\n --11 checkbox\r\n {\r\n pos = {-0.817,0.1,0.115},\r\n size = 250,\r\n state = false\r\n },\r\n --12 checkbox\r\n {\r\n pos = {-0.821,0.1,0.19},\r\n size = 250,\r\n state = false\r\n },\r\n --13 checkbox\r\n {\r\n pos = {-0.816,0.1,0.278},\r\n size = 250,\r\n state = false\r\n },\r\n --14 checkbox\r\n {\r\n pos = {-0.818,0.1,0.37},\r\n size = 250,\r\n state = false\r\n },\r\n --15 checkbox\r\n {\r\n pos = {-0.819,0.1,0.448},\r\n size = 250,\r\n state = false\r\n },\r\n --Gavriella Mizrah\r\n {\r\n pos = {0.738,0.1,0.176},\r\n size = 500,\r\n state = false\r\n },\r\n --Jerome Davids\r\n {\r\n pos = {0.083,0.1,0.432},\r\n size = 500,\r\n state = false\r\n },\r\n --Penny White\r\n {\r\n pos = {0.686,0.1,0.652},\r\n size = 500,\r\n state = false\r\n },\r\n --Valentino Rivas\r\n {\r\n pos = {0.07,0.1,0.878},\r\n size = 500,\r\n state = false\r\n },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n\r\n --Text 1\r\n {\r\n pos = {0.4,0.1,0.184},\r\n rows =5,\r\n width = 2400,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Text 2\r\n {\r\n pos = {0.404,0.1,0.427},\r\n rows =5,\r\n width = 2400,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Text 3\r\n {\r\n pos = {0.364,0.1,0.655},\r\n rows =5,\r\n width = 2400,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Text 4\r\n {\r\n pos = {0.38,0.1,0.885},\r\n rows =5,\r\n width = 2400,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Killed and Insane\r\n {\r\n pos = {-0.55,0.1,0.80},\r\n rows =8,\r\n width = 3800,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", - "LuaScriptState": "{\"checkbox\":[{\"pos\":[-0.829,0.1,-0.848],\"size\":250,\"state\":false},{\"pos\":[-0.827,0.1,-0.776],\"size\":250,\"state\":false},{\"pos\":[-0.824,0.1,-0.665],\"size\":250,\"state\":false},{\"pos\":[-0.819,0.1,-0.574],\"size\":250,\"state\":false},{\"pos\":[-0.819,0.1,-0.489],\"size\":250,\"state\":false},{\"pos\":[-0.821,0.1,-0.352],\"size\":250,\"state\":false},{\"pos\":[-0.817,0.1,-0.26],\"size\":250,\"state\":false},{\"pos\":[-0.816,0.1,-0.168],\"size\":250,\"state\":false},{\"pos\":[-0.814,0.1,-0.074],\"size\":250,\"state\":false},{\"pos\":[-0.816,0.1,0.02],\"size\":250,\"state\":false},{\"pos\":[-0.817,0.1,0.115],\"size\":250,\"state\":false},{\"pos\":[-0.821,0.1,0.19],\"size\":250,\"state\":false},{\"pos\":[-0.816,0.1,0.278],\"size\":250,\"state\":false},{\"pos\":[-0.818,0.1,0.37],\"size\":250,\"state\":false},{\"pos\":[-0.819,0.1,0.448],\"size\":250,\"state\":false},{\"pos\":[0.738,0.1,0.176],\"size\":500,\"state\":false},{\"pos\":[0.083,0.1,0.432],\"size\":500,\"state\":false},{\"pos\":[0.686,0.1,0.652],\"size\":500,\"state\":false},{\"pos\":[0.07,0.1,0.878],\"size\":500,\"state\":false}],\"counter\":[],\"textbox\":[{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.4,0.1,0.184],\"rows\":5,\"value\":\"\",\"width\":2400},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.404,0.1,0.427],\"rows\":5,\"value\":\"\",\"width\":2400},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.364,0.1,0.655],\"rows\":5,\"value\":\"\",\"width\":2400},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.38,0.1,0.885],\"rows\":5,\"value\":\"\",\"width\":2400},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.55,0.1,0.8],\"rows\":8,\"value\":\"\",\"width\":3800}]}", - "GUID": "184a7c" - } - } - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 12.2519007, - "posY": 1.46795821, - "posZ": 11.9864006, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.0168738347, - "scaleX": 2.21, - "scaleY": 0.46, - "scaleZ": 2.42 - }, - "Nickname": "3: The Secret Name", - "Description": "The Circle Undone", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/829135524527187179/79FD07A57C67FC9C33BA2108D8324ED4C2D88736/", - "NormalURL": "", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n--w })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", - "LuaScriptState": "{\"ml\":{\"13fc27\":{\"lock\":false,\"pos\":{\"x\":-26.7453,\"y\":1.6188,\"z\":0.0026},\"rot\":{\"x\":359.9201,\"y\":269.9936,\"z\":0.0169}},\"2ebf66\":{\"lock\":false,\"pos\":{\"x\":-17.1198,\"y\":1.6802,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"426c50\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0003,\"z\":0.0803}},\"5c61d9\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.6976,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"6935c1\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9998,\"z\":0.0687}},\"6bb83e\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.6931,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"6c0a90\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6225,\"z\":-3.8283},\"rot\":{\"x\":0.0169,\"y\":179.9809,\"z\":0.08}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.4736,\"y\":1.6282,\"z\":-0.0813},\"rot\":{\"x\":359.9201,\"y\":269.9936,\"z\":0.0169}},\"72ac0c\":{\"lock\":false,\"pos\":{\"x\":-36.773,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"7bea34\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6833,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"8ee597\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7984,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9989,\"z\":180.0168}},\"9f9bb1\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"b21125\":{\"lock\":false,\"pos\":{\"x\":-3.7422,\"y\":1.5821,\"z\":-15.5575},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"b7da8c\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9808,\"z\":0.08}},\"ba1246\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0125,\"z\":0.0803}},\"e281ec\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.6954,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"f087e3\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}}}}", - "ContainedObjects": [ - { - "Name": "Custom_Tile", - "Transform": { - "posX": -26.7453, - "posY": 1.61879563, - "posZ": 0.00259972713, - "rotX": 359.9201, - "rotY": 269.993561, - "rotZ": 0.016909115, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "13fc27", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Deck", - "Transform": { - "posX": -17.1198, - "posY": 1.68018031, - "posZ": 7.57, - "rotX": 359.9201, - "rotY": 269.999939, - "rotZ": 0.0168766025, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unknown Places Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 275930, - 275932, - 275934, - 275929, - 275933, - 275928 - ], - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 37.91871, - "posY": 1.50776482, - "posZ": 68.2600555, - "rotX": 0.0200533122, - "rotY": 270.007935, - "rotZ": 180.0183, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unknown Places", - "Description": "Extradimensional.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275930, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "789bfc" - }, - { - "Name": "Card", - "Transform": { - "posX": 37.8498955, - "posY": 1.50504923, - "posZ": 68.35934, - "rotX": 0.02151048, - "rotY": 270.007538, - "rotZ": 180.020416, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unknown Places", - "Description": "Extradimensional.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275932, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9a471d" - }, - { - "Name": "Card", - "Transform": { - "posX": 38.26049, - "posY": 1.50727665, - "posZ": 68.74983, - "rotX": 0.0214149524, - "rotY": 270.0081, - "rotZ": 180.0162, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unknown Places", - "Description": "Extradimensional.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275934, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "13e568" - }, - { - "Name": "Card", - "Transform": { - "posX": 38.2868462, - "posY": 1.51864886, - "posZ": 68.84118, - "rotX": 0.0005201616, - "rotY": 270.0049, - "rotZ": 179.82106, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unknown Places", - "Description": "Extradimensional.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275929, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "300aee" - }, - { - "Name": "Card", - "Transform": { - "posX": 38.3945656, - "posY": 1.50345075, - "posZ": 68.7473, - "rotX": 0.008707138, - "rotY": 270.007446, - "rotZ": 179.992554, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unknown Places", - "Description": "Extradimensional.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275933, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0ac3ea" - }, - { - "Name": "Card", - "Transform": { - "posX": 38.41501, - "posY": 1.35831535, - "posZ": 68.39643, - "rotX": 0.01792046, - "rotY": 270.0082, - "rotZ": 180.017761, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unknown Places", - "Description": "Extradimensional.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275928, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b538f8" - } - ], - "GUID": "2ebf66" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.72459984, - "posY": 1.65513813, - "posZ": 0.373300433, - "rotX": 0.01683458, - "rotY": 180.000259, - "rotZ": 0.08025762, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agenda Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 275324, - 275323, - 275322, - 275321 - ], - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 23.8240452, - "posY": 1.34878731, - "posZ": 64.35853, - "rotX": 0.003070141, - "rotY": 180.001953, - "rotZ": 359.973083, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Marked for Sacrifice", - "Description": "Agenda 4", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275324, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "2c4183" - }, - { - "Name": "Card", - "Transform": { - "posX": 26.8698158, - "posY": 1.34987855, - "posZ": 64.5165558, - "rotX": -0.0006277118, - "rotY": 179.999649, - "rotZ": 359.9728, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Witch Light", - "Description": "Agenda 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275323, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6adc7b" - }, - { - "Name": "Card", - "Transform": { - "posX": 29.811491, - "posY": 1.35134566, - "posZ": 64.73896, - "rotX": 0.01601633, - "rotY": 179.999969, - "rotZ": 359.978851, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Familiar", - "Description": "Agenda 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275322, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4ba381" - }, - { - "Name": "Card", - "Transform": { - "posX": 29.9670486, - "posY": 1.496629, - "posZ": 64.8450851, - "rotX": 0.007878363, - "rotY": 180.0, - "rotZ": 359.980835, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "THE HERMIT · IX", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275321, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f39695" - } - ], - "GUID": "426c50" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.224, - "posY": 1.69758832, - "posZ": 7.56989956, - "rotX": 359.9201, - "rotY": 269.999939, - "rotZ": 0.0168762431, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Decrepit Door", - "Description": "Witch House.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275924, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5c61d9" - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 1.696401, - "posY": 1.55831742, - "posZ": 14.2788019, - "rotX": 359.955139, - "rotY": 224.999847, - "rotZ": 0.06867198, - "scaleX": 2.0, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "Nickname": "Set-aside", - "Description": "The Secret Name", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.02148666, - "g": 0.00100758043, - "b": 0.02148666 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", - "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 1, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Deck", - "Transform": { - "posX": 33.0712128, - "posY": 3.42125034, - "posZ": 66.37825, - "rotX": 0.0183009077, - "rotY": 270.0003, - "rotZ": 180.016724, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ghostly Presence", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 275526, - 275526 - ], - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 20.2544212, - "posY": 1.40155768, - "posZ": 76.95319, - "rotX": 0.020767916, - "rotY": 269.99295, - "rotZ": 0.0164573882, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ghostly Presence", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275526, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5e23b2" - }, - { - "Name": "Card", - "Transform": { - "posX": 20.437912, - "posY": 1.35132825, - "posZ": 76.2654343, - "rotX": 0.0207659211, - "rotY": 269.997681, - "rotZ": 0.01675902, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ghostly Presence", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275526, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7725f0" - } - ], - "GUID": "db34ba" - }, - { - "Name": "Deck", - "Transform": { - "posX": 32.55151, - "posY": 3.42120767, - "posZ": 66.67238, - "rotX": 0.0221417155, - "rotY": 269.995667, - "rotZ": 180.0268, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Strange Geometry", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 275524, - 275524 - ], - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 25.3332462, - "posY": 1.5051235, - "posZ": 80.50106, - "rotX": 0.0361841, - "rotY": 270.0002, - "rotZ": 180.161316, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Strange Geometry", - "Description": "Extradimensional.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275524, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "867256" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.312233, - "posY": 1.35691929, - "posZ": 80.35414, - "rotX": 0.0105671864, - "rotY": 269.999268, - "rotZ": 180.020477, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Strange Geometry", - "Description": "Extradimensional.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275524, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e08f79" - } - ], - "GUID": "1b4a8d" - }, - { - "Name": "Card", - "Transform": { - "posX": 17.0272255, - "posY": 2.52392864, - "posZ": -52.9219, - "rotX": 359.9201, - "rotY": 270.0072, - "rotZ": 0.01685771, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Black Book", - "Description": "Signed in Blood", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275732, - "SidewaysCard": false, - "CustomDeck": { - "2757": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4142d6" - }, - { - "Name": "Card", - "Transform": { - "posX": 32.9715919, - "posY": 3.407806, - "posZ": 65.60865, - "rotX": 0.0212268643, - "rotY": 269.994324, - "rotZ": 0.01663837, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Site of the Sacrifice", - "Description": "Extradimensional. Witch House.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275935, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "09f034" - }, - { - "Name": "Card", - "Transform": { - "posX": 32.6110153, - "posY": 3.40790176, - "posZ": 66.38212, - "rotX": 0.0218372382, - "rotY": 269.994476, - "rotZ": 0.0161013678, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Keziah's Room", - "Description": "Spectral. Witch House.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275927, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e2b8fc" - }, - { - "Name": "Card", - "Transform": { - "posX": 32.9114037, - "posY": 3.407826, - "posZ": 65.75095, - "rotX": 0.0209353622, - "rotY": 270.0, - "rotZ": 0.016872352, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nahab", - "Description": "She Who Signed the Black Book", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275531, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5bd251" - } - ], - "PhysicsMaterial": { - "StaticFriction": 0.6, - "DynamicFriction": 0.6, - "Bounciness": 0.0, - "FrictionCombine": 0, - "BounceCombine": 0 - }, - "Rigidbody": { - "Mass": 1.375, - "Drag": 5.0, - "AngularDrag": 5.0, - "UseGravity": true - }, - "GUID": "6935c1" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.224, - "posY": 1.69309187, - "posZ": -7.70010138, - "rotX": 359.9201, - "rotY": 270.0, - "rotZ": 0.0168762822, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Decrepit Door", - "Description": "Witch House.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275923, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6bb83e" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2244, - "posY": 1.62251878, - "posZ": -3.82829976, - "rotX": 0.0168984644, - "rotY": 179.980835, - "rotZ": 0.0799336657, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6c0a90", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -33.4736, - "posY": 1.62815309, - "posZ": -0.08130022, - "rotX": 359.9201, - "rotY": 269.993561, - "rotZ": 0.0169092659, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7234af", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -36.773, - "posY": 1.70448256, - "posZ": -0.0300003756, - "rotX": 359.9201, - "rotY": 269.999939, - "rotZ": 0.0168763082, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Decrepit Door", - "Description": "Witch House.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275925, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "72ac0c" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.1199, - "posY": 1.68328393, - "posZ": 11.46, - "rotX": 359.9201, - "rotY": 270.000061, - "rotZ": 180.016861, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unknown Places", - "Description": "Extradimensional.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275931, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7bea34" - }, - { - "Name": "Deck", - "Transform": { - "posX": -3.9277, - "posY": 1.79835725, - "posZ": 5.75720072, - "rotX": 359.919739, - "rotY": 269.9989, - "rotZ": 180.016815, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231807, - 275527, - 231823, - 231808, - 275529, - 231807, - 231807, - 231809, - 275529, - 231809, - 231814, - 275528, - 231814, - 12113, - 12113, - 231814, - 275530, - 231821, - 275525, - 231823, - 231822, - 275527, - 231820, - 231813, - 231821, - 12113, - 231823, - 231822, - 231808, - 231813, - 275525, - 231822, - 275525, - 231820, - 275528 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -17.73656, - "posY": 1.71689022, - "posZ": -33.5350227, - "rotX": 359.918945, - "rotY": 269.979126, - "rotZ": 0.0171701312, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Diabolic Voices", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231807, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "64341a" - }, - { - "Name": "Card", - "Transform": { - "posX": 15.57442, - "posY": 1.34594059, - "posZ": 63.90754, - "rotX": 0.0205667466, - "rotY": 269.982239, - "rotZ": 0.0166774988, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Extradimensional Visions", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275527, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c309da" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.6707478, - "posY": 1.76058781, - "posZ": -33.23441, - "rotX": 359.465271, - "rotY": 269.459351, - "rotZ": 9.029153, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "717c42" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.80855, - "posY": 1.71239948, - "posZ": -33.79921, - "rotX": 359.910339, - "rotY": 269.97876, - "rotZ": 0.03349457, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wracked", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231808, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c8092b" - }, - { - "Name": "Card", - "Transform": { - "posX": 19.32797, - "posY": 1.34728289, - "posZ": 63.819725, - "rotX": 0.0208016783, - "rotY": 270.0232, - "rotZ": 0.01678183, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Disquieting Dreams", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275529, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ecc30a" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.0510273, - "posY": 1.71469259, - "posZ": -33.44395, - "rotX": 359.919128, - "rotY": 269.978668, - "rotZ": 0.0163030848, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Diabolic Voices", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231807, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "407e66" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.055851, - "posY": 1.72234285, - "posZ": -33.4770279, - "rotX": 359.9191, - "rotY": 269.978851, - "rotZ": 0.0164938, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Diabolic Voices", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231807, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0fa642" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.6637516, - "posY": 1.7296617, - "posZ": -33.73086, - "rotX": 359.9201, - "rotY": 269.978882, - "rotZ": 0.0205486864, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Bedeviled", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231809, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a558b5" - }, - { - "Name": "Card", - "Transform": { - "posX": 19.2536545, - "posY": 1.49378228, - "posZ": 63.5150528, - "rotX": 0.0208015256, - "rotY": 270.0232, - "rotZ": 0.0167839061, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Disquieting Dreams", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275529, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4bfb2e" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.1656151, - "posY": 1.716761, - "posZ": -33.74088, - "rotX": 359.918976, - "rotY": 269.9787, - "rotZ": 0.018134892, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Bedeviled", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231809, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f7c676" - }, - { - "Name": "Card", - "Transform": { - "posX": -21.0152721, - "posY": 1.57281208, - "posZ": -32.7783356, - "rotX": 359.9176, - "rotY": 269.977783, - "rotZ": 0.01638736, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "81dc7a" - }, - { - "Name": "Card", - "Transform": { - "posX": 18.958252, - "posY": 1.49464607, - "posZ": 66.83138, - "rotX": 0.0208131149, - "rotY": 269.98288, - "rotZ": 0.0167688485, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Pulled by the Stars", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275528, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "73138b" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.7263336, - "posY": 1.754926, - "posZ": -33.80658, - "rotX": 0.0413828529, - "rotY": 269.9769, - "rotZ": 0.3666429, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9cb625" - }, - { - "Name": "Card", - "Transform": { - "posX": 101.318535, - "posY": 1.758954, - "posZ": 10.703804, - "rotX": 1.86105, - "rotY": 269.999481, - "rotZ": 179.999344, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Swarm of Rats", - "Description": "Creature.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12113, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bbc9d1" - }, - { - "Name": "Card", - "Transform": { - "posX": 101.571495, - "posY": 1.75029993, - "posZ": 10.4105225, - "rotX": 2.26571965, - "rotY": 269.998566, - "rotZ": 180.004791, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Swarm of Rats", - "Description": "Creature.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12113, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7381cd" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.54692, - "posY": 1.60918021, - "posZ": -33.3808479, - "rotX": 359.9352, - "rotY": 269.982361, - "rotZ": 0.376713872, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0a13d0" - }, - { - "Name": "Card", - "Transform": { - "posX": 28.0608063, - "posY": 1.48256147, - "posZ": 70.23769, - "rotX": 0.3963438, - "rotY": 269.9942, - "rotZ": 179.55542, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Brown Jenkin", - "Description": "The Witch's Familiar", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275530, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a5885f" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.974844, - "posY": 1.58076048, - "posZ": -29.1853924, - "rotX": 359.916321, - "rotY": 269.977448, - "rotZ": 0.01572173, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shapes in the Mist", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231821, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "47147f" - }, - { - "Name": "Card", - "Transform": { - "posX": 16.0629826, - "posY": 1.5434624, - "posZ": 69.85437, - "rotX": 0.00353208953, - "rotY": 269.9999, - "rotZ": 0.0103120068, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Meddlesome Familiar", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275525, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "91ea7c" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.46502, - "posY": 2.16774321, - "posZ": -34.8072357, - "rotX": 0.232217044, - "rotY": 270.777466, - "rotZ": 353.199249, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fbcb9f" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.3842, - "posY": 2.1039958, - "posZ": -34.9055138, - "rotX": 359.182831, - "rotY": 270.902466, - "rotZ": 355.1978, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4f41b0" - }, - { - "Name": "Card", - "Transform": { - "posX": 16.288187, - "posY": 1.49218273, - "posZ": 63.2581558, - "rotX": 0.019790573, - "rotY": 269.982269, - "rotZ": 0.01620747, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Extradimensional Visions", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275527, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1a9156" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.5189228, - "posY": 1.92383051, - "posZ": -29.7425785, - "rotX": 359.8803, - "rotY": 269.977753, - "rotZ": 0.07589612, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Realm of Torment", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231820, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e49187" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.7343235, - "posY": 1.86165559, - "posZ": -33.3503036, - "rotX": 359.785339, - "rotY": 269.9796, - "rotZ": 0.07815084, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Evil Past", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231813, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "976fd8" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.9579411, - "posY": 1.72431993, - "posZ": -29.8048172, - "rotX": 359.8922, - "rotY": 269.971619, - "rotZ": 0.06810118, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shapes in the Mist", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231821, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3c04e0" - }, - { - "Name": "Card", - "Transform": { - "posX": 101.9408, - "posY": 1.783524, - "posZ": 10.864604, - "rotX": 2.44426751, - "rotY": 269.9983, - "rotZ": -0.004248401, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Swarm of Rats", - "Description": "Creature.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12113, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "56e5db" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.7152367, - "posY": 1.91512489, - "posZ": -32.59262, - "rotX": 359.910583, - "rotY": 269.364441, - "rotZ": 341.912537, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ef132d" - }, - { - "Name": "Card", - "Transform": { - "posX": -24.27985, - "posY": 1.99979043, - "posZ": -34.2781525, - "rotX": 359.187378, - "rotY": 270.910339, - "rotZ": 355.236023, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "43ba03" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.71135, - "posY": 1.56800044, - "posZ": -33.49924, - "rotX": 359.9177, - "rotY": 269.978638, - "rotZ": 0.0161360279, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wracked", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231808, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4949ea" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.8834572, - "posY": 1.89827907, - "posZ": -33.5683937, - "rotX": 0.110509835, - "rotY": 269.976044, - "rotZ": 0.334469885, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Evil Past", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231813, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ab69b8" - }, - { - "Name": "Card", - "Transform": { - "posX": 15.534421, - "posY": 1.34764123, - "posZ": 69.7729, - "rotX": 0.02023894, - "rotY": 269.999878, - "rotZ": 0.01630637, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Meddlesome Familiar", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275525, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "669016" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6618786, - "posY": 2.18380141, - "posZ": -35.4214439, - "rotX": 359.156219, - "rotY": 270.890381, - "rotZ": 355.0201, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1a350a" - }, - { - "Name": "Card", - "Transform": { - "posX": 16.0629387, - "posY": 1.39727807, - "posZ": 69.8543549, - "rotX": 0.006995492, - "rotY": 269.999939, - "rotZ": 0.0118337628, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Meddlesome Familiar", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275525, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "561923" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.91995, - "posY": 1.77833688, - "posZ": -29.84826, - "rotX": 359.884155, - "rotY": 269.9732, - "rotZ": 0.074736394, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Realm of Torment", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231820, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "278e46" - }, - { - "Name": "Card", - "Transform": { - "posX": 19.4392548, - "posY": 1.34818745, - "posZ": 66.77173, - "rotX": 0.0208143778, - "rotY": 269.982849, - "rotZ": 0.0167647954, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Pulled by the Stars", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275528, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6b521b" - } - ], - "GUID": "8ee597" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6763, - "posY": 1.68622, - "posZ": -0.0300004128, - "rotX": 359.9201, - "rotY": 269.999939, - "rotZ": 0.016876312, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Walter Gilman's Room", - "Description": "Witch House.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275926, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9f9bb1" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.74219966, - "posY": 1.58213162, - "posZ": -15.5575018, - "rotX": 359.919739, - "rotY": 270.004944, - "rotZ": 0.0168308429, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "The Secret Name", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'The Witching Hour'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", - "LuaScriptState": "", - "GUID": "b21125" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2242, - "posY": 1.62478244, - "posZ": 3.86000037, - "rotX": 0.01689857, - "rotY": 179.980774, - "rotZ": 0.07993373, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b7da8c", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.6884, - "posY": 1.65499711, - "posZ": -5.04850054, - "rotX": 0.0168175939, - "rotY": 180.012482, - "rotZ": 0.08026119, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 275327, - 275326, - 275325 - ], - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 26.17231, - "posY": 1.348263, - "posZ": 59.550766, - "rotX": 0.0021465125, - "rotY": 179.997375, - "rotZ": 359.97345, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Stopping the Ritual", - "Description": "Act 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275327, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1abfba" - }, - { - "Name": "Card", - "Transform": { - "posX": 29.2456379, - "posY": 1.349643, - "posZ": 59.6061249, - "rotX": 0.01631257, - "rotY": 180.001724, - "rotZ": 359.977448, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Beyond the Witch House", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275326, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1feabc" - }, - { - "Name": "Card", - "Transform": { - "posX": 29.3317261, - "posY": 1.49492872, - "posZ": 59.80226, - "rotX": 0.0080563575, - "rotY": 180.004028, - "rotZ": 359.976, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Investigating the Witch House", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275325, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d01350" - } - ], - "GUID": "ba1246" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.224, - "posY": 1.69535041, - "posZ": -0.0301005151, - "rotX": 359.9201, - "rotY": 269.999969, - "rotZ": 0.01687616, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Moldy Halls", - "Description": "Witch House.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275922, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e281ec" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.95600033, - "posY": 1.65564811, - "posZ": -10.4412012, - "rotX": 359.919739, - "rotY": 270.0001, - "rotZ": 0.01684067, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "The Secret Name", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275420, - "SidewaysCard": false, - "CustomDeck": { - "2754": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f087e3" - } - ], - "GUID": "5c79d0", - "AttachedDecals": [ - { - "Transform": { - "posX": -0.0021877822, - "posY": -0.08963572, - "posZ": -0.00288731651, - "rotX": 270.0, - "rotY": 359.869568, - "rotZ": 0.0, - "scaleX": 2.00000215, - "scaleY": 2.00000238, - "scaleZ": 2.00000262 - }, - "CustomDecal": { - "Name": "dunwich_back", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", - "Size": 7.4 - } - } - ] - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 12.2502012, - "posY": 1.47267246, - "posZ": 27.9864044, - "rotX": 359.920135, - "rotY": 270.000366, - "rotZ": 0.0168741085, - "scaleX": 2.21, - "scaleY": 0.46, - "scaleZ": 2.42 - }, - "Nickname": "1: The Witching Hour", - "Description": "The Circle Undone", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/829135118401811143/D4D1F789798EE5B55B10782ACC5D595C4281F074/", - "NormalURL": "", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", - "LuaScriptState": "{\"ml\":{\"0da03e\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"35dcd2\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"8f6174\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6806,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"ad3298\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9998,\"z\":0.0803}},\"c7d2b7\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0168,\"z\":0.0803}},\"e93c2f\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7504,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9992,\"z\":180.0168}},\"f697b0\":{\"lock\":false,\"pos\":{\"x\":-3.6965,\"y\":1.5822,\"z\":-15.0888},\"rot\":{\"x\":359.9197,\"y\":270.0056,\"z\":0.0168}}}}", - "ContainedObjects": [ - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 1.696601, - "posY": 1.55831683, - "posZ": 14.2787027, - "rotX": 359.955139, - "rotY": 224.998, - "rotZ": 0.06867232, - "scaleX": 2.0, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "Nickname": "Set-aside", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.02148666, - "g": 0.00100758043, - "b": 0.02148666 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", - "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 1, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -6.183633, - "posY": 2.8164773, - "posZ": -11.6198263, - "rotX": 359.920044, - "rotY": 270.005859, - "rotZ": 0.0164405052, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Tower • XVI", - "Description": "Circumstances Beyond Your Control", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 290320, - "SidewaysCard": false, - "CustomDeck": { - "2903": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d5c93d" - }, - { - "Name": "Card", - "Transform": { - "posX": -6.42330551, - "posY": 2.81578183, - "posZ": -15.1154623, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.01687873, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ace of Rods (1)", - "Description": "The Fateful Step", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 292603, - "SidewaysCard": false, - "CustomDeck": { - "2926": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4fb46f" - }, - { - "Name": "Card", - "Transform": { - "posX": 23.7801342, - "posY": 3.56756115, - "posZ": -12.4946537, - "rotX": 359.919678, - "rotY": 269.998474, - "rotZ": 0.0173492152, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Anette Mason", - "Description": "The High Priestess", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231800, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "845563" - }, - { - "Name": "Deck", - "Transform": { - "posX": 23.5791035, - "posY": 3.47389364, - "posZ": -15.9258289, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.01686523, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Arkham Woods", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 3539, - 3540, - 3538, - 3537, - 3536, - 3535 - ], - "CustomDeck": { - "35": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 5.94822025, - "posY": 1.03171337, - "posZ": -11.5008354, - "rotX": 1.42216059E-05, - "rotY": 179.976181, - "rotZ": -1.28611E-06, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Arkham Woods", - "Description": "Woods", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 3539, - "SidewaysCard": false, - "CustomDeck": { - "35": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9fff9f" - }, - { - "Name": "Card", - "Transform": { - "posX": 5.32451725, - "posY": 1.03171325, - "posZ": -11.8748674, - "rotX": 1.36801236E-05, - "rotY": 180.0, - "rotZ": -1.61335913E-06, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Arkham Woods", - "Description": "Woods", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 3540, - "SidewaysCard": false, - "CustomDeck": { - "35": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "deaa6c" - }, - { - "Name": "Card", - "Transform": { - "posX": 5.37175941, - "posY": 1.13171315, - "posZ": -11.9442635, - "rotX": 1.33452786E-05, - "rotY": 180.000824, - "rotZ": -3.98964517E-07, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Arkham Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 3538, - "SidewaysCard": false, - "CustomDeck": { - "35": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3a7f2c" - }, - { - "Name": "Card", - "Transform": { - "posX": 5.523985, - "posY": 1.1817131, - "posZ": -10.9815063, - "rotX": 1.33532585E-05, - "rotY": 179.92868, - "rotZ": -3.776301E-07, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Arkham Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 3537, - "SidewaysCard": false, - "CustomDeck": { - "35": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "701563" - }, - { - "Name": "Card", - "Transform": { - "posX": 4.891869, - "posY": 1.327963, - "posZ": -11.92246, - "rotX": 5.279162E-05, - "rotY": 179.982819, - "rotZ": 4.28566236E-05, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Arkham Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 3536, - "SidewaysCard": false, - "CustomDeck": { - "35": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "add566" - }, - { - "Name": "Card", - "Transform": { - "posX": 4.830782, - "posY": 1.6152488, - "posZ": -12.2257776, - "rotX": 353.9548, - "rotY": 180.018768, - "rotZ": 358.6411, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Arkham Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 3535, - "SidewaysCard": false, - "CustomDeck": { - "35": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3baf39" - } - ], - "GUID": "9d2e72" - }, - { - "Name": "Deck", - "Transform": { - "posX": 23.8367386, - "posY": 3.469521, - "posZ": -19.9506054, - "rotX": 359.920135, - "rotY": 269.996735, - "rotZ": 0.0168742351, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agents of Shub-Niggurath", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 3634, - 3634, - 3634, - 3633 - ], - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 90.65886, - "posY": 1.40921557, - "posZ": -0.233399391, - "rotX": 359.987427, - "rotY": 270.0001, - "rotZ": 359.984528, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Goat Spawn", - "Description": "Humanoid. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3634, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "19459f" - }, - { - "Name": "Card", - "Transform": { - "posX": 90.53866, - "posY": 1.55464137, - "posZ": -0.678629, - "rotX": 359.990082, - "rotY": 270.000366, - "rotZ": 359.988, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Goat Spawn", - "Description": "Humanoid. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3634, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "dbcee1" - }, - { - "Name": "Card", - "Transform": { - "posX": 90.78235, - "posY": 1.57190418, - "posZ": -0.8887629, - "rotX": 359.9898, - "rotY": 269.999756, - "rotZ": 359.987976, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Goat Spawn", - "Description": "Humanoid. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3634, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bda9db" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.028802, - "posY": 1.70160449, - "posZ": -19.1037846, - "rotX": 0.01503002, - "rotY": 180.011887, - "rotZ": 0.06358985, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Relentless Dark Young", - "Description": "Monster. Dark Young.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3633, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "da8001" - } - ], - "GUID": "3175c4" - }, - { - "Name": "Deck", - "Transform": { - "posX": 23.6495457, - "posY": 3.46883488, - "posZ": -23.1690922, - "rotX": 359.920135, - "rotY": 270.006531, - "rotZ": 0.0168636087, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agents of Azathoth", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231803, - 231804, - 231804, - 231804 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 25.1804886, - "posY": 1.50821829, - "posZ": -33.247345, - "rotX": 359.914459, - "rotY": 270.007751, - "rotZ": 0.0151159875, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Piper of Azatoth", - "Description": "Monster. Elite.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231803, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "092d86" - }, - { - "Name": "Card", - "Transform": { - "posX": 24.943243, - "posY": 1.64901268, - "posZ": -33.1631355, - "rotX": 359.923157, - "rotY": 270.000244, - "rotZ": 0.0113229118, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Daemonic Piping", - "Description": "Power. Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231804, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f84e0e" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.44798, - "posY": 1.66371691, - "posZ": -33.04016, - "rotX": 359.917969, - "rotY": 270.000061, - "rotZ": 0.0156315826, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Daemonic Piping", - "Description": "Power. Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231804, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f84e0e" - }, - { - "Name": "Card", - "Transform": { - "posX": 25.4479656, - "posY": 1.6527828, - "posZ": -33.0401649, - "rotX": 359.918152, - "rotY": 270.000122, - "rotZ": 0.01566419, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Daemonic Piping", - "Description": "Power. Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231804, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f84e0e" - } - ], - "GUID": "65502d" - } - ], - "PhysicsMaterial": { - "StaticFriction": 0.6, - "DynamicFriction": 0.6, - "Bounciness": 0.0, - "FrictionCombine": 0, - "BounceCombine": 0 - }, - "Rigidbody": { - "Mass": 1.375, - "Drag": 5.0, - "AngularDrag": 5.0, - "UseGravity": true - }, - "GUID": "0da03e" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.956, - "posY": 1.65564811, - "posZ": -10.4412022, - "rotX": 359.919739, - "rotY": 269.9995, - "rotZ": 0.0168414, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "The Witching Hour", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231707, - "SidewaysCard": false, - "CustomDeck": { - "2317": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "35dcd2" - }, - { - "Name": "Deck", - "Transform": { - "posX": -17.12, - "posY": 1.68060648, - "posZ": -0.0300002769, - "rotX": 359.9201, - "rotY": 269.999268, - "rotZ": 0.0168778934, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Witch-Haunted Woods", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231901, - 231902, - 231904, - 231900, - 231903, - 231905, - 231906 - ], - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 3.25838232, - "posY": 1.54423487, - "posZ": -15.0968046, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.016869422, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Witch-Haunted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231901, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "eca18e" - }, - { - "Name": "Card", - "Transform": { - "posX": 3.3670063, - "posY": 1.54326081, - "posZ": -17.8906136, - "rotX": 359.920135, - "rotY": 270.000061, - "rotZ": 0.0168700721, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Witch-Haunted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231902, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "05d5ef" - }, - { - "Name": "Card", - "Transform": { - "posX": 3.26717877, - "posY": 1.54263616, - "posZ": -20.4850121, - "rotX": 359.920135, - "rotY": 269.999969, - "rotZ": 0.01686795, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Witch-Haunted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231904, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0fe9f1" - }, - { - "Name": "Card", - "Transform": { - "posX": -0.0956207737, - "posY": 1.54858446, - "posZ": -16.2046013, - "rotX": 359.920135, - "rotY": 270.0001, - "rotZ": 0.0168696959, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Witch-Haunted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231900, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d7fb9d" - }, - { - "Name": "Card", - "Transform": { - "posX": 0.0298207663, - "posY": 1.54765153, - "posZ": -18.7793159, - "rotX": 359.920135, - "rotY": 270.000061, - "rotZ": 0.016869735, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Witch-Haunted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231903, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d3f8c3" - }, - { - "Name": "Card", - "Transform": { - "posX": 0.0108068641, - "posY": 1.54669714, - "posZ": -22.1110363, - "rotX": 359.920135, - "rotY": 269.999969, - "rotZ": 0.0168679785, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Witch-Haunted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231905, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1539ea" - }, - { - "Name": "Card", - "Transform": { - "posX": 3.79385471, - "posY": 1.5407505, - "posZ": -24.39393, - "rotX": 359.9201, - "rotY": 269.999969, - "rotZ": 0.0168750882, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Witch-Haunted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231906, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fc78d7" - } - ], - "GUID": "8f6174" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.7247, - "posY": 1.66397727, - "posZ": 0.3733003, - "rotX": 0.0168352686, - "rotY": 179.999817, - "rotZ": 0.08025779, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agenda Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 232009, - 232008 - ], - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -7.297843, - "posY": 1.56667411, - "posZ": 11.3410053, - "rotX": 0.0139629086, - "rotY": 179.999878, - "rotZ": 0.07908345, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Night Howls", - "Description": "Agenda 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232009, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9d5674" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.0022, - "posY": 1.70677054, - "posZ": 11.2190895, - "rotX": 0.00582233956, - "rotY": 179.99968, - "rotZ": 0.09951117, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "TEMPERANCE · XIV", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232008, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "96a76c" - } - ], - "GUID": "ad3298" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.6885, - "posY": 1.65349448, - "posZ": -5.0485, - "rotX": 0.0168115646, - "rotY": 180.016739, - "rotZ": 0.0802623853, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 232013, - 232012, - 232011, - 232010 - ], - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -13.39085, - "posY": 1.573935, - "posZ": 7.543645, - "rotX": 0.008133726, - "rotY": 180.001221, - "rotZ": 0.07553037, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "A Circle Unbroken", - "Description": "Act 4", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232013, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0a0759" - }, - { - "Name": "Card", - "Transform": { - "posX": -10.4994593, - "posY": 1.56992149, - "posZ": 7.226833, - "rotX": 0.0122376485, - "rotY": 180.002289, - "rotZ": 0.07501469, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Paths into Twilight", - "Description": "Act 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232012, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c31146" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.62799454, - "posY": 1.56589842, - "posZ": 7.2519803, - "rotX": 0.0122893164, - "rotY": 179.999939, - "rotZ": 0.0784956142, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Witch Hauntings", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232011, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "68cfea" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.58153057, - "posY": 1.7061789, - "posZ": 7.33736944, - "rotX": 0.0176965259, - "rotY": 180.000427, - "rotZ": 0.08492906, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lost in the Woods", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232010, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b7c7c" - } - ], - "GUID": "c7d2b7" - }, - { - "Name": "Deck", - "Transform": { - "posX": -3.9276, - "posY": 1.750392, - "posZ": 5.75710154, - "rotX": 359.919739, - "rotY": 269.999176, - "rotZ": 180.016815, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231814, - 231814, - 231814, - 231813, - 12119, - 12120, - 12120, - 12119, - 12120, - 231805, - 231808, - 231806, - 231805, - 12118, - 231805, - 12118, - 231813, - 12117, - 231807, - 231809, - 231807, - 12117, - 231808, - 231809, - 231807, - 12117 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -31.1529961, - "posY": 1.60048223, - "posZ": 13.00202, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.01686549, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "81dc7a" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.1531715, - "posY": 1.59978771, - "posZ": 10.6427326, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.0168689042, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0a13d0" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.1533489, - "posY": 1.5990932, - "posZ": 8.283448, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.0168649089, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9cb625" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.1535263, - "posY": 1.5983988, - "posZ": 5.924162, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168659426, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Evil Past", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231813, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ab69b8" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.153698, - "posY": 1.59770441, - "posZ": 3.56487679, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168739818, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dissonant Voices", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12119, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f1a34d" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.1538734, - "posY": 1.5970099, - "posZ": 1.20559013, - "rotX": 359.920135, - "rotY": 269.9999, - "rotZ": 0.0168712325, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "61e841" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.15405, - "posY": 1.59631538, - "posZ": -1.153695, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.016872257, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1921c5" - }, - { - "Name": "Card", - "Transform": { - "posX": -34.4744949, - "posY": 1.60511291, - "posZ": 13.0022678, - "rotX": 359.920135, - "rotY": 269.999847, - "rotZ": 0.016863469, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dissonant Voices", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12119, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "260768" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.1542244, - "posY": 1.595621, - "posZ": -3.51298, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.0168725476, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e0f4c0" - }, - { - "Name": "Card", - "Transform": { - "posX": -34.4750137, - "posY": 1.60302925, - "posZ": 5.92440939, - "rotX": 359.920135, - "rotY": 269.999878, - "rotZ": 0.01687006, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Coven Initiate", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231805, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c35966" - }, - { - "Name": "Card", - "Transform": { - "posX": -34.47484, - "posY": 1.60372376, - "posZ": 8.283695, - "rotX": 359.920135, - "rotY": 269.999878, - "rotZ": 0.01686561, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wracked", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231808, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4949ea" - }, - { - "Name": "Card", - "Transform": { - "posX": -34.6088028, - "posY": 1.6046325, - "posZ": 10.7354145, - "rotX": 359.920135, - "rotY": 270.0028, - "rotZ": 0.0168665145, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Priestess of the Coven", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231806, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "326f11" - }, - { - "Name": "Card", - "Transform": { - "posX": -34.4757233, - "posY": 1.60025144, - "posZ": -3.51273465, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.0168698486, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Coven Initiate", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231805, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6f2c2e" - }, - { - "Name": "Card", - "Transform": { - "posX": -34.4755363, - "posY": 1.600946, - "posZ": -1.15344846, - "rotX": 359.920135, - "rotY": 270.000031, - "rotZ": 0.01686838, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Frozen in Fear", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12118, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c40f57" - }, - { - "Name": "Card", - "Transform": { - "posX": -34.47536, - "posY": 1.60164046, - "posZ": 1.2058363, - "rotX": 359.9201, - "rotY": 269.999847, - "rotZ": 0.0168651938, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Coven Initiate", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231805, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "367d03" - }, - { - "Name": "Card", - "Transform": { - "posX": -34.47519, - "posY": 1.60233474, - "posZ": 3.565123, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.01687042, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Frozen in Fear", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12118, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "27c05d" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.1544037, - "posY": 1.59492648, - "posZ": -5.87226534, - "rotX": 359.920135, - "rotY": 270.000031, - "rotZ": 0.0168683082, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Evil Past", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231813, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "976fd8" - }, - { - "Name": "Card", - "Transform": { - "posX": -34.4759026, - "posY": 1.59955692, - "posZ": -5.872021, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168718528, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Rotting Remains", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12117, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "aa3d47" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.15458, - "posY": 1.59423184, - "posZ": -8.231554, - "rotX": 359.920135, - "rotY": 270.000061, - "rotZ": 0.0168670043, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Diabolic Voices", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231807, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "407e66" - }, - { - "Name": "Card", - "Transform": { - "posX": -34.4760742, - "posY": 1.59886241, - "posZ": -8.231309, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168680027, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Bedeviled", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231809, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f7c676" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.1547565, - "posY": 1.59353733, - "posZ": -10.5908394, - "rotX": 359.920135, - "rotY": 269.9999, - "rotZ": 0.016878726, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Diabolic Voices", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231807, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "64341a" - }, - { - "Name": "Card", - "Transform": { - "posX": -34.47625, - "posY": 1.5981679, - "posZ": -10.5905914, - "rotX": 359.920135, - "rotY": 269.999878, - "rotZ": 0.0168722738, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Rotting Remains", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12117, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "da8001" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.15493, - "posY": 1.59284282, - "posZ": -12.9501247, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.01686631, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wracked", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231808, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c8092b" - }, - { - "Name": "Card", - "Transform": { - "posX": -34.47642, - "posY": 1.59747338, - "posZ": -12.9498787, - "rotX": 359.9201, - "rotY": 269.999939, - "rotZ": 0.0168697, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Bedeviled", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231809, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a558b5" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.1551037, - "posY": 1.59214854, - "posZ": -15.309413, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.016871132, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Diabolic Voices", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231807, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0fa642" - }, - { - "Name": "Card", - "Transform": { - "posX": -34.476593, - "posY": 1.596779, - "posZ": -15.3091669, - "rotX": 359.920135, - "rotY": 269.999817, - "rotZ": 0.0168707632, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Rotting Remains", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12117, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "18e09c" - } - ], - "GUID": "e93c2f" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.6965003, - "posY": 1.58220541, - "posZ": -15.0888014, - "rotX": 359.919739, - "rotY": 270.0055, - "rotZ": 0.0168300048, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "The Witching Hour", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'The Witching Hour'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", - "LuaScriptState": "", - "GUID": "f697b0" - } - ], - "GUID": "67a775", - "AttachedDecals": [ - { - "Transform": { - "posX": -0.0021877822, - "posY": -0.08963572, - "posZ": -0.00288731651, - "rotX": 270.0, - "rotY": 359.869568, - "rotZ": 0.0, - "scaleX": 2.00000215, - "scaleY": 2.00000238, - "scaleZ": 2.00000262 - }, - "CustomDecal": { - "Name": "dunwich_back", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", - "Size": 7.4 - } - } - ] - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 12.2499027, - "posY": 1.47031713, - "posZ": 19.9864044, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.0168729145, - "scaleX": 2.21, - "scaleY": 0.46, - "scaleZ": 2.42 - }, - "Nickname": "2: At Door's Doorstep", - "Description": "The Circle Undone", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/829135118401812554/E797F70643F70188791F2CA1434295008BBE9D4B/", - "NormalURL": "", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", - "LuaScriptState": "{\"ml\":{\"05cb54\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7451,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":180.0168}},\"0699e7\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"094470\":{\"lock\":false,\"pos\":{\"x\":-20.6487,\"y\":1.6103,\"z\":-0.1206},\"rot\":{\"x\":359.9201,\"y\":269.9937,\"z\":0.0169}},\"0f2a24\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0803}},\"1b5483\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6817,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"33990b\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6907,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"5fa970\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9906,\"z\":0.0803}},\"67acd6\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6179,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":179.9917,\"z\":0.0799}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-27.3935,\"y\":1.6196,\"z\":-0.2795},\"rot\":{\"x\":359.9201,\"y\":269.9935,\"z\":0.0169}},\"a1bd9a\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"a6af88\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9915,\"z\":0.0799}},\"b21125\":{\"lock\":false,\"pos\":{\"x\":-3.7749,\"y\":1.5825,\"z\":-14.6072},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"c24b98\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"c43910\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9916,\"z\":0.0799}},\"d7fb9d\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"de7cf4\":{\"lock\":false,\"pos\":{\"x\":1.6968,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"e0e8c6\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9915,\"z\":0.0799}},\"e0ffe2\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"e9160a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}}}}", - "ContainedObjects": [ - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 1.69680083, - "posY": 1.55831671, - "posZ": 14.278801, - "rotX": 359.955139, - "rotY": 224.997986, - "rotZ": 0.06867422, - "scaleX": 2.0, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "Nickname": "Set-aside", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.02148666, - "g": 0.00100758043, - "b": 0.02148666 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", - "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 1, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Deck", - "Transform": { - "posX": 20.8909283, - "posY": 3.57110381, - "posZ": -7.308581, - "rotX": 359.919434, - "rotY": 269.998657, - "rotZ": 0.017221611, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Realm of Death", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231820, - 231820, - 231821, - 231821 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 15.4269018, - "posY": 1.52812648, - "posZ": -11.9266014, - "rotX": 359.915649, - "rotY": 269.999329, - "rotZ": 0.0150207849, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Realm of Torment", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231820, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0f6fce" - }, - { - "Name": "Card", - "Transform": { - "posX": 15.1352577, - "posY": 1.67292893, - "posZ": -11.5751591, - "rotX": 359.9098, - "rotY": 269.998718, - "rotZ": 359.975525, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Realm of Torment", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231820, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c1d60f" - }, - { - "Name": "Card", - "Transform": { - "posX": 15.2996044, - "posY": 1.686471, - "posZ": -12.0028191, - "rotX": 359.9189, - "rotY": 269.999451, - "rotZ": 0.0174130946, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shapes in the Mist", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231821, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "37ebea" - }, - { - "Name": "Card", - "Transform": { - "posX": 15.2108431, - "posY": 1.67701876, - "posZ": -12.2717237, - "rotX": 359.917847, - "rotY": 269.999237, - "rotZ": 0.0208463036, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shapes in the Mist", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231821, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "37ebea" - } - ], - "GUID": "a49224" - }, - { - "Name": "Card", - "Transform": { - "posX": 20.4776115, - "posY": 3.476435, - "posZ": -18.2683067, - "rotX": 359.920135, - "rotY": 270.000854, - "rotZ": 0.0168664455, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Josef Meiger", - "Description": "Lodge Host", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231921, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ffedcd" - }, - { - "Name": "Deck", - "Transform": { - "posX": 20.4051666, - "posY": 3.4812274, - "posZ": -14.3216152, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.01687278, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Spectral Locations", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231917, - 231919, - 231918, - 231916, - 231920, - 231915, - 231914 - ], - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 30.17334, - "posY": 1.66093552, - "posZ": -10.3231525, - "rotX": 359.9202, - "rotY": 269.9976, - "rotZ": 180.017319, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Billiards Room", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231917, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "349eb6" - }, - { - "Name": "Card", - "Transform": { - "posX": -6.635082, - "posY": 1.55915916, - "posZ": -20.84021, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 180.016876, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Balcony", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231919, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3b69ae" - }, - { - "Name": "Card", - "Transform": { - "posX": -6.842271, - "posY": 1.56042325, - "posZ": -17.52801, - "rotX": 359.920135, - "rotY": 269.999969, - "rotZ": 180.016876, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Master Bedroom", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231918, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "327f3b" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.0209713, - "posY": 1.56386793, - "posZ": -6.675879, - "rotX": 359.920135, - "rotY": 270.000061, - "rotZ": 180.016876, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Trophy Room", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231916, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f5616e" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.17894936, - "posY": 1.56330776, - "posZ": -9.326272, - "rotX": 359.920135, - "rotY": 270.000244, - "rotZ": 180.016876, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Office", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231920, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "060886" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.126053, - "posY": 1.56161821, - "posZ": -14.8133183, - "rotX": 359.920135, - "rotY": 270.000061, - "rotZ": 180.016876, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Victorian Halls", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231915, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "94ef8e" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.17377758, - "posY": 1.56240535, - "posZ": -12.3664637, - "rotX": 359.920135, - "rotY": 270.000061, - "rotZ": 180.016876, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Entry Hall", - "Description": "Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231914, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7cb46b" - } - ], - "GUID": "4bb0d9" - }, - { - "Name": "Deck", - "Transform": { - "posX": 20.9123344, - "posY": 3.47740149, - "posZ": -11.3691158, - "rotX": 359.9201, - "rotY": 270.020477, - "rotZ": 0.0168361887, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Watcher", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231802, - 231802, - 231801 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 15.8376656, - "posY": 1.52715087, - "posZ": -13.4530945, - "rotX": 359.9181, - "rotY": 270.020538, - "rotZ": 0.0155973658, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Watcher's Grasp", - "Description": "Power. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231802, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "33e855" - }, - { - "Name": "Card", - "Transform": { - "posX": 15.84392, - "posY": 1.576776, - "posZ": -12.7454138, - "rotX": 0.0287003722, - "rotY": 269.984375, - "rotZ": 359.99295, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Watcher's Grasp", - "Description": "Power. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231802, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e43fdd" - }, - { - "Name": "Card", - "Transform": { - "posX": 15.8923817, - "posY": 1.72291648, - "posZ": -12.6000233, - "rotX": 0.022801578, - "rotY": 270.024963, - "rotZ": -0.00408142665, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Spectral Watcher", - "Description": "You Are Its Prey", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231801, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c97834" - } - ], - "GUID": "f048cc" - } - ], - "PhysicsMaterial": { - "StaticFriction": 0.6, - "DynamicFriction": 0.6, - "Bounciness": 0.0, - "FrictionCombine": 0, - "BounceCombine": 0 - }, - "Rigidbody": { - "Mass": 1.375, - "Drag": 5.0, - "AngularDrag": 5.0, - "UseGravity": true - }, - "GUID": "de7cf4" - }, - { - "Name": "Deck", - "Transform": { - "posX": -3.92760015, - "posY": 1.74506247, - "posZ": 5.757101, - "rotX": 359.919739, - "rotY": 270.000458, - "rotZ": 180.016815, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 12122, - 12121, - 12121, - 12122, - 231815, - 231823, - 231823, - 231823, - 231822, - 231822, - 231822, - 231819, - 231819, - 231818, - 231812, - 231812, - 231818, - 231811, - 231810, - 231810, - 231810, - 231817, - 231817, - 231816, - 231816 - ], - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -32.25675, - "posY": 1.600186, - "posZ": 6.770343, - "rotX": 359.920135, - "rotY": 269.987549, - "rotZ": 0.0168844368, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Obscuring Fog", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12122, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "356046" - }, - { - "Name": "Card", - "Transform": { - "posX": -32.25649, - "posY": 1.60227036, - "posZ": 13.85011, - "rotX": 359.920135, - "rotY": 269.987518, - "rotZ": 0.0168882515, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Crypt Chill", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12121, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fb311c" - }, - { - "Name": "Card", - "Transform": { - "posX": -32.2565727, - "posY": 1.60157561, - "posZ": 11.4901876, - "rotX": 359.920135, - "rotY": 269.987549, - "rotZ": 0.0168857444, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Crypt Chill", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12121, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b78c3b" - }, - { - "Name": "Card", - "Transform": { - "posX": -32.2566643, - "posY": 1.60088074, - "posZ": 9.130263, - "rotX": 359.920135, - "rotY": 269.9875, - "rotZ": 0.016892409, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Obscuring Fog", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12122, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "03a265" - }, - { - "Name": "Card", - "Transform": { - "posX": -28.3051548, - "posY": 1.589776, - "posZ": -9.873041, - "rotX": 359.920135, - "rotY": 269.998749, - "rotZ": 0.0168736149, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nether Mist.", - "Description": "Monster. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231815, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fe13c7" - }, - { - "Name": "Card", - "Transform": { - "posX": -28.270216, - "posY": 1.66379952, - "posZ": -7.165576, - "rotX": 359.921173, - "rotY": 270.0037, - "rotZ": 3.8773396, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4e6119" - }, - { - "Name": "Card", - "Transform": { - "posX": -27.9746227, - "posY": 1.59078109, - "posZ": -4.986663, - "rotX": 359.920837, - "rotY": 270.006042, - "rotZ": 0.011460376, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fbe55a" - }, - { - "Name": "Card", - "Transform": { - "posX": -27.6898975, - "posY": 1.59101355, - "posZ": -2.75788236, - "rotX": 359.920135, - "rotY": 269.999847, - "rotZ": 0.0168683473, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Fate of All Fools", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231823, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "290ae0" - }, - { - "Name": "Card", - "Transform": { - "posX": -28.4091167, - "posY": 1.59278738, - "posZ": -0.139734685, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168688241, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b781fc" - }, - { - "Name": "Card", - "Transform": { - "posX": -28.1596527, - "posY": 1.66835988, - "posZ": 2.380367, - "rotX": 359.920929, - "rotY": 270.0032, - "rotZ": 3.97807717, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1f6f03" - }, - { - "Name": "Card", - "Transform": { - "posX": -28.75726, - "posY": 1.59466171, - "posZ": 4.50434065, - "rotX": 359.920837, - "rotY": 270.007538, - "rotZ": 0.0112650972, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror in the Night", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231822, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f26342" - }, - { - "Name": "Card", - "Transform": { - "posX": -38.73299, - "posY": 1.603561, - "posZ": -12.4288139, - "rotX": 359.920135, - "rotY": 270.000061, - "rotZ": 0.0168662835, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Trapped Spirits", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231819, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "407a63" - }, - { - "Name": "Card", - "Transform": { - "posX": -39.0160866, - "posY": 1.60465956, - "posZ": -10.0389481, - "rotX": 359.920135, - "rotY": 269.999847, - "rotZ": 0.0168707352, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Trapped Spirits", - "Description": "Terror. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231819, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "829919" - }, - { - "Name": "Card", - "Transform": { - "posX": -39.2292671, - "posY": 1.60635221, - "posZ": -5.29993248, - "rotX": 359.920135, - "rotY": 269.999725, - "rotZ": 0.0168732014, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wraith", - "Description": "Monster. Geist. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231818, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "86598c" - }, - { - "Name": "Card", - "Transform": { - "posX": -38.76867, - "posY": 1.60712111, - "posZ": -0.508546, - "rotX": 359.920135, - "rotY": 270.000854, - "rotZ": 0.0168688912, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysteries of the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231812, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0eb939" - }, - { - "Name": "Card", - "Transform": { - "posX": -38.767128, - "posY": 1.6064266, - "posZ": -2.85914, - "rotX": 359.920135, - "rotY": 270.000732, - "rotZ": 0.0168704186, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysteries of the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231812, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7870f6" - }, - { - "Name": "Card", - "Transform": { - "posX": -39.2138863, - "posY": 1.605613, - "posZ": -7.737663, - "rotX": 359.920135, - "rotY": 269.9997, - "rotZ": 0.0168678444, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wraith", - "Description": "Monster. Geist. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231818, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e299c5" - }, - { - "Name": "Card", - "Transform": { - "posX": -39.216568, - "posY": 1.60848212, - "posZ": 1.9939779, - "rotX": 359.920135, - "rotY": 269.999664, - "rotZ": 0.0168634076, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Keeper of Secrets", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231811, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3761ce" - }, - { - "Name": "Card", - "Transform": { - "posX": -39.0885468, - "posY": 1.700493, - "posZ": 4.62587452, - "rotX": 359.922, - "rotY": 270.006378, - "rotZ": 4.839585, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Neophyte", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231810, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "525275" - }, - { - "Name": "Card", - "Transform": { - "posX": -38.836174, - "posY": 1.609271, - "posZ": 6.373196, - "rotX": 359.920624, - "rotY": 270.007568, - "rotZ": 0.009903546, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Neophyte", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231810, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8dac94" - }, - { - "Name": "Card", - "Transform": { - "posX": -39.04186, - "posY": 1.61026263, - "posZ": 8.867271, - "rotX": 359.920135, - "rotY": 269.999268, - "rotZ": 0.016868528, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Neophyte", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231810, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "408a82" - }, - { - "Name": "Card", - "Transform": { - "posX": -38.81726, - "posY": 1.68460715, - "posZ": 11.4196177, - "rotX": 359.920929, - "rotY": 270.003326, - "rotZ": 3.91074014, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispers in the Dark", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231817, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "35270e" - }, - { - "Name": "Card", - "Transform": { - "posX": -39.2929955, - "posY": 1.61202192, - "posZ": 13.5801, - "rotX": 359.9208, - "rotY": 270.0072, - "rotZ": 0.0113463188, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispers in the Dark", - "Description": "Omen. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231817, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4e1ed6" - }, - { - "Name": "Card", - "Transform": { - "posX": -39.2999344, - "posY": 1.61275434, - "posZ": 16.1082268, - "rotX": 359.9201, - "rotY": 270.00708, - "rotZ": 0.0168633386, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shadow Hound", - "Description": "Monster. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231816, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6f6201" - }, - { - "Name": "Card", - "Transform": { - "posX": -39.5041466, - "posY": 1.6138804, - "posZ": 18.9645443, - "rotX": 359.920135, - "rotY": 269.9995, - "rotZ": 0.01687203, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Shadow Hound", - "Description": "Monster. Spectral.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231816, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "881be9" - } - ], - "GUID": "05cb54" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.7247, - "posY": 1.66397738, - "posZ": 0.3733003, - "rotX": 0.0168355536, - "rotY": 179.999619, - "rotZ": 0.080257915, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agenda Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 232016, - 232015 - ], - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -8.034527, - "posY": 1.56463933, - "posZ": 0.973494232, - "rotX": 0.01332518, - "rotY": 179.999924, - "rotZ": 0.07871701, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Over the Threshold", - "Description": "Agenda 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232016, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6ef9c4" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.961774, - "posY": 1.70493853, - "posZ": 1.22841024, - "rotX": 0.014674738, - "rotY": 180.000473, - "rotZ": 0.08592357, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "JUSTICE · XI", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232015, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6480fa" - } - ], - "GUID": "0f2a24" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.6885, - "posY": 1.65499723, - "posZ": -5.0485, - "rotX": 0.01684831, - "rotY": 179.99057, - "rotZ": 0.08025503, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 232019, - 232018, - 232017 - ], - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -11.4857731, - "posY": 1.56819141, - "posZ": -3.38877225, - "rotX": 0.0138850389, - "rotY": 180.002533, - "rotZ": 0.076025866, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Escape the Cage", - "Description": "Act 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232019, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "46cad7" - }, - { - "Name": "Card", - "Transform": { - "posX": -8.56042, - "posY": 1.56400037, - "posZ": -3.68023252, - "rotX": 0.011601598, - "rotY": 179.996872, - "rotZ": 0.07883525, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Spectral Realm", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232018, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d862a5" - }, - { - "Name": "Card", - "Transform": { - "posX": -8.573303, - "posY": 1.70431888, - "posZ": -3.6430676, - "rotX": 0.0150601817, - "rotY": 179.9911, - "rotZ": 0.06978336, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hidden Agendas", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232017, - "SidewaysCard": true, - "CustomDeck": { - "2320": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ba8956" - } - ], - "GUID": "5fa970" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.955902, - "posY": 1.655648, - "posZ": -10.4412241, - "rotX": 359.919739, - "rotY": 270.000122, - "rotZ": 0.01684478, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "At Death's Doorstep", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231714, - "SidewaysCard": false, - "CustomDeck": { - "2317": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c24b98" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.7749, - "posY": 1.58245683, - "posZ": -14.6072035, - "rotX": 359.919739, - "rotY": 270.004944, - "rotZ": 0.0168308653, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "At Death's Doorstep", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'The Witching Hour'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", - "LuaScriptState": "", - "GUID": "b21125" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.12, - "posY": 1.67707777, - "posZ": -0.0300003178, - "rotX": 359.9201, - "rotY": 269.999878, - "rotZ": 0.01687627, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Office", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231913, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a1bd9a" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -20.6487, - "posY": 1.6102581, - "posZ": -0.120600276, - "rotX": 359.9201, - "rotY": 269.993652, - "rotZ": 0.0169091765, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "094470", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765, - "posY": 1.68622029, - "posZ": -0.0300004017, - "rotX": 359.9201, - "rotY": 269.999817, - "rotZ": 0.0168765187, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Victorian Halls", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231908, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0699e7" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2242, - "posY": 1.69535053, - "posZ": -0.0300004743, - "rotX": 359.9201, - "rotY": 269.999817, - "rotZ": 0.0168766081, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Entry Hall", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231907, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d7fb9d" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765, - "posY": 1.6884582, - "posZ": 7.56999969, - "rotX": 359.9201, - "rotY": 269.999878, - "rotZ": 0.0168764479, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Trophy Room", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231909, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e9160a" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765, - "posY": 1.68396187, - "posZ": -7.7, - "rotX": 359.9201, - "rotY": 269.9998, - "rotZ": 0.0168766622, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Master Bedroom", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231911, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e0ffe2" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -23.6765, - "posY": 1.6133877, - "posZ": -3.83, - "rotX": 0.0168834273, - "rotY": 179.991623, - "rotZ": 0.0799373, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c43910", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -23.6765, - "posY": 1.61789, - "posZ": 11.460001, - "rotX": 0.0168833062, - "rotY": 179.9917, - "rotZ": 0.07993786, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "67acd6", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -23.6764984, - "posY": 1.61565208, - "posZ": 3.86, - "rotX": 0.0168836135, - "rotY": 179.991547, - "rotZ": 0.0799476653, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a6af88", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -27.3935, - "posY": 1.61961639, - "posZ": -0.2795003, - "rotX": 359.9201, - "rotY": 269.993469, - "rotZ": 0.0169089288, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7234af", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -23.6765, - "posY": 1.61112618, - "posZ": -11.5100021, - "rotX": 0.01688355, - "rotY": 179.991531, - "rotZ": 0.07993261, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e0e8c6", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6766, - "posY": 1.68172991, - "posZ": -15.2800007, - "rotX": 359.9201, - "rotY": 269.999634, - "rotZ": 0.0168772228, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Balcony", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231912, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1b5483" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6766, - "posY": 1.6907022, - "posZ": 15.1900005, - "rotX": 359.9201, - "rotY": 269.999817, - "rotZ": 0.0168763567, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Billiards Room", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 231910, - "SidewaysCard": false, - "CustomDeck": { - "2319": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "33990b" - } - ], - "GUID": "7388bc", - "AttachedDecals": [ - { - "Transform": { - "posX": -0.0021877822, - "posY": -0.08963572, - "posZ": -0.00288731651, - "rotX": 270.0, - "rotY": 359.869568, - "rotZ": 0.0, - "scaleX": 2.00000215, - "scaleY": 2.00000238, - "scaleZ": 2.00000262 - }, - "CustomDecal": { - "Name": "dunwich_back", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", - "Size": 7.4 - } - } - ] - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 12.249403, - "posY": 1.46325076, - "posZ": -4.01360035, - "rotX": 359.920135, - "rotY": 269.999969, - "rotZ": 0.0168732237, - "scaleX": 2.21, - "scaleY": 0.46, - "scaleZ": 2.42 - }, - "Nickname": "5: For the Greater Good", - "Description": "The Circle Undone", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/786356000879747884/323850845E637466C0DD80E0CA825D57AD6553F0/", - "NormalURL": "", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", - "LuaScriptState": "{\"ml\":{\"021478\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.002,\"z\":0.0169}},\"137468\":{\"lock\":false,\"pos\":{\"x\":-12.0499,\"y\":1.5949,\"z\":-11.6676},\"rot\":{\"x\":359.9201,\"y\":270.0216,\"z\":0.0168}},\"156d55\":{\"lock\":false,\"pos\":{\"x\":-12.05,\"y\":1.6016,\"z\":11.3474},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0169}},\"167691\":{\"lock\":false,\"pos\":{\"x\":-12.05,\"y\":1.596,\"z\":-7.9544},\"rot\":{\"x\":359.9201,\"y\":269.9857,\"z\":0.0169}},\"38a5f7\":{\"lock\":false,\"pos\":{\"x\":-11.9229,\"y\":1.4136,\"z\":1.629},\"rot\":{\"x\":0.0799,\"y\":89.9982,\"z\":359.9831}},\"58eefe\":{\"lock\":false,\"pos\":{\"x\":-20.3545,\"y\":1.6105,\"z\":2.1052},\"rot\":{\"x\":0.0776,\"y\":120.0149,\"z\":0.0253}},\"604398\":{\"lock\":false,\"pos\":{\"x\":-12.05,\"y\":1.6005,\"z\":7.5408},\"rot\":{\"x\":359.9201,\"y\":269.9899,\"z\":0.0169}},\"6276bc\":{\"lock\":false,\"pos\":{\"x\":-26.8667,\"y\":1.6206,\"z\":5.4575},\"rot\":{\"x\":359.9224,\"y\":299.9941,\"z\":359.9747}},\"698fc7\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6145,\"z\":-0.0299},\"rot\":{\"x\":0.0167,\"y\":180.1091,\"z\":0.08}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-26.8742,\"y\":1.6173,\"z\":-5.7185},\"rot\":{\"x\":0.0608,\"y\":60.0126,\"z\":359.9455}},\"abe15f\":{\"lock\":false,\"pos\":{\"x\":-11.9755,\"y\":1.4127,\"z\":-1.5887},\"rot\":{\"x\":0.0799,\"y\":89.9984,\"z\":359.9831}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.7461,\"y\":1.5823,\"z\":-15.0785},\"rot\":{\"x\":359.9197,\"y\":270.0307,\"z\":0.0168}},\"c95e06\":{\"lock\":false,\"pos\":{\"x\":-20.5114,\"y\":1.6094,\"z\":-2.2982},\"rot\":{\"x\":0.0608,\"y\":60.0074,\"z\":359.9455}},\"ccc01a\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"d0f844\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0012,\"z\":0.0803}},\"faa49f\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"ff16db\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}}}}", - "ContainedObjects": [ - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.74610066, - "posY": 1.58227813, - "posZ": -15.0785007, - "rotX": 359.919739, - "rotY": 270.029633, - "rotZ": 0.0167962946, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "For the Greater Good", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'For the Greater Good'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", - "LuaScriptState": "", - "GUID": "bbb70a" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2243, - "posY": 1.6975888, - "posZ": 7.57, - "rotX": 359.9201, - "rotY": 270.0018, - "rotZ": 0.0168736465, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Catacombs", - "Description": "Lodge. Sancturm.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312909, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "021478" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -12.0499, - "posY": 1.59486735, - "posZ": -11.6676, - "rotX": 359.9201, - "rotY": 270.0216, - "rotZ": 0.0168362539, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "Elder Key", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/ttnspKt.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "137468" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -12.0499992, - "posY": 1.60164452, - "posZ": 11.3474007, - "rotX": 359.9201, - "rotY": 269.999329, - "rotZ": 0.0168669969, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "Skull Key", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/stbBxtx.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "156d55" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -12.0500011, - "posY": 1.595961, - "posZ": -7.954401, - "rotX": 359.9201, - "rotY": 269.985535, - "rotZ": 0.0168941543, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "Tablet Key", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/1plY463.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "167691" - }, - { - "Name": "Bag", - "Transform": { - "posX": -11.9228992, - "posY": 1.41357231, - "posZ": 1.62899911, - "rotX": 0.07998585, - "rotY": 89.9981842, - "rotZ": 359.9831, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Member of the Lodge", - "Description": "Press the place button if you are a memebr of the Lodge", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.09943437, - "g": 0.5452962, - "b": 0.06554926 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", - "LuaScriptState": "{\"ml\":{\"397ce4\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"8ea4fd\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6874,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"94fadd\":{\"lock\":false,\"pos\":{\"x\":-2.6893,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0015,\"z\":0.0803}},\"a7a92e\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7664,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"bcd556\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6851,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":270.0008,\"z\":0.0169}}}}", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -17.12, - "posY": 1.67707777, - "posZ": -0.03000036, - "rotX": 359.9201, - "rotY": 270.000183, - "rotZ": 0.0168760344, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Gates", - "Description": "Lodge.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312900, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "397ce4" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6766, - "posY": 1.68736589, - "posZ": 3.86, - "rotX": 359.9201, - "rotY": 270.000183, - "rotZ": 0.0168760512, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Cellar", - "Description": "Lodge.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312904, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8ea4fd" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.68929982, - "posY": 1.65499842, - "posZ": -5.04850054, - "rotX": 0.01683298, - "rotY": 180.00148, - "rotZ": 0.08025807, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 312306, - 312305, - 312303 - ], - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -2.68927431, - "posY": 1.6552577, - "posZ": -5.04847956, - "rotX": 0.0183664449, - "rotY": 180.001816, - "rotZ": 0.0660378039, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Four Keys", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312306, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bf8c2e" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.68826079, - "posY": 1.80270958, - "posZ": -5.04899025, - "rotX": 0.339916527, - "rotY": 180.000046, - "rotZ": 0.444971323, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Obtaining the Device", - "Description": "Act 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312305, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "22dea4" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.6885314, - "posY": 1.82276726, - "posZ": -5.04851866, - "rotX": 0.0175138041, - "rotY": 179.9994, - "rotZ": 0.07856168, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Warm Welcome", - "Description": "Act 4", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312303, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0ed938" - } - ], - "GUID": "94fadd" - }, - { - "Name": "Deck", - "Transform": { - "posX": -3.92740035, - "posY": 1.76638019, - "posZ": 5.75720072, - "rotX": 359.919739, - "rotY": 269.999939, - "rotZ": 180.016815, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231812, - 312605, - 312607, - 231810, - 312600, - 231812, - 312604, - 231814, - 312605, - 231810, - 231813, - 231814, - 12120, - 312606, - 312604, - 231814, - 12120, - 12120, - 3628, - 312608, - 3625, - 231811, - 312607, - 3628, - 231810, - 312608, - 3625, - 312606, - 231813 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -18.7109814, - "posY": 1.56981552, - "posZ": -32.18543, - "rotX": 359.91922, - "rotY": 269.979279, - "rotZ": 0.0165627878, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysteries of the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231812, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0eb939" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.92286, - "posY": 1.50916827, - "posZ": 56.0439072, - "rotX": 0.0136107309, - "rotY": 270.046082, - "rotZ": 0.008057649, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Call to Order", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312605, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "38256e" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.68224, - "posY": 1.5169822, - "posZ": 55.38902, - "rotX": 0.0147958156, - "rotY": 270.073822, - "rotZ": 0.009050958, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Beneath the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312607, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "28d66c" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.6574612, - "posY": 1.71596491, - "posZ": -31.9956455, - "rotX": 359.918976, - "rotY": 269.979736, - "rotZ": 0.0163928568, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Neophyte", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231810, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8dac94" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.8018761, - "posY": 1.4921149, - "posZ": 55.66741, - "rotX": 0.01833514, - "rotY": 270.051147, - "rotZ": 0.00700765243, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Jailor", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312600, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "817b5a" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.6118813, - "posY": 1.71404207, - "posZ": -32.3841057, - "rotX": 359.91098, - "rotY": 269.979034, - "rotZ": 0.0195768736, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysteries of the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231812, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7870f6" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.59957, - "posY": 1.5069766, - "posZ": 54.19255, - "rotX": 0.02180111, - "rotY": 269.9969, - "rotZ": 8.087906, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Knight of the Outer Void", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312604, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d43918" - }, - { - "Name": "Card", - "Transform": { - "posX": -21.0152721, - "posY": 1.57281208, - "posZ": -32.7783356, - "rotX": 359.9176, - "rotY": 269.977783, - "rotZ": 0.01638736, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "81dc7a" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.581337, - "posY": 1.51521659, - "posZ": 55.96411, - "rotX": 0.0217962228, - "rotY": 270.018, - "rotZ": 0.00204580254, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Call to Order", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312605, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "024771" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.5851078, - "posY": 1.73144269, - "posZ": -32.35143, - "rotX": 359.919037, - "rotY": 269.979156, - "rotZ": 0.01716643, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Neophyte", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231810, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "408a82" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.8834572, - "posY": 1.89827907, - "posZ": -33.5683937, - "rotX": 0.110509835, - "rotY": 269.976044, - "rotZ": 0.334469885, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Evil Past", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231813, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ab69b8" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.7263336, - "posY": 1.754926, - "posZ": -33.80658, - "rotX": 0.0413828529, - "rotY": 269.9769, - "rotZ": 0.3666429, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9cb625" - }, - { - "Name": "Card", - "Transform": { - "posX": 114.991905, - "posY": 1.59937644, - "posZ": 1.31244183, - "rotX": 1.97711754, - "rotY": 270.070251, - "rotZ": 359.990356, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "61e841" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.9872169, - "posY": 1.50186431, - "posZ": 56.3765068, - "rotX": 0.0126513187, - "rotY": 270.052246, - "rotZ": 359.959534, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Expulsion", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312606, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9aa5ab" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.2589569, - "posY": 1.66137767, - "posZ": 55.45443, - "rotX": 0.0254535563, - "rotY": 270.093658, - "rotZ": 353.280518, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Knight of the Outer Void", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312604, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "57cee5" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.54692, - "posY": 1.60918021, - "posZ": -33.3808479, - "rotX": 359.9352, - "rotY": 269.982361, - "rotZ": 0.376713872, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0a13d0" - }, - { - "Name": "Card", - "Transform": { - "posX": 115.318665, - "posY": 1.5414474, - "posZ": 1.587292, - "rotX": 359.989929, - "rotY": 270.000031, - "rotZ": 359.9876, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1921c5" - }, - { - "Name": "Card", - "Transform": { - "posX": 115.309677, - "posY": 1.40331125, - "posZ": 1.5845021, - "rotX": 359.987427, - "rotY": 270.0, - "rotZ": 359.984558, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e0f4c0" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.5096054, - "posY": 1.40344727, - "posZ": 13.9449472, - "rotX": 359.987427, - "rotY": 269.999969, - "rotZ": 359.984558, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Locked Door", - "Description": "Obstacle.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3628, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9449d7" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.8122177, - "posY": 1.4996053, - "posZ": 55.3112869, - "rotX": 0.013215567, - "rotY": 270.036, - "rotZ": -0.00218945043, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mark of the Order", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312608, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "323982" - }, - { - "Name": "Card", - "Transform": { - "posX": 98.78452, - "posY": 1.40295327, - "posZ": 16.366806, - "rotX": 359.987427, - "rotY": 269.999817, - "rotZ": 359.984558, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysterious Chanting", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3625, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6f5b7b" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.7752514, - "posY": 1.71879411, - "posZ": -32.00056, - "rotX": 359.919342, - "rotY": 269.979553, - "rotZ": 0.0157596618, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Keeper of Secrets", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231811, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3761ce" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.6490021, - "posY": 1.50323951, - "posZ": 55.88405, - "rotX": 0.02039161, - "rotY": 270.062134, - "rotZ": 0.00326434616, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Beneath the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312607, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "abf303" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.57202, - "posY": 1.54880774, - "posZ": 13.6603928, - "rotX": 359.990143, - "rotY": 270.0007, - "rotZ": 359.987, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Locked Door", - "Description": "Obstacle.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3628, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1340ff" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.3490829, - "posY": 1.71755159, - "posZ": -31.918066, - "rotX": 359.918579, - "rotY": 269.9797, - "rotZ": 0.0158215724, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Neophyte", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231810, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "525275" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.8264847, - "posY": 1.35445035, - "posZ": 55.52848, - "rotX": 0.0209392067, - "rotY": 270.0056, - "rotZ": 0.01440078, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mark of the Order", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312608, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8cc16b" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.2046661, - "posY": 1.54923761, - "posZ": 15.9180088, - "rotX": 359.989929, - "rotY": 270.0, - "rotZ": 359.98764, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysterious Chanting", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3625, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "df668b" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.99259, - "posY": 1.5041101, - "posZ": 55.5351257, - "rotX": 0.00386153185, - "rotY": 270.070923, - "rotZ": 0.00110510457, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Expulsion", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312606, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b3da23" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.7343235, - "posY": 1.86165559, - "posZ": -33.3503036, - "rotX": 359.785339, - "rotY": 269.9796, - "rotZ": 0.07815084, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Evil Past", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231813, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "976fd8" - } - ], - "GUID": "a7a92e" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765, - "posY": 1.68510139, - "posZ": -3.83000088, - "rotX": 359.9201, - "rotY": 270.000763, - "rotZ": 0.0168752223, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lobby", - "Description": "Lodge.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312902, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bcd556" - } - ], - "GUID": "38a5f7" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -20.3545, - "posY": 1.6105032, - "posZ": 2.10519981, - "rotX": 0.0776257738, - "rotY": 120.015007, - "rotZ": 0.0253221821, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "58eefe", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -12.0499992, - "posY": 1.60052359, - "posZ": 7.5408, - "rotX": 359.9201, - "rotY": 269.989319, - "rotZ": 0.0168809984, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "Cultist Key", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/VzhJJaH.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "604398" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -26.8667, - "posY": 1.62057126, - "posZ": 5.4575, - "rotX": 359.922363, - "rotY": 299.994, - "rotZ": 359.9747, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6276bc", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -23.6765, - "posY": 1.6145066, - "posZ": -0.0299000181, - "rotX": 0.0167197026, - "rotY": 180.108963, - "rotZ": 0.07997131, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": false, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "698fc7", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -26.8742, - "posY": 1.61729085, - "posZ": -5.7185, - "rotX": 0.0607671142, - "rotY": 60.0127335, - "rotZ": 359.945465, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7234af", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Bag", - "Transform": { - "posX": -11.9754972, - "posY": 1.412698, - "posZ": -1.58870077, - "rotX": 0.07998205, - "rotY": 89.99784, - "rotZ": 359.9831, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Not a Member of the Lodge", - "Description": "Press the place button if you are NOT a memebr of the Lodge", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 0.0, - "b": 0.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", - "LuaScriptState": "{\"ml\":{\"1c2dfe\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":0.0169}},\"8b8b53\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0009,\"z\":0.0803}},\"8bae65\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7664,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"cdae8b\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9813,\"z\":0.0169}},\"fa6a29\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":0.0169}}}}", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -23.6765, - "posY": 1.68396187, - "posZ": -7.70000029, - "rotX": 359.9201, - "rotY": 269.996063, - "rotZ": 0.0168817546, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lobby", - "Description": "Lodge.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312903, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1c2dfe" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.6884, - "posY": 1.65499711, - "posZ": -5.0485, - "rotX": 0.0168338176, - "rotY": 180.000931, - "rotZ": 0.08025811, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 312306, - 312305, - 312304 - ], - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 29.3551464, - "posY": 1.34770918, - "posZ": 53.0110168, - "rotX": 0.01734805, - "rotY": 180.00116, - "rotZ": 359.976349, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Four Keys", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312306, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bf8c2e" - }, - { - "Name": "Card", - "Transform": { - "posX": 29.111536, - "posY": 1.49238145, - "posZ": 52.92199, - "rotX": 0.03450147, - "rotY": 179.999268, - "rotZ": 359.9507, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Obtaining the Device", - "Description": "Act 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312305, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "22dea4" - }, - { - "Name": "Card", - "Transform": { - "posX": 58.805706, - "posY": 3.362703, - "posZ": 32.9439125, - "rotX": 0.0167736318, - "rotY": 180.003647, - "rotZ": 359.9792, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Infiltrating the Lodge", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312304, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0de052" - } - ], - "GUID": "8b8b53" - }, - { - "Name": "Deck", - "Transform": { - "posX": -3.92770028, - "posY": 1.76638055, - "posZ": 5.75720072, - "rotX": 359.919739, - "rotY": 270.0, - "rotZ": 180.016815, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 3628, - 312606, - 312608, - 312605, - 312605, - 231814, - 312607, - 12120, - 312608, - 3625, - 3623, - 3625, - 312603, - 312601, - 312603, - 231812, - 231814, - 231814, - 3623, - 3623, - 231813, - 3628, - 3624, - 231812, - 312607, - 12120, - 231813, - 12120, - 312606 - ], - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 99.57202, - "posY": 1.54880774, - "posZ": 13.6603928, - "rotX": 359.990143, - "rotY": 270.0007, - "rotZ": 359.987, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Locked Door", - "Description": "Obstacle.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3628, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1340ff" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.9872169, - "posY": 1.50186431, - "posZ": 56.3765068, - "rotX": 0.0126513187, - "rotY": 270.052246, - "rotZ": 359.959534, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Expulsion", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312606, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9aa5ab" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.8264847, - "posY": 1.35445035, - "posZ": 55.52848, - "rotX": 0.0209392067, - "rotY": 270.0056, - "rotZ": 0.01440078, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mark of the Order", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312608, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8cc16b" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.581337, - "posY": 1.51521659, - "posZ": 55.96411, - "rotX": 0.0217962228, - "rotY": 270.018, - "rotZ": 0.00204580254, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Call to Order", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312605, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "024771" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.92286, - "posY": 1.50916827, - "posZ": 56.0439072, - "rotX": 0.0136107309, - "rotY": 270.046082, - "rotZ": 0.008057649, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Call to Order", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312605, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "38256e" - }, - { - "Name": "Card", - "Transform": { - "posX": -21.0152721, - "posY": 1.57281208, - "posZ": -32.7783356, - "rotX": 359.9176, - "rotY": 269.977783, - "rotZ": 0.01638736, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "81dc7a" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.68224, - "posY": 1.5169822, - "posZ": 55.38902, - "rotX": 0.0147958156, - "rotY": 270.073822, - "rotZ": 0.009050958, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Beneath the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312607, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "28d66c" - }, - { - "Name": "Card", - "Transform": { - "posX": 115.318665, - "posY": 1.5414474, - "posZ": 1.587292, - "rotX": 359.989929, - "rotY": 270.000031, - "rotZ": 359.9876, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1921c5" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.8122177, - "posY": 1.4996053, - "posZ": 55.3112869, - "rotX": 0.013215567, - "rotY": 270.036, - "rotZ": -0.00218945043, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mark of the Order", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312608, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "323982" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.2046661, - "posY": 1.54923761, - "posZ": 15.9180088, - "rotX": 359.989929, - "rotY": 270.0, - "rotZ": 359.98764, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysterious Chanting", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3625, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "df668b" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.0756, - "posY": 1.55269325, - "posZ": 16.03813, - "rotX": 359.989929, - "rotY": 270.0, - "rotZ": 359.9876, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Acolyte", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3623, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4072d7" - }, - { - "Name": "Card", - "Transform": { - "posX": 98.78452, - "posY": 1.40295327, - "posZ": 16.366806, - "rotX": 359.987427, - "rotY": 269.999817, - "rotZ": 359.984558, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysterious Chanting", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3625, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6f5b7b" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.4807549, - "posY": 1.51138783, - "posZ": 55.3559532, - "rotX": 0.007093775, - "rotY": 270.07132, - "rotZ": 0.00157490221, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Knight of the Inner Circle", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312603, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "51bd26" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.67595, - "posY": 1.50168812, - "posZ": 55.0495148, - "rotX": 0.009487833, - "rotY": 270.060852, - "rotZ": 0.00471286848, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cell Keeper", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312601, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d47a01" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.3978958, - "posY": 1.52107108, - "posZ": 55.82321, - "rotX": 0.0117413532, - "rotY": 270.062164, - "rotZ": 0.00767201, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Knight of the Inner Circle", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312603, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "499347" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.6118813, - "posY": 1.71404207, - "posZ": -32.3841057, - "rotX": 359.91098, - "rotY": 269.979034, - "rotZ": 0.0195768736, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysteries of the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231812, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7870f6" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.54692, - "posY": 1.60918021, - "posZ": -33.3808479, - "rotX": 359.9352, - "rotY": 269.982361, - "rotZ": 0.376713872, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0a13d0" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.7263336, - "posY": 1.754926, - "posZ": -33.80658, - "rotX": 0.0413828529, - "rotY": 269.9769, - "rotZ": 0.3666429, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9cb625" - }, - { - "Name": "Card", - "Transform": { - "posX": 98.97962, - "posY": 1.55247211, - "posZ": 16.3414173, - "rotX": 359.99057, - "rotY": 269.9967, - "rotZ": 359.984833, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Acolyte", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3623, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c70e63" - }, - { - "Name": "Card", - "Transform": { - "posX": 98.93172, - "posY": 1.556378, - "posZ": 15.9665985, - "rotX": 359.989929, - "rotY": 269.999969, - "rotZ": 359.98764, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Acolyte", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3623, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c70e63" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.8834572, - "posY": 1.89827907, - "posZ": -33.5683937, - "rotX": 0.110509835, - "rotY": 269.976044, - "rotZ": 0.334469885, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Evil Past", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231813, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ab69b8" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.5096054, - "posY": 1.40344727, - "posZ": 13.9449472, - "rotX": 359.987427, - "rotY": 269.999969, - "rotZ": 359.984558, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Locked Door", - "Description": "Obstacle.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3628, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9449d7" - }, - { - "Name": "Card", - "Transform": { - "posX": 98.45666, - "posY": 1.55439174, - "posZ": 16.9464512, - "rotX": 1.20685, - "rotY": 269.9761, - "rotZ": 357.846649, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wizard of the Order", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3624, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "159f90" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.7109814, - "posY": 1.56981552, - "posZ": -32.18543, - "rotX": 359.91922, - "rotY": 269.979279, - "rotZ": 0.0165627878, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysteries of the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231812, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0eb939" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.6490021, - "posY": 1.50323951, - "posZ": 55.88405, - "rotX": 0.02039161, - "rotY": 270.062134, - "rotZ": 0.00326434616, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Beneath the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312607, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "abf303" - }, - { - "Name": "Card", - "Transform": { - "posX": 114.991905, - "posY": 1.59937644, - "posZ": 1.31244183, - "rotX": 1.97711754, - "rotY": 270.070251, - "rotZ": 359.990356, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "61e841" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.7343235, - "posY": 1.86165559, - "posZ": -33.3503036, - "rotX": 359.785339, - "rotY": 269.9796, - "rotZ": 0.07815084, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Evil Past", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231813, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "976fd8" - }, - { - "Name": "Card", - "Transform": { - "posX": 115.309677, - "posY": 1.40331125, - "posZ": 1.5845021, - "rotX": 359.987427, - "rotY": 270.0, - "rotZ": 359.984558, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12120, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e0f4c0" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.99259, - "posY": 1.5041101, - "posZ": 55.5351257, - "rotX": 0.00386153185, - "rotY": 270.070923, - "rotZ": 0.00110510457, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Expulsion", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312606, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b3da23" - } - ], - "GUID": "8bae65" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6766, - "posY": 1.68845844, - "posZ": 7.569999, - "rotX": 359.9201, - "rotY": 269.981262, - "rotZ": 0.0169023387, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Cellar", - "Description": "Lodge.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312905, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "cdae8b" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.1196938, - "posY": 1.67707729, - "posZ": -0.0300435685, - "rotX": 359.9201, - "rotY": 269.999969, - "rotZ": 0.0168758258, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Gates", - "Description": "Lodge.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312901, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fa6a29" - } - ], - "GUID": "abe15f" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.74609971, - "posY": 1.582278, - "posZ": -15.0785027, - "rotX": 359.919739, - "rotY": 270.0307, - "rotZ": 0.01679451, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "XXX", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'For the Greater Good'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", - "LuaScriptState": "", - "GUID": "bbb70a" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -20.5114, - "posY": 1.60942543, - "posZ": -2.2982, - "rotX": 0.0607621633, - "rotY": 60.00757, - "rotZ": 359.945465, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c95e06", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2243, - "posY": 1.69309235, - "posZ": -7.70000124, - "rotX": 359.9201, - "rotY": 270.000427, - "rotZ": 0.0168756675, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lounge", - "Description": "Lodge.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312906, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ccc01a" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.7246, - "posY": 1.66397727, - "posZ": 0.3733003, - "rotX": 0.0168331563, - "rotY": 180.001236, - "rotZ": 0.08025831, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agenda deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 312302, - 312301 - ], - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 45.7921066, - "posY": 1.35522616, - "posZ": 57.9124527, - "rotX": 0.00886662, - "rotY": 180.016556, - "rotZ": 359.978271, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ends and Means", - "Description": "Agenda 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312302, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "91d5c3" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.5433846, - "posY": 1.50018764, - "posZ": 58.1528854, - "rotX": 359.983, - "rotY": 180.051559, - "rotZ": 359.9546, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "THE HIEROPHANT · V", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312301, - "SidewaysCard": true, - "CustomDeck": { - "3123": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "25ab0b" - } - ], - "GUID": "d0f844" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.95580029, - "posY": 1.65564787, - "posZ": -10.4412012, - "rotX": 359.919739, - "rotY": 269.999969, - "rotZ": 0.0168410372, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "For the Greater Good", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312400, - "SidewaysCard": false, - "CustomDeck": { - "3124": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "faa49f" - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 1.6960007, - "posY": 1.55831718, - "posZ": 14.2787027, - "rotX": 359.955139, - "rotY": 224.998, - "rotZ": 0.06867098, - "scaleX": 2.0, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "Nickname": "Set-aside", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.02148666, - "g": 0.00100758043, - "b": 0.02148666 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", - "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 1, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 44.1109619, - "posY": 3.41935182, - "posZ": 76.14493, - "rotX": 0.0209766664, - "rotY": 270.0234, - "rotZ": 0.01684997, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Summoned Beast", - "Description": "Monster. Silver Twilight. Elite.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312602, - "SidewaysCard": false, - "CustomDeck": { - "3126": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0f6a54" - }, - { - "Name": "Card", - "Transform": { - "posX": 44.60985, - "posY": 3.43086624, - "posZ": 76.83246, - "rotX": 0.02080699, - "rotY": 270.0234, - "rotZ": 0.016770862, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nathan Wick", - "Description": "Master of Indoctrination", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312407, - "SidewaysCard": false, - "CustomDeck": { - "3124": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7e2ff5" - }, - { - "Name": "Card", - "Transform": { - "posX": 45.06623, - "posY": 3.43073, - "posZ": 75.7925339, - "rotX": 0.0207968019, - "rotY": 269.999878, - "rotZ": 0.01679017, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "August Lindquist", - "Description": "Elegant and Elusive", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312509, - "SidewaysCard": false, - "CustomDeck": { - "3125": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d6fa34" - }, - { - "Name": "Card", - "Transform": { - "posX": 44.3272438, - "posY": 3.41513848, - "posZ": 76.60902, - "rotX": 0.0209716149, - "rotY": 269.999939, - "rotZ": 0.0168484487, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Puzzle Box", - "Description": "Mysterious Device", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312510, - "SidewaysCard": false, - "CustomDeck": { - "3125": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e79173" - }, - { - "Name": "Deck", - "Transform": { - "posX": 1.69642651, - "posY": 3.72650981, - "posZ": 14.2788391, - "rotX": 359.948151, - "rotY": 224.998062, - "rotZ": 0.0583182424, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Locations", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 312912, - 312911, - 312910, - 312907, - 312908 - ], - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -36.77313, - "posY": 1.70666313, - "posZ": 7.569972, - "rotX": 359.920624, - "rotY": 269.999847, - "rotZ": 0.0130288182, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Inner Sanctum", - "Description": "Lodge. Sanctum.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312912, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d76c9f" - }, - { - "Name": "Card", - "Transform": { - "posX": -36.7731857, - "posY": 1.85651457, - "posZ": 7.570001, - "rotX": 359.910828, - "rotY": 269.9998, - "rotZ": 0.0123853553, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Sanctum Doorway", - "Description": "Lodge. Sanctum.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312911, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4da6c3" - }, - { - "Name": "Card", - "Transform": { - "posX": -36.7732048, - "posY": 1.8740865, - "posZ": 7.56998873, - "rotX": 359.917938, - "rotY": 269.999756, - "rotZ": 0.0161033664, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Sanctum Doorway", - "Description": "Lodge. Sanctum.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 312910, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "112a15" - }, - { - "Name": "Card", - "Transform": { - "posX": -36.77333, - "posY": 1.6999402, - "posZ": -15.2800035, - "rotX": 359.920532, - "rotY": 269.997162, - "rotZ": 0.0134736821, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Vault", - "Description": "Lodge.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312907, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "dcf02a" - }, - { - "Name": "Card", - "Transform": { - "posX": -36.7733269, - "posY": 1.84977758, - "posZ": -15.2799911, - "rotX": 359.9311, - "rotY": 269.9995, - "rotZ": 0.00297404267, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Library", - "Description": "Lodge.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 312908, - "SidewaysCard": false, - "CustomDeck": { - "3129": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5e3b52" - } - ], - "GUID": "eba741" - } - ], - "PhysicsMaterial": { - "StaticFriction": 0.6, - "DynamicFriction": 0.6, - "Bounciness": 0.0, - "FrictionCombine": 0, - "BounceCombine": 0 - }, - "Rigidbody": { - "Mass": 1.375, - "Drag": 5.0, - "AngularDrag": 5.0, - "UseGravity": true - }, - "GUID": "ff16db" - } - ], - "GUID": "a61b48", - "AttachedDecals": [ - { - "Transform": { - "posX": -0.0021877822, - "posY": -0.08963572, - "posZ": -0.00288731651, - "rotX": 270.0, - "rotY": 359.869568, - "rotZ": 0.0, - "scaleX": 2.00000215, - "scaleY": 2.00000238, - "scaleZ": 2.00000262 - }, - "CustomDecal": { - "Name": "dunwich_back", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", - "Size": 7.4 - } - } - ] - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 12.2505035, - "posY": 1.45853758, - "posZ": -20.0137081, - "rotX": 359.920135, - "rotY": 270.000061, - "rotZ": 0.016873965, - "scaleX": 2.21, - "scaleY": 0.46, - "scaleZ": 2.42 - }, - "Nickname": "7: In the Clutches of Chaos", - "Description": "The Circle Undone", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/784110538847461760/43BADDB501C7E037F3FAADABFDCD34E3C9D47B89/", - "NormalURL": "", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CustomShader": { - "SpecularColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "SpecularIntensity": 0.0, - "SpecularSharpness": 2.0, - "FresnelStrength": 0.0 - }, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", - "LuaScriptState": "{\"ml\":{\"12965b\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6225,\"z\":-3.8301},\"rot\":{\"x\":0.0169,\"y\":179.9985,\"z\":0.0799}},\"1594ed\":{\"lock\":false,\"pos\":{\"x\":-27.2924,\"y\":1.618,\"z\":-5.2924},\"rot\":{\"x\":0.0445,\"y\":44.9547,\"z\":359.9312}},\"1a0ad2\":{\"lock\":false,\"pos\":{\"x\":-38.221,\"y\":1.7548,\"z\":-0.0155},\"rot\":{\"x\":359.9213,\"y\":270.0445,\"z\":0.0163}},\"3d2a8a\":{\"lock\":false,\"pos\":{\"x\":-36.773,\"y\":1.7045,\"z\":-0.0302},\"rot\":{\"x\":359.9201,\"y\":270.0082,\"z\":0.0165}},\"441006\":{\"lock\":false,\"pos\":{\"x\":-31.6737,\"y\":1.748,\"z\":7.557},\"rot\":{\"x\":359.9212,\"y\":270.0195,\"z\":0.0163}},\"6e8e5f\":{\"lock\":false,\"pos\":{\"x\":-27.3701,\"y\":1.6203,\"z\":2.2377},\"rot\":{\"x\":0.0443,\"y\":44.8404,\"z\":359.932}},\"6ed2ae\":{\"lock\":false,\"pos\":{\"x\":-31.87,\"y\":1.8355,\"z\":-7.634},\"rot\":{\"x\":5.0677,\"y\":269.9624,\"z\":-0.0006}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.4917,\"y\":1.6282,\"z\":-0.0792},\"rot\":{\"x\":359.9201,\"y\":270.0307,\"z\":0.0169}},\"863a02\":{\"lock\":false,\"pos\":{\"x\":-3.9557,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"90d5ec\":{\"lock\":false,\"pos\":{\"x\":-27.3204,\"y\":1.6213,\"z\":5.6251},\"rot\":{\"x\":0.0685,\"y\":135.004,\"z\":0.045}},\"92c6fc\":{\"lock\":false,\"pos\":{\"x\":1.6714,\"y\":1.3937,\"z\":-1.2871},\"rot\":{\"x\":0.0803,\"y\":89.999,\"z\":359.9831}},\"92ee68\":{\"lock\":false,\"pos\":{\"x\":-25.3849,\"y\":1.8294,\"z\":-3.8504},\"rot\":{\"x\":1.457,\"y\":270.3023,\"z\":0.0214}},\"9484e9\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":270.0044,\"z\":0.0165}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6961,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":224.9937,\"z\":0.0687}},\"b568b8\":{\"lock\":false,\"pos\":{\"x\":-25.4775,\"y\":1.8297,\"z\":3.8643},\"rot\":{\"x\":1.3797,\"y\":270.1199,\"z\":0.0177}},\"bed0da\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6874,\"z\":3.8606},\"rot\":{\"x\":359.9209,\"y\":270.0092,\"z\":0.0176}},\"c0fa29\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9989,\"z\":0.0799}},\"c898a0\":{\"lock\":false,\"pos\":{\"x\":-30.2226,\"y\":1.6954,\"z\":-0.0309},\"rot\":{\"x\":359.9212,\"y\":270.0031,\"z\":0.0202}},\"cbaad5\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.627,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":179.9988,\"z\":0.0799}},\"cfb2b2\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9987,\"z\":0.0799}},\"d14543\":{\"lock\":false,\"pos\":{\"x\":1.6333,\"y\":1.3946,\"z\":1.5694},\"rot\":{\"x\":0.0803,\"y\":89.9989,\"z\":359.9831}},\"db4b20\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6851,\"z\":-3.83},\"rot\":{\"x\":359.9208,\"y\":270.0724,\"z\":0.0179}},\"df634c\":{\"lock\":false,\"pos\":{\"x\":-27.337,\"y\":1.6189,\"z\":-2.4198},\"rot\":{\"x\":0.0684,\"y\":134.9534,\"z\":0.0462}},\"e0709b\":{\"lock\":false,\"pos\":{\"x\":-3.4161,\"y\":1.5819,\"z\":-14.8962},\"rot\":{\"x\":359.9197,\"y\":270.0003,\"z\":0.0168}},\"e7f5fa\":{\"lock\":false,\"pos\":{\"x\":-31.7585,\"y\":1.8433,\"z\":-0.1191},\"rot\":{\"x\":359.9598,\"y\":270.0693,\"z\":0.0159}},\"fc9d97\":{\"lock\":false,\"pos\":{\"x\":-30.2435,\"y\":1.6931,\"z\":-7.6975},\"rot\":{\"x\":359.9205,\"y\":269.9935,\"z\":0.0176}}}}", - "ContainedObjects": [ - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2241, - "posY": 1.62251782, - "posZ": -3.8301, - "rotX": 0.0168739334, - "rotY": 179.998489, - "rotZ": 0.07993958, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "12965b", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -27.2924, - "posY": 1.6179986, - "posZ": -5.29240036, - "rotX": 0.0445330068, - "rotY": 44.95462, - "rotZ": 359.931335, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1594ed", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -38.2208824, - "posY": 1.75478971, - "posZ": -0.01541163, - "rotX": 359.9213, - "rotY": 270.0476, - "rotZ": 0.0162771754, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "South Church", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369530, - "SidewaysCard": false, - "CustomDeck": { - "3695": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1a0ad2" - }, - { - "Name": "Card", - "Transform": { - "posX": -36.77299, - "posY": 1.70447719, - "posZ": -0.0301962066, - "rotX": 359.920135, - "rotY": 270.008362, - "rotZ": 0.0165151078, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "South Church", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369531, - "SidewaysCard": false, - "CustomDeck": { - "3695": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3d2a8a" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.6735935, - "posY": 1.74796259, - "posZ": 7.55707, - "rotX": 359.921234, - "rotY": 270.022827, - "rotZ": 0.0163120236, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Uptown", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369528, - "SidewaysCard": false, - "CustomDeck": { - "3695": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "441006" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -27.3700981, - "posY": 1.620329, - "posZ": 2.23769855, - "rotX": 0.044294633, - "rotY": 44.8404465, - "rotZ": 359.932526, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6e8e5f", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -31.8700027, - "posY": 1.835474, - "posZ": -7.6340003, - "rotX": 5.067676, - "rotY": 269.962341, - "rotZ": -0.0005845586, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "French Hill", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369523, - "SidewaysCard": false, - "CustomDeck": { - "3695": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6ed2ae" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -33.4917, - "posY": 1.62817883, - "posZ": -0.07920027, - "rotX": 359.9201, - "rotY": 270.030731, - "rotZ": 0.0168572348, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7234af", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -3.95582318, - "posY": 1.65564787, - "posZ": -10.4414949, - "rotX": 359.919739, - "rotY": 269.999939, - "rotZ": 0.01684155, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "In the Clutches of Chaos", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 368723, - "SidewaysCard": false, - "CustomDeck": { - "3687": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "863a02" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -27.3204041, - "posY": 1.62125432, - "posZ": 5.625108, - "rotX": 0.06824307, - "rotY": 135.0041, - "rotZ": 0.0442596339, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "90d5ec", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Bag", - "Transform": { - "posX": 1.67140079, - "posY": 1.39370847, - "posZ": -1.28710115, - "rotX": 0.0803438, - "rotY": 89.99897, - "rotZ": 359.983124, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Carl Sanford possesses the secrets of the universe", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", - "LuaScriptState": "{\"ml\":{\"5f4d8a\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6998,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"69a12e\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0052,\"z\":0.0803}},\"79a987\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6909,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"7d1536\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.809,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"cb41b0\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}}}}", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -30.2242012, - "posY": 1.69983232, - "posZ": 15.19, - "rotX": 359.9201, - "rotY": 269.999817, - "rotZ": 0.0168773364, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hangman's Hill", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369736, - "SidewaysCard": false, - "CustomDeck": { - "3697": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5f4d8a" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.7248, - "posY": 1.65710139, - "posZ": 0.373300433, - "rotX": 0.0168278553, - "rotY": 180.0052, - "rotZ": 0.0802592, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "THE CHARIOT · VII", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368824, - "SidewaysCard": true, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "69a12e" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2244, - "posY": 1.69086051, - "posZ": -15.2800007, - "rotX": 359.9201, - "rotY": 269.999725, - "rotZ": 0.01687673, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Silver Twilight Lodge", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369937, - "SidewaysCard": false, - "CustomDeck": { - "3699": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "79a987" - }, - { - "Name": "Deck", - "Transform": { - "posX": -3.9274, - "posY": 1.80901563, - "posZ": 5.757101, - "rotX": 359.919739, - "rotY": 270.000031, - "rotZ": 180.016815, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231810, - 369122, - 369124, - 231812, - 369127, - 3626, - 12119, - 369122, - 3605, - 231811, - 12117, - 3604, - 369123, - 3604, - 369128, - 369124, - 231804, - 12119, - 369127, - 12117, - 369122, - 3604, - 12118, - 12118, - 3627, - 12117, - 369123, - 231810, - 231804, - 369128, - 231804, - 3605, - 369128, - 3627, - 231812, - 3626, - 231810 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -18.3490829, - "posY": 1.71755159, - "posZ": -31.918066, - "rotX": 359.918579, - "rotY": 269.9797, - "rotZ": 0.0158215724, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Neophyte", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231810, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "525275" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.72482347, - "posY": 1.52477443, - "posZ": 82.89518, - "rotX": 0.0210533645, - "rotY": 269.9688, - "rotZ": 0.01641221, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror Unleashed", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369122, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a71412" - }, - { - "Name": "Card", - "Transform": { - "posX": 3.80569863, - "posY": 1.49195409, - "posZ": 81.89541, - "rotX": 0.0132571086, - "rotY": 269.99707, - "rotZ": 0.002305488, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Secrets of the Beyond", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369124, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "af86ae" - }, - { - "Name": "Card", - "Transform": { - "posX": -8.533302, - "posY": 1.49134493, - "posZ": 65.68225, - "rotX": 0.0187280849, - "rotY": 269.9965, - "rotZ": 180.163269, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysteries of the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231812, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0eb939" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.228713, - "posY": 1.49763262, - "posZ": 82.86434, - "rotX": 0.0173947681, - "rotY": 269.983215, - "rotZ": 0.007203724, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Primordial Gateway", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369127, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a47dba" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.70005, - "posY": 1.5523262, - "posZ": 13.9823551, - "rotX": 359.987244, - "rotY": 269.999542, - "rotZ": 359.9839, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hunting Nightgaunt", - "Description": "Monster. Nightgaunt.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3626, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b124ef" - }, - { - "Name": "Card", - "Transform": { - "posX": 116.206024, - "posY": 1.54851818, - "posZ": 1.69081855, - "rotX": 0.453712761, - "rotY": 270.0, - "rotZ": 0.605071843, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dissonant Voices", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12119, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "260768" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.12781048, - "posY": 1.49762809, - "posZ": 82.52125, - "rotX": 0.0189197622, - "rotY": 269.9839, - "rotZ": 0.0179458261, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror Unleashed", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369122, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a71412" - }, - { - "Name": "Card", - "Transform": { - "posX": 33.8191452, - "posY": 1.66368461, - "posZ": 74.8914261, - "rotX": 0.02363379, - "rotY": 269.998962, - "rotZ": 0.25173533, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "False Lead", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3605, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "de1cd2" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.7752514, - "posY": 1.71879411, - "posZ": -32.00056, - "rotX": 359.919342, - "rotY": 269.979553, - "rotZ": 0.0157596618, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Keeper of Secrets", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231811, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3761ce" - }, - { - "Name": "Card", - "Transform": { - "posX": 116.843185, - "posY": 1.54545975, - "posZ": 1.48686087, - "rotX": 359.989929, - "rotY": 270.0, - "rotZ": 359.98764, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Rotting Remains", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12117, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "aa3d47" - }, - { - "Name": "Card", - "Transform": { - "posX": 33.34565, - "posY": 1.53916109, - "posZ": 74.98459, - "rotX": 0.2795983, - "rotY": 269.982117, - "rotZ": 0.2330421, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hunting Shadow", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3604, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "46af71" - }, - { - "Name": "Card", - "Transform": { - "posX": 4.019021, - "posY": 1.4959923, - "posZ": 82.18874, - "rotX": 0.0184443258, - "rotY": 269.999634, - "rotZ": 0.0118184, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Enforcer", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369123, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "be9d6c" - }, - { - "Name": "Card", - "Transform": { - "posX": 33.3559, - "posY": 1.39295888, - "posZ": 75.464, - "rotX": 0.179927453, - "rotY": 269.9928, - "rotZ": 0.191170692, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hunting Shadow", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3604, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e98498" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.47260237, - "posY": 1.347969, - "posZ": 82.624176, - "rotX": 0.0209928546, - "rotY": 269.9671, - "rotZ": 0.0178020764, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Chaos Manifest", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369128, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a7dd13" - }, - { - "Name": "Card", - "Transform": { - "posX": 3.84631872, - "posY": 1.34687316, - "posZ": 81.70437, - "rotX": 0.0211930815, - "rotY": 270.002472, - "rotZ": 0.0133430995, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Secrets of the Beyond", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369124, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3c1b20" - }, - { - "Name": "Card", - "Transform": { - "posX": 15.1468468, - "posY": 1.34905994, - "posZ": 75.26861, - "rotX": 0.0217909943, - "rotY": 269.979736, - "rotZ": 0.01311177, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Daemonic Piping", - "Description": "Power. Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231804, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f79968" - }, - { - "Name": "Card", - "Transform": { - "posX": 116.318008, - "posY": 1.40297079, - "posZ": 2.02551055, - "rotX": 359.987427, - "rotY": 270.046936, - "rotZ": 359.984528, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dissonant Voices", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12119, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f1a34d" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.141344, - "posY": 1.49498117, - "posZ": 82.66116, - "rotX": 0.01744227, - "rotY": 269.9856, - "rotZ": 0.0347701423, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Primordial Gateway", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369127, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a47dba" - }, - { - "Name": "Card", - "Transform": { - "posX": 116.950279, - "posY": 1.5376091, - "posZ": 1.28928447, - "rotX": 358.786469, - "rotY": 270.025024, - "rotZ": 2.07151151, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Rotting Remains", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12117, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "da8001" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.1404233, - "posY": 1.50271082, - "posZ": 82.59327, - "rotX": 0.0194760654, - "rotY": 269.983032, - "rotZ": 0.0101950867, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror Unleashed", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369122, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d50053" - }, - { - "Name": "Card", - "Transform": { - "posX": 33.17109, - "posY": 1.50134242, - "posZ": 71.44922, - "rotX": 0.0258894432, - "rotY": 269.999176, - "rotZ": 0.0177205615, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hunting Shadow", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3604, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "caabe8" - }, - { - "Name": "Card", - "Transform": { - "posX": 116.363129, - "posY": 1.55607748, - "posZ": 1.91277838, - "rotX": 359.809937, - "rotY": 270.046265, - "rotZ": 0.250917822, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Frozen in Fear", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12118, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c40f57" - }, - { - "Name": "Card", - "Transform": { - "posX": 116.299973, - "posY": 1.569287, - "posZ": 1.46156657, - "rotX": 359.989929, - "rotY": 270.000061, - "rotZ": 359.987671, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Frozen in Fear", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12118, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "27c05d" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.46953, - "posY": 1.54276168, - "posZ": 13.6987543, - "rotX": 359.9927, - "rotY": 270.0251, - "rotZ": 359.991547, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "On Wings of Darkness", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3627, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b06ff1" - }, - { - "Name": "Card", - "Transform": { - "posX": 117.053131, - "posY": 1.56189775, - "posZ": 1.68414187, - "rotX": 359.987427, - "rotY": 270.047, - "rotZ": 359.984528, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Rotting Remains", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 12117, - "SidewaysCard": false, - "CustomDeck": { - "121": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "18e09c" - }, - { - "Name": "Card", - "Transform": { - "posX": 4.061287, - "posY": 1.50965226, - "posZ": 82.3038254, - "rotX": 0.0210610852, - "rotY": 269.998535, - "rotZ": 0.0123841716, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Enforcer", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369123, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "be9d6c" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.5851078, - "posY": 1.73144269, - "posZ": -32.35143, - "rotX": 359.919037, - "rotY": 269.979156, - "rotZ": 0.01716643, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Neophyte", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231810, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "408a82" - }, - { - "Name": "Card", - "Transform": { - "posX": 14.9602261, - "posY": 1.52727246, - "posZ": 75.3926544, - "rotX": 0.0217449367, - "rotY": 269.97583, - "rotZ": 0.0155824684, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Daemonic Piping", - "Description": "Power. Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231804, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "397fce" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.403446, - "posY": 1.49307215, - "posZ": 82.67308, - "rotX": 0.005214898, - "rotY": 269.993042, - "rotZ": 0.03216257, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Chaos Manifest", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369128, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ccd9f0" - }, - { - "Name": "Card", - "Transform": { - "posX": 14.9480782, - "posY": 1.4942292, - "posZ": 74.93108, - "rotX": 0.02213699, - "rotY": 269.980438, - "rotZ": 0.0018852806, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Daemonic Piping", - "Description": "Power. Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231804, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f84e0e" - }, - { - "Name": "Card", - "Transform": { - "posX": 33.1424751, - "posY": 1.68199444, - "posZ": 75.44426, - "rotX": 0.365903, - "rotY": 269.976563, - "rotZ": 0.08653687, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "False Lead", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3605, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b6793f" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.198229, - "posY": 1.51081049, - "posZ": 82.86387, - "rotX": 0.0176542532, - "rotY": 269.983124, - "rotZ": 0.009990074, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Chaos Manifest", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369128, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a7dd13" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.36151, - "posY": 1.40362072, - "posZ": 13.422389, - "rotX": 359.987427, - "rotY": 270.0, - "rotZ": 359.984558, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "On Wings of Darkness", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3627, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "dd287a" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.6118813, - "posY": 1.71404207, - "posZ": -32.3841057, - "rotX": 359.91098, - "rotY": 269.979034, - "rotZ": 0.0195768736, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysteries of the Lodge", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231812, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7870f6" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.47138, - "posY": 1.56615245, - "posZ": 13.5548248, - "rotX": 359.9876, - "rotY": 270.0174, - "rotZ": 359.984955, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hunting Nightgaunt", - "Description": "Monster. Nightgaunt.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3626, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "476433" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.6574612, - "posY": 1.71596491, - "posZ": -31.9956455, - "rotX": 359.918976, - "rotY": 269.979736, - "rotZ": 0.0163928568, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lodge Neophyte", - "Description": "Humanoid. Cultist. Silver Twilight.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231810, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8dac94" - } - ], - "GUID": "7d1536" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.6884, - "posY": 1.66233325, - "posZ": -5.0485, - "rotX": 0.0168352909, - "rotY": 179.9999, - "rotZ": 0.08025805, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 368828, - 368827 - ], - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 14.0107994, - "posY": 1.49662864, - "posZ": 85.26572, - "rotX": 0.008819537, - "rotY": 180.000031, - "rotZ": 359.9708, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "New World Order", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368828, - "SidewaysCard": true, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "66378c" - }, - { - "Name": "Card", - "Transform": { - "posX": 14.1259813, - "posY": 1.3516506, - "posZ": 85.37142, - "rotX": 0.0173827875, - "rotY": 179.999954, - "rotZ": 359.9757, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dark Knowledge (v.II)", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368827, - "SidewaysCard": true, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3a0ad6" - } - ], - "GUID": "cb41b0" - } - ], - "GUID": "92c6fc" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.3826427, - "posY": 1.82944071, - "posZ": -3.85111547, - "rotX": 1.45864594, - "rotY": 270.365082, - "rotZ": 0.0220303889, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Rivertown", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369524, - "SidewaysCard": false, - "CustomDeck": { - "3695": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "92ee68" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2241917, - "posY": 1.69758308, - "posZ": 7.56990576, - "rotX": 359.920135, - "rotY": 270.004639, - "rotZ": 0.0165102817, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Uptown", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369529, - "SidewaysCard": false, - "CustomDeck": { - "3695": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9484e9" - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 1.696101, - "posY": 1.558317, - "posZ": 14.2789011, - "rotX": 359.955139, - "rotY": 224.993668, - "rotZ": 0.06867575, - "scaleX": 2.0, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "Nickname": "Set-aside", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.02148666, - "g": 0.00100758043, - "b": 0.02148666 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", - "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 1, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 18.18973, - "posY": 3.40622544, - "posZ": 78.5509338, - "rotX": 0.0211115722, - "rotY": 269.980316, - "rotZ": 0.0167772435, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Piper of Azatoth", - "Description": "Monster. Elite.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231803, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "092d86" - } - ], - "PhysicsMaterial": { - "StaticFriction": 0.6, - "DynamicFriction": 0.6, - "Bounciness": 0.0, - "FrictionCombine": 0, - "BounceCombine": 0 - }, - "Rigidbody": { - "Mass": 1.375, - "Drag": 5.0, - "AngularDrag": 5.0, - "UseGravity": true - }, - "GUID": "a45247" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.4738064, - "posY": 1.82974207, - "posZ": 3.86438465, - "rotX": 1.3824929, - "rotY": 270.0899, - "rotZ": 0.01733329, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Merchant District", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369533, - "SidewaysCard": false, - "CustomDeck": { - "3695": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b568b8" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.67639, - "posY": 1.68739045, - "posZ": 3.86057782, - "rotX": 359.920532, - "rotY": 270.009247, - "rotZ": 0.0173808634, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Merchant District", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369532, - "SidewaysCard": false, - "CustomDeck": { - "3695": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bed0da" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2242, - "posY": 1.62025654, - "posZ": -11.5100012, - "rotX": 0.0168733355, - "rotY": 179.998886, - "rotZ": 0.07993952, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c0fa29", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2226, - "posY": 1.6954428, - "posZ": -0.0308999866, - "rotX": 359.9212, - "rotY": 270.003174, - "rotZ": 0.0202380456, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Southside", - "Description": "Arkham. Central.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369527, - "SidewaysCard": false, - "CustomDeck": { - "3695": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c898a0" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2242, - "posY": 1.62702048, - "posZ": 11.4600019, - "rotX": 0.0168734342, - "rotY": 179.998718, - "rotZ": 0.0799384639, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "cbaad5", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2243, - "posY": 1.62478256, - "posZ": 3.86000061, - "rotX": 0.0168736167, - "rotY": 179.998688, - "rotZ": 0.0799359456, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "cfb2b2", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Bag", - "Transform": { - "posX": 1.6333009, - "posY": 1.39460206, - "posZ": 1.56939888, - "rotX": 0.08034262, - "rotY": 89.9989, - "rotZ": 359.983124, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Anette Mason is posessed by evil", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.0, - "g": 0.0, - "b": 0.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", - "LuaScriptState": "{\"ml\":{\"09377b\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9995,\"z\":0.0803}},\"17e686\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6909,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"6c34a5\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7984,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"a21c5b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6998,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"b12183\":{\"lock\":false,\"pos\":{\"x\":-2.7054,\"y\":1.6571,\"z\":0.3752},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}}}}", - "ContainedObjects": [ - { - "Name": "Deck", - "Transform": { - "posX": -2.6886, - "posY": 1.66233361, - "posZ": -5.04850054, - "rotX": 0.016835602, - "rotY": 179.999527, - "rotZ": 0.0802577958, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 368826, - 368825 - ], - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -12.5684261, - "posY": 1.33864832, - "posZ": 74.34744, - "rotX": 0.0179951712, - "rotY": 179.999481, - "rotZ": 359.970367, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Beyond the Grave", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368826, - "SidewaysCard": true, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e39a9a" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.486001, - "posY": 1.48346519, - "posZ": 73.9795761, - "rotX": 0.0421500057, - "rotY": 179.999329, - "rotZ": 359.974457, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dark Knowledge (v.I)", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368825, - "SidewaysCard": true, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7f6167" - } - ], - "GUID": "09377b" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2244, - "posY": 1.69086051, - "posZ": -15.2800007, - "rotX": 359.9201, - "rotY": 269.999939, - "rotZ": 0.0168764852, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Silver Twilight Lodge", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369835, - "SidewaysCard": false, - "CustomDeck": { - "3698": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "17e686" - }, - { - "Name": "Deck", - "Transform": { - "posX": -3.92770028, - "posY": 1.79835737, - "posZ": 5.75720072, - "rotX": 359.919739, - "rotY": 269.999969, - "rotZ": 180.016815, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 231808, - 231804, - 3626, - 3627, - 369127, - 231805, - 231806, - 231804, - 231814, - 369122, - 369122, - 3626, - 369128, - 3627, - 369126, - 369128, - 369122, - 369127, - 231807, - 369126, - 231813, - 231814, - 231805, - 231807, - 231809, - 369125, - 369128, - 231813, - 369125, - 231805, - 231808, - 231809, - 231814, - 231807, - 231804 - ], - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -17.71135, - "posY": 1.56800044, - "posZ": -33.49924, - "rotX": 359.9177, - "rotY": 269.978638, - "rotZ": 0.0161360279, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wracked", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231808, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4949ea" - }, - { - "Name": "Card", - "Transform": { - "posX": 14.9480782, - "posY": 1.4942292, - "posZ": 74.93108, - "rotX": 0.02213699, - "rotY": 269.980438, - "rotZ": 0.0018852806, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Daemonic Piping", - "Description": "Power. Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231804, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f84e0e" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.70005, - "posY": 1.5523262, - "posZ": 13.9823551, - "rotX": 359.987244, - "rotY": 269.999542, - "rotZ": 359.9839, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hunting Nightgaunt", - "Description": "Monster. Nightgaunt.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3626, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b124ef" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.36151, - "posY": 1.40362072, - "posZ": 13.422389, - "rotX": 359.987427, - "rotY": 270.0, - "rotZ": 359.984558, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "On Wings of Darkness", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3627, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "dd287a" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.141344, - "posY": 1.49498117, - "posZ": 82.66116, - "rotX": 0.01744227, - "rotY": 269.9856, - "rotZ": 0.0347701423, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Primordial Gateway", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369127, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a47dba" - }, - { - "Name": "Card", - "Transform": { - "posX": -26.0635834, - "posY": 1.72707784, - "posZ": -35.83386, - "rotX": 359.920868, - "rotY": 269.973969, - "rotZ": 0.0147350542, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Coven Initiate", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231805, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "367d03" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.8414345, - "posY": 1.57860494, - "posZ": -36.132618, - "rotX": 359.919647, - "rotY": 269.974, - "rotZ": 0.0165877342, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Priestess of the Coven", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231806, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "326f11" - }, - { - "Name": "Card", - "Transform": { - "posX": 15.1468468, - "posY": 1.34905994, - "posZ": 75.26861, - "rotX": 0.0217909943, - "rotY": 269.979736, - "rotZ": 0.01311177, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Daemonic Piping", - "Description": "Power. Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231804, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f79968" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.7263336, - "posY": 1.754926, - "posZ": -33.80658, - "rotX": 0.0413828529, - "rotY": 269.9769, - "rotZ": 0.3666429, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9cb625" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.1404233, - "posY": 1.50271082, - "posZ": 82.59327, - "rotX": 0.0194760654, - "rotY": 269.983032, - "rotZ": 0.0101950867, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror Unleashed", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369122, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d50053" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.72482347, - "posY": 1.52477443, - "posZ": 82.89518, - "rotX": 0.0210533645, - "rotY": 269.9688, - "rotZ": 0.01641221, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror Unleashed", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369122, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a71412" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.47138, - "posY": 1.56615245, - "posZ": 13.5548248, - "rotX": 359.9876, - "rotY": 270.0174, - "rotZ": 359.984955, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hunting Nightgaunt", - "Description": "Monster. Nightgaunt.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3626, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "476433" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.198229, - "posY": 1.51081049, - "posZ": 82.86387, - "rotX": 0.0176542532, - "rotY": 269.983124, - "rotZ": 0.009990074, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Chaos Manifest", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369128, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a7dd13" - }, - { - "Name": "Card", - "Transform": { - "posX": 99.46953, - "posY": 1.54276168, - "posZ": 13.6987543, - "rotX": 359.9927, - "rotY": 270.0251, - "rotZ": 359.991547, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "On Wings of Darkness", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 3627, - "SidewaysCard": false, - "CustomDeck": { - "36": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b06ff1" - }, - { - "Name": "Card", - "Transform": { - "posX": 7.780057, - "posY": 1.49331641, - "posZ": 81.00739, - "rotX": 0.018568987, - "rotY": 269.9933, - "rotZ": 359.989349, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Toil and Trouble", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369126, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d8b37a" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.47260237, - "posY": 1.347969, - "posZ": 82.624176, - "rotX": 0.0209928546, - "rotY": 269.9671, - "rotZ": 0.0178020764, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Chaos Manifest", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369128, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a7dd13" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.12781048, - "posY": 1.49762809, - "posZ": 82.52125, - "rotX": 0.0189197622, - "rotY": 269.9839, - "rotZ": 0.0179458261, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Terror Unleashed", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369122, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a71412" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.228713, - "posY": 1.49763262, - "posZ": 82.86434, - "rotX": 0.0173947681, - "rotY": 269.983215, - "rotZ": 0.007203724, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Primordial Gateway", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369127, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a47dba" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.055851, - "posY": 1.72234285, - "posZ": -33.4770279, - "rotX": 359.9191, - "rotY": 269.978851, - "rotZ": 0.0164938, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Diabolic Voices", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231807, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0fa642" - }, - { - "Name": "Card", - "Transform": { - "posX": 7.81153345, - "posY": 1.34815073, - "posZ": 81.02847, - "rotX": 0.020960357, - "rotY": 270.005981, - "rotZ": 0.0131634977, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Toil and Trouble", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369126, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a36f2f" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.7343235, - "posY": 1.86165559, - "posZ": -33.3503036, - "rotX": 359.785339, - "rotY": 269.9796, - "rotZ": 0.07815084, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Evil Past", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231813, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "976fd8" - }, - { - "Name": "Card", - "Transform": { - "posX": -13.0553141, - "posY": 1.49102473, - "posZ": 83.19125, - "rotX": 0.0151776178, - "rotY": 269.999542, - "rotZ": 180.007492, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0a13d0" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.6442871, - "posY": 1.72278082, - "posZ": -36.0347443, - "rotX": 359.911224, - "rotY": 269.974, - "rotZ": 0.0136959022, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Coven Initiate", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231805, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c35966" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.0510273, - "posY": 1.71469259, - "posZ": -33.44395, - "rotX": 359.919128, - "rotY": 269.978668, - "rotZ": 0.0163030848, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Diabolic Voices", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231807, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "407e66" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.6637516, - "posY": 1.7296617, - "posZ": -33.73086, - "rotX": 359.9201, - "rotY": 269.978882, - "rotZ": 0.0205486864, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Bedeviled", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231809, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a558b5" - }, - { - "Name": "Card", - "Transform": { - "posX": 7.667698, - "posY": 1.5107013, - "posZ": 80.7900543, - "rotX": 0.0206622779, - "rotY": 269.992828, - "rotZ": -0.001846674, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Witness of Chaos", - "Description": "Humanoid. Witch", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369125, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6582d7" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.403446, - "posY": 1.49307215, - "posZ": 82.67308, - "rotX": 0.005214898, - "rotY": 269.993042, - "rotZ": 0.03216257, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Chaos Manifest", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369128, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ccd9f0" - }, - { - "Name": "Card", - "Transform": { - "posX": -20.8834572, - "posY": 1.89827907, - "posZ": -33.5683937, - "rotX": 0.110509835, - "rotY": 269.976044, - "rotZ": 0.334469885, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Evil Past", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231813, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ab69b8" - }, - { - "Name": "Card", - "Transform": { - "posX": 7.70334435, - "posY": 1.4970336, - "posZ": 81.39029, - "rotX": 0.0202364512, - "rotY": 269.997528, - "rotZ": 0.009942474, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Witness of Chaos", - "Description": "Humanoid. Witch", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 369125, - "SidewaysCard": false, - "CustomDeck": { - "3691": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6582d7" - }, - { - "Name": "Card", - "Transform": { - "posX": -25.7267475, - "posY": 1.74028778, - "posZ": -36.1106224, - "rotX": 359.918823, - "rotY": 269.9739, - "rotZ": 0.0168967526, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Coven Initiate", - "Description": "Humanoid. Witch.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231805, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6f2c2e" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.80855, - "posY": 1.71239948, - "posZ": -33.79921, - "rotX": 359.910339, - "rotY": 269.97876, - "rotZ": 0.03349457, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wracked", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231808, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c8092b" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.1656151, - "posY": 1.716761, - "posZ": -33.74088, - "rotX": 359.918976, - "rotY": 269.9787, - "rotZ": 0.018134892, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Bedeviled", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231809, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f7c676" - }, - { - "Name": "Card", - "Transform": { - "posX": -21.0152721, - "posY": 1.57281208, - "posZ": -32.7783356, - "rotX": 359.9176, - "rotY": 269.977783, - "rotZ": 0.01638736, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Centuries of Secrets", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231814, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "81dc7a" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.73656, - "posY": 1.71689022, - "posZ": -33.5350227, - "rotX": 359.918945, - "rotY": 269.979126, - "rotZ": 0.0171701312, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Diabolic Voices", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231807, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "64341a" - }, - { - "Name": "Card", - "Transform": { - "posX": 14.9602261, - "posY": 1.52727246, - "posZ": 75.3926544, - "rotX": 0.0217449367, - "rotY": 269.97583, - "rotZ": 0.0155824684, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Daemonic Piping", - "Description": "Power. Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231804, - "SidewaysCard": false, - "CustomDeck": { - "2318": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "397fce" - } - ], - "GUID": "6c34a5" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2243, - "posY": 1.69983244, - "posZ": 15.1900005, - "rotX": 359.9201, - "rotY": 269.999969, - "rotZ": 0.0168766063, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hangman's Hill", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369634, - "SidewaysCard": false, - "CustomDeck": { - "3696": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a21c5b" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.7054, - "posY": 1.65707481, - "posZ": 0.3752003, - "rotX": 0.0168349613, - "rotY": 180.000092, - "rotZ": 0.0802575, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "THE CHARIOT · VII", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 368824, - "SidewaysCard": true, - "CustomDeck": { - "3688": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b12183" - } - ], - "GUID": "d14543" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6764984, - "posY": 1.68513834, - "posZ": -3.83000064, - "rotX": 359.920715, - "rotY": 270.0724, - "rotZ": 0.0178453177, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Rivertown", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369525, - "SidewaysCard": false, - "CustomDeck": { - "3695": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "db4b20" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -27.336998, - "posY": 1.61891341, - "posZ": -2.41980171, - "rotX": 0.06840199, - "rotY": 134.9534, - "rotZ": 0.0464382879, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "df634c", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.416101, - "posY": 1.58186924, - "posZ": -14.896203, - "rotX": 359.919739, - "rotY": 270.000244, - "rotZ": 0.0168374814, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "In the Clutches of Chaos", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'For the Greater Good'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", - "LuaScriptState": "", - "GUID": "e0709b" - }, - { - "Name": "Card", - "Transform": { - "posX": -31.7585144, - "posY": 1.84334445, - "posZ": -0.119101085, - "rotX": 359.959778, - "rotY": 270.069366, - "rotZ": 0.0158952679, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Southside", - "Description": "Arkham. Central.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369526, - "SidewaysCard": false, - "CustomDeck": { - "3695": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e7f5fa" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2434959, - "posY": 1.693148, - "posZ": -7.69751167, - "rotX": 359.920532, - "rotY": 269.99353, - "rotZ": 0.017608624, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "French Hill", - "Description": "Arkham.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 369522, - "SidewaysCard": false, - "CustomDeck": { - "3695": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fc9d97" - } - ], - "GUID": "effb49", - "AttachedDecals": [ - { - "Transform": { - "posX": -0.0021877822, - "posY": -0.08963572, - "posZ": -0.00288731651, - "rotX": 270.0, - "rotY": 359.869568, - "rotZ": 0.0, - "scaleX": 2.00000215, - "scaleY": 2.00000238, - "scaleZ": 2.00000262 - }, - "CustomDecal": { - "Name": "dunwich_back", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", - "Size": 7.4 - } - } - ] - } - ], - "GUID": "61534a" - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 32.29995, - "posY": 1.44891167, - "posZ": 28.5301533, - "rotX": 359.920135, - "rotY": 269.9981, - "rotZ": 0.0168749914, + "rotY": 269.997925, + "rotZ": 0.0168765113, "scaleX": 1.0, "scaleY": 0.139652729, "scaleZ": 1.0 @@ -1026097,6 +1040097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1026125,25 +1040127,25 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 4\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={1.5,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-1.2,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-4,5,6}, rotation={0,0,0}, height=500, width=1000,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1.35,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1.25,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-6,1,0}, rotation={0,90,0}, height=500, width=1200,\r\n-- font_size=350, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0fad66\":{\"lock\":false,\"pos\":{\"x\":12.2496,\"y\":1.4633,\"z\":-4.0136},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"185096\":{\"lock\":false,\"pos\":{\"x\":12.2505,\"y\":1.4585,\"z\":-20.0137},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"1b4f86\":{\"lock\":false,\"pos\":{\"x\":12.25,\"y\":1.4656,\"z\":3.9864},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"4f81cf\":{\"lock\":false,\"pos\":{\"x\":12.2501,\"y\":1.4609,\"z\":-12.0136},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"599cb7\":{\"lock\":false,\"pos\":{\"x\":12.2501,\"y\":1.4703,\"z\":19.9864},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"7b07ca\":{\"lock\":false,\"pos\":{\"x\":12.2521,\"y\":1.468,\"z\":11.9864},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"7f5828\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4727,\"z\":27.9864},\"rot\":{\"x\":359.9201,\"y\":270.0053,\"z\":0.0169}},\"e14c76\":{\"lock\":false,\"pos\":{\"x\":12.2496,\"y\":1.4562,\"z\":-28.0137},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"f40183\":{\"lock\":false,\"pos\":{\"x\":-1.2197,\"y\":1.4753,\"z\":-26.8667},\"rot\":{\"x\":359.9201,\"y\":270.0728,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 12.2502584, - "posY": 1.47268808, - "posZ": 27.9864, + "posX": 12.2496033, + "posY": 1.46325016, + "posZ": -4.0136, "rotX": 359.920135, - "rotY": 270.005341, - "rotZ": 0.0168645643, + "rotY": 270.000183, + "rotZ": 0.0168727, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, - "Nickname": "1-A: Beyond the Gates of Sleep", - "Description": "The Dream-Eaters", + "Nickname": "3-A: Dark Side of the Moon", + "Description": "The Dream Eaters", "GMNotes": "", "ColorDiffuse": { "r": 1.0, @@ -1026154,6 +1040156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1026164,7 +1040168,7 @@ "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/775107869055713524/616B6512BE4D795AE4FFC1D76DAC23B88F623B48/", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/778493962298058421/0B46C836BDF38F4DA05812D232294D51B421D951/", "NormalURL": "", "ColliderURL": "", "Convex": true, @@ -1026182,2200 +1040186,25 @@ }, "CastShadows": true }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", + "LuaScriptState": "{\"ml\":{\"3a751b\":{\"lock\":false,\"pos\":{\"x\":-2.6764,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9707,\"z\":0.0802}},\"3c1955\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7611,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"4d7bc7\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0107,\"z\":0.0169}},\"5c8909\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9868,\"z\":0.0169}},\"5caa00\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9836,\"y\":0.3334,\"z\":359.92}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9965,\"z\":0.08}},\"88a108\":{\"lock\":false,\"pos\":{\"x\":-33.5996,\"y\":1.6283,\"z\":-0.0355},\"rot\":{\"x\":0.0799,\"y\":89.9971,\"z\":359.9831}},\"99c449\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0106,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9979,\"z\":0.0687}},\"aa8d82\":{\"lock\":false,\"pos\":{\"x\":-3.6434,\"y\":1.5823,\"z\":-14.4516},\"rot\":{\"x\":359.9197,\"y\":270.0306,\"z\":0.0168}},\"b3cb48\":{\"lock\":false,\"pos\":{\"x\":-34.1049,\"y\":1.628,\"z\":-3.5086},\"rot\":{\"x\":359.9316,\"y\":315.0172,\"z\":359.9554}},\"b6f2f1\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9965,\"z\":0.0799}},\"bf5bd8\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0196,\"z\":0.0803}},\"c43d3c\":{\"lock\":false,\"pos\":{\"x\":-1.201,\"y\":1.55,\"z\":-39.628},\"rot\":{\"x\":0,\"y\":270.0004,\"z\":0}},\"cb15b1\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7067,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0106,\"z\":0.0169}},\"cdf29c\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0106,\"z\":0.0169}},\"d08fc6\":{\"lock\":false,\"pos\":{\"x\":-33.7733,\"y\":1.6308,\"z\":7.395},\"rot\":{\"x\":0.0799,\"y\":89.9971,\"z\":359.9831}}}}", "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", - "LuaScriptState": "{\"ml\":{\"075016\":{\"lock\":false,\"pos\":{\"x\":-3.7237,\"y\":1.5823,\"z\":-14.9545},\"rot\":{\"x\":359.9197,\"y\":270.0308,\"z\":0.0168}},\"1b07cc\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6862,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"2cd5d4\":{\"lock\":false,\"pos\":{\"x\":-2.7245,\"y\":1.6571,\"z\":0.3734},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"42b4ff\":{\"lock\":false,\"pos\":{\"x\":-2.6888,\"y\":1.6535,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":180.0017,\"z\":0.0803}},\"54a280\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":-0.0038,\"z\":359.9201}},\"7ba884\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9979,\"z\":0.0687}},\"f07e08\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}}}}", "ContainedObjects": [ { - "Name": "Custom_Model_Bag", + "Name": "Deck", "Transform": { - "posX": 1.69660068, - "posY": 1.55831647, - "posZ": 14.2787027, - "rotX": 359.955139, - "rotY": 224.99791, - "rotZ": 0.06867224, - "scaleX": 2.0, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "Nickname": "Set-aside", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.02148666, - "g": 0.00100758043, - "b": 0.02148666 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", - "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 1, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 39.0742722, - "posY": 3.42804384, - "posZ": 74.08097, - "rotX": 0.0177708846, - "rotY": 270.000183, - "rotZ": 0.0162155423, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Laboring Gug", - "Description": "Monster. Gug.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274101, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "974c44" - }, - { - "Name": "Card", - "Transform": { - "posX": 39.3514366, - "posY": 3.4098, - "posZ": 77.37932, - "rotX": 0.0208066069, - "rotY": 270.00946, - "rotZ": 0.01677401, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Randolph Carter", - "Description": "Expert Dreamer", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274200, - "SidewaysCard": false, - "CustomDeck": { - "2742": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "2cf22b" - }, - { - "Name": "Card", - "Transform": { - "posX": 43.96482, - "posY": 3.41234827, - "posZ": 80.36105, - "rotX": 0.0208074041, - "rotY": 270.000031, - "rotZ": 0.0167699456, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Kaman-Thah", - "Description": "Priest of the Dreamlands", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274413, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6ebabc" - }, - { - "Name": "Card", - "Transform": { - "posX": 38.74365, - "posY": 3.41053915, - "posZ": 80.65822, - "rotX": 0.0208071955, - "rotY": 270.000031, - "rotZ": 0.0167701822, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nasht", - "Description": "Priest of the Dreamlands", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274414, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "33f2ec" - }, - { - "Name": "Deck", - "Transform": { - "posX": 1.98281264, - "posY": 2.75759, - "posZ": 2.93342638, - "rotX": 359.955048, - "rotY": 270.004883, - "rotZ": 180.068741, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 274134, - 274122, - 274113, - 233721, - 274118, - 274132, - 274122, - 274103, - 274120, - 274132, - 274119, - 274131, - 274118, - 233720, - 274102, - 274111, - 274133, - 274120, - 274112, - 274103, - 274121, - 274114, - 233721, - 274131, - 274121, - 274119, - 233720 - ], - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2337": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 10.4340258, - "posY": 1.347994, - "posZ": 77.2828445, - "rotX": 0.0208079051, - "rotY": 270.0003, - "rotZ": 0.0167690869, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Zoog Burrow", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274134, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6aaec7" - }, - { - "Name": "Card", - "Transform": { - "posX": 19.31351, - "posY": 1.35409915, - "posZ": 87.16512, - "rotX": 0.0194639154, - "rotY": 270.016052, - "rotZ": 0.0158865564, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Prismatic Phenomenon", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274122, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b3f13e" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.704878, - "posY": 1.34584463, - "posZ": 80.7701645, - "rotX": 0.0208076891, - "rotY": 270.000183, - "rotZ": 0.016768489, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Law of 'Ygiroth (Discord)", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274113, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9a84de" - }, - { - "Name": "Card", - "Transform": { - "posX": 36.22917, - "posY": 1.51124179, - "posZ": 88.3929443, - "rotX": 0.0165650453, - "rotY": 269.916962, - "rotZ": 0.06150928, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Obscuring Fog", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 233721, - "SidewaysCard": false, - "CustomDeck": { - "2337": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "50e716" - }, - { - "Name": "Card", - "Transform": { - "posX": 22.2842884, - "posY": 1.43405008, - "posZ": 80.80763, - "rotX": 0.0192378685, - "rotY": 270.023163, - "rotZ": 355.773743, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dreamer's Curse", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274118, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "76859e" - }, - { - "Name": "Card", - "Transform": { - "posX": 10.8953857, - "posY": 1.35096252, - "posZ": 86.85204, - "rotX": 0.0208022948, - "rotY": 270.000153, - "rotZ": 0.016769195, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Stealthy Zoog", - "Description": "Creature. Zoog.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274132, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6a71eb" - }, - { - "Name": "Card", - "Transform": { - "posX": 18.1364231, - "posY": 1.35241461, - "posZ": 82.82968, - "rotX": 0.02080732, - "rotY": 270.006775, - "rotZ": 0.0167727135, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Prismatic Phenomenon", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274122, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4a7876" - }, - { - "Name": "Card", - "Transform": { - "posX": 7.09294271, - "posY": 1.34948814, - "posZ": 86.5327454, - "rotX": 0.0208071768, - "rotY": 270.0001, - "rotZ": 0.016768394, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lost in the Woods", - "Description": "Blunder.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274103, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "37b4cd" - }, - { - "Name": "Card", - "Transform": { - "posX": 14.3647461, - "posY": 1.35111558, - "posZ": 83.07091, - "rotX": 0.02080731, - "rotY": 270.000122, - "rotZ": 0.016768286, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Deeper Slumber", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274120, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "841cfc" - }, - { - "Name": "Card", - "Transform": { - "posX": 10.9278841, - "posY": 1.34991217, - "posZ": 83.22328, - "rotX": 0.02080437, - "rotY": 270.000061, - "rotZ": 0.0167663489, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Stealthy Zoog", - "Description": "Creature. Zoog.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274132, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b50e33" - }, - { - "Name": "Card", - "Transform": { - "posX": 18.2608337, - "posY": 1.35082424, - "posZ": 77.24169, - "rotX": 0.0208078679, - "rotY": 270.000061, - "rotZ": 0.0167684387, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Somniphobia", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274119, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c34a3e" - }, - { - "Name": "Card", - "Transform": { - "posX": 14.3287363, - "posY": 1.34936082, - "posZ": 77.12063, - "rotX": 0.020807771, - "rotY": 270.000122, - "rotZ": 0.0167682488, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Furtive Zoog", - "Description": "Creature. Zoog.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274131, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "578fce" - }, - { - "Name": "Card", - "Transform": { - "posX": 22.4578781, - "posY": 1.35281169, - "posZ": 78.8279, - "rotX": 0.0213993136, - "rotY": 270.003021, - "rotZ": 0.0169224273, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dreamer's Curse", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274118, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4259c3" - }, - { - "Name": "Card", - "Transform": { - "posX": 36.32401, - "posY": 1.360664, - "posZ": 88.7352448, - "rotX": 0.0216661077, - "rotY": 269.999268, - "rotZ": 0.0116391722, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Crypt Chill", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 233720, - "SidewaysCard": false, - "CustomDeck": { - "2337": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "16d6d6" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.390212, - "posY": 1.34718919, - "posZ": 79.55042, - "rotX": 0.0208074842, - "rotY": 270.000824, - "rotZ": 0.016768869, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Zoog", - "Description": "Creature. Zoog. Elite.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274102, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "30a8fd" - }, - { - "Name": "Card", - "Transform": { - "posX": 5.9762125, - "posY": 1.34604812, - "posZ": 76.1658249, - "rotX": 0.02080772, - "rotY": 270.000122, - "rotZ": 0.0167688653, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Crawling Mist", - "Description": "Monster. Avatar.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274111, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5404ff" - }, - { - "Name": "Card", - "Transform": { - "posX": 11.1632357, - "posY": 1.34905612, - "posZ": 80.00709, - "rotX": 0.0208133273, - "rotY": 270.000183, - "rotZ": 0.0167741217, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Inconspicuous Zoog", - "Description": "Creature. Zoog.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274133, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "be06bc" - }, - { - "Name": "Card", - "Transform": { - "posX": 14.8478355, - "posY": 1.35229611, - "posZ": 86.504715, - "rotX": 0.02080748, - "rotY": 270.000122, - "rotZ": 0.0167685673, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Deeper Slumber", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274120, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a13b33" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.68461835, - "posY": 1.344847, - "posZ": 77.38719, - "rotX": 0.0208076648, - "rotY": 270.000122, - "rotZ": 0.0167682879, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Law of 'Ygiroth (Chaos)", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274112, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8205b1" - }, - { - "Name": "Card", - "Transform": { - "posX": 6.78721857, - "posY": 1.3482188, - "posZ": 82.57534, - "rotX": 0.0208076388, - "rotY": 270.000031, - "rotZ": 0.0167690162, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lost in the Woods", - "Description": "Blunder.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274103, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5220fb" - }, - { - "Name": "Card", - "Transform": { - "posX": 21.73517, - "posY": 1.44899857, - "posZ": 86.50061, - "rotX": 356.55896, - "rotY": 269.9948, - "rotZ": 0.01701287, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dreamlands Eclipse", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274121, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "427a1d" - }, - { - "Name": "Card", - "Transform": { - "posX": 2.68838215, - "posY": 1.347185, - "posZ": 84.1291962, - "rotX": 0.0208078176, - "rotY": 270.000122, - "rotZ": 0.0167686474, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Law of 'Ygiroth (Pandemonium)", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274114, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c1a0c1" - }, - { - "Name": "Card", - "Transform": { - "posX": 36.3306465, - "posY": 1.52371442, - "posZ": 87.96211, - "rotX": 0.02788579, - "rotY": 270.030975, - "rotZ": 0.149886414, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Obscuring Fog", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 233721, - "SidewaysCard": false, - "CustomDeck": { - "2337": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c4ce76" - }, - { - "Name": "Card", - "Transform": { - "posX": 14.8493814, - "posY": 1.35047209, - "posZ": 80.27121, - "rotX": 0.0208077654, - "rotY": 270.000122, - "rotZ": 0.01676835, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Furtive Zoog", - "Description": "Creature. Zoog.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274131, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f2aca5" - }, - { - "Name": "Card", - "Transform": { - "posX": 21.8291836, - "posY": 1.35398853, - "posZ": 83.62457, - "rotX": 0.0208105836, - "rotY": 269.988464, - "rotZ": 0.0167643335, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dreamlands Eclipse", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274121, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6a8971" - }, - { - "Name": "Card", - "Transform": { - "posX": 18.28582, - "posY": 1.35154665, - "posZ": 79.67875, - "rotX": 0.0208072942, - "rotY": 270.000061, - "rotZ": 0.0167683177, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Somniphobia", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274119, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "34827b" - }, - { - "Name": "Card", - "Transform": { - "posX": 36.4160576, - "posY": 1.50560057, - "posZ": 88.4538, - "rotX": 0.0300157573, - "rotY": 269.9982, - "rotZ": 0.00885154, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Crypt Chill", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 233720, - "SidewaysCard": false, - "CustomDeck": { - "2337": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ab3719" - } - ], - "GUID": "cbf3fa" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.69642472, - "posY": 3.728411, - "posZ": 14.2788372, - "rotX": 359.94812, - "rotY": 224.998062, - "rotZ": 0.0583290569, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Enchanted Path", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274405, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "2828b6" - }, - { - "Name": "Deck", - "Transform": { - "posX": 1.6964252, - "posY": 3.73143768, - "posZ": 14.278841, - "rotX": 359.948151, - "rotY": 224.998062, - "rotZ": 0.05831738, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Enchanted Woods", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 274409, - 274411, - 274406, - 274412, - 274410, - 274408, - 274407 - ], - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -23.6763439, - "posY": 1.68731368, - "posZ": 3.8599546, - "rotX": 359.920532, - "rotY": 269.9999, - "rotZ": 0.0134935183, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Enchanted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274409, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "2273ef" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765442, - "posY": 1.83725619, - "posZ": 3.860009, - "rotX": 359.931, - "rotY": 270.000153, - "rotZ": 0.00307039218, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Enchanted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274411, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c9a005" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765213, - "posY": 1.854765, - "posZ": 3.85998821, - "rotX": 359.917938, - "rotY": 270.000061, - "rotZ": 0.0161052831, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Enchanted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274406, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b3fcf5" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6741543, - "posY": 1.80802608, - "posZ": 3.858933, - "rotX": 358.098724, - "rotY": 269.975342, - "rotZ": 0.89489615, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Enchanted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274412, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "2157cc" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765232, - "posY": 1.83922446, - "posZ": 3.86001039, - "rotX": 359.9195, - "rotY": 270.0002, - "rotZ": 0.0153193688, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Enchanted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274410, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8c287b" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765232, - "posY": 1.84176338, - "posZ": 3.86001015, - "rotX": 359.9195, - "rotY": 270.0003, - "rotZ": 0.0153638385, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Enchanted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274408, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "92e96b" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765232, - "posY": 1.84671867, - "posZ": 3.86001, - "rotX": 359.919525, - "rotY": 270.000366, - "rotZ": 0.0154158389, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Enchanted Woods", - "Description": "Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274407, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "14f2fe" - } - ], - "GUID": "9cc8dc" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.69648647, - "posY": 3.71471977, - "posZ": 14.2788353, - "rotX": 359.9621, - "rotY": 224.991257, - "rotZ": 0.05468249, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Base of the Steps", - "Description": "Steps. Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274404, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "2fb629" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.69651234, - "posY": 3.69915676, - "posZ": 14.2788219, - "rotX": 359.954742, - "rotY": 225.0013, - "rotZ": 0.0689351261, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Seven Hundred Steps", - "Description": "Of Deeper Slumber", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274403, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "062996" - } - ], - "PhysicsMaterial": { - "StaticFriction": 0.6, - "DynamicFriction": 0.6, - "Bounciness": 0.0, - "FrictionCombine": 0, - "BounceCombine": 0 - }, - "Rigidbody": { - "Mass": 1.375, - "Drag": 5.0, - "AngularDrag": 5.0, - "UseGravity": true - }, - "GUID": "7ba884" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.7245, - "posY": 1.65710115, - "posZ": 0.3734003, - "rotX": 0.0168349538, - "rotY": 180.000031, - "rotZ": 0.08025775, + "posX": -2.67641544, + "posY": 1.62391365, + "posZ": -5.048497, + "rotX": 0.0168766584, + "rotY": 179.970657, + "rotZ": 0.08024754, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Journey through the Gates", - "Description": "Agenda 1", + "Nickname": "", + "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1028386,95 +1040215,50 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274600, - "SidewaysCard": true, - "CustomDeck": { - "2746": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "2cd5d4" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.6888, - "posY": 1.65349483, - "posZ": -5.0486, - "rotX": 0.0168324523, - "rotY": 180.001709, - "rotZ": 0.0802580044, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ - 274604, - 274603, - 274602, - 274601 + 448229, + 448228, + 448227, + 448226 ], "CustomDeck": { - "2746": { + "4482": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", "Transform": { - "posX": -0.553955, - "posY": 3.438215, - "posZ": -13.9903574, - "rotX": 0.0168324672, - "rotY": 180.001724, - "rotZ": 0.0802589357, + "posX": -11.0816126, + "posY": 1.66499209, + "posZ": -12.4067783, + "rotX": 0.0171953663, + "rotY": 179.926956, + "rotZ": 0.07844931, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "The Path", + "Nickname": "Unexpected Rescue", "Description": "Act 4", "GMNotes": "", "ColorDiffuse": { @@ -1028486,43 +1040270,46 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 274604, + "CardID": 448229, "SidewaysCard": true, "CustomDeck": { - "2746": { + "4482": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "f3dd39" + "XmlUI": "", + "GUID": "04d820" }, { "Name": "Card", "Transform": { - "posX": -1.10321772, - "posY": 3.43646979, - "posZ": -15.6497784, - "rotX": 0.0168323759, - "rotY": 180.00174, - "rotZ": 0.0802591443, + "posX": -10.9915428, + "posY": 1.826066, + "posZ": -11.9397945, + "rotX": 0.0120061105, + "rotY": 180.016312, + "rotZ": 0.08003286, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "The Final Descent", + "Nickname": "The Moon's Core", "Description": "Act 3", "GMNotes": "", "ColorDiffuse": { @@ -1028534,43 +1040321,46 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 274603, + "CardID": 448228, "SidewaysCard": true, "CustomDeck": { - "2746": { + "4482": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "5cee0d" + "XmlUI": "", + "GUID": "453173" }, { "Name": "Card", "Transform": { - "posX": -0.84218967, - "posY": 2.76301241, - "posZ": -16.8501968, - "rotX": 0.0168323554, - "rotY": 180.00174, - "rotZ": 0.08025898, + "posX": -11.2566652, + "posY": 1.84363711, + "posZ": -12.45118, + "rotX": 0.0164827611, + "rotY": 180.00737, + "rotZ": 0.07951248, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "The Trial of Nasht and Kaman-Thah", + "Nickname": "Exploring the Moon", "Description": "Act 2", "GMNotes": "", "ColorDiffuse": { @@ -1028582,43 +1040372,46 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 274602, + "CardID": 448227, "SidewaysCard": true, "CustomDeck": { - "2746": { + "4482": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "de502b" + "XmlUI": "", + "GUID": "950287" }, { "Name": "Card", "Transform": { - "posX": -2.68853378, - "posY": 1.809068, - "posZ": -5.04852247, - "rotX": 0.0192188546, - "rotY": 180.000076, - "rotZ": 0.07795308, + "posX": -11.2261992, + "posY": 1.829924, + "posZ": -12.4624214, + "rotX": 0.0165065471, + "rotY": 179.9832, + "rotZ": 0.07953842, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Entering the Dreamlands", + "Nickname": "In the Belly of the Moon-Beast", "Description": "Act 1", "GMNotes": "", "ColorDiffuse": { @@ -1028630,3304 +1040423,41 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 274601, + "CardID": 448226, "SidewaysCard": true, "CustomDeck": { - "2746": { + "4482": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "3f6848" + "XmlUI": "", + "GUID": "8a7b93" } ], - "GUID": "42b4ff" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.95593119, - "posY": 1.65564811, - "posZ": -10.4413157, - "rotX": 359.919739, - "rotY": 270.000122, - "rotZ": 0.0168443527, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "Beyond the Gates of Sleep", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274400, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f07e08" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.72370052, - "posY": 1.582283, - "posZ": -14.954504, - "rotX": 359.919739, - "rotY": 270.030823, - "rotZ": 0.0167948, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "Campaign A Setup", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'TDE_A'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", - "LuaScriptState": "", - "GUID": "075016" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -23.6765, - "posY": 1.613388, - "posZ": -3.83, - "rotX": 359.983124, - "rotY": -0.00375659, - "rotZ": 359.920074, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7234af", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6763, - "posY": 1.68622, - "posZ": -0.0301003847, - "rotX": 359.9201, - "rotY": 270.0, - "rotZ": 0.0168764759, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Seventy Steps", - "Description": "Of Lighter Slumber", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274401, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1b07cc" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6763973, - "posY": 1.68396175, - "posZ": -7.70000029, - "rotX": 359.9201, - "rotY": 269.999939, - "rotZ": 0.0168766957, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Cavern of Flame", - "Description": "Cave. Steps.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274402, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "54a280" - } - ], - "GUID": "7f5828", - "AttachedDecals": [ - { - "Transform": { - "posX": -0.0021877822, - "posY": -0.08963572, - "posZ": -0.00288731651, - "rotX": 270.0, - "rotY": 359.869568, - "rotZ": 0.0, - "scaleX": 2.00000215, - "scaleY": 2.00000238, - "scaleZ": 2.00000262 - }, - "CustomDecal": { - "Name": "dunwich_back", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", - "Size": 7.4 - } - } - ] - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 12.2500753, - "posY": 1.47031665, - "posZ": 19.9863739, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168737732, - "scaleX": 2.21, - "scaleY": 0.46, - "scaleZ": 2.42 - }, - "Nickname": "1-B: Waking Nightmare", - "Description": "The Dream-Eaters", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/775107869055713235/FBABD72CD923F9371D9E8416D95CF198A0CDD42B/", - "NormalURL": "", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CustomShader": { - "SpecularColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "SpecularIntensity": 0.0, - "SpecularSharpness": 2.0, - "FresnelStrength": 0.0 - }, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", - "LuaScriptState": "{\"ml\":{\"05d1cf\":{\"lock\":false,\"pos\":{\"x\":-27.2495,\"y\":1.6206,\"z\":3.6873},\"rot\":{\"x\":359.9316,\"y\":315.0237,\"z\":359.9554}},\"2e6a5b\":{\"lock\":false,\"pos\":{\"x\":-30.5021,\"y\":1.624,\"z\":-0.1284},\"rot\":{\"x\":359.9831,\"y\":-0.004,\"z\":359.9201}},\"430489\":{\"lock\":false,\"pos\":{\"x\":-3.6953,\"y\":1.6627,\"z\":14.8922},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"4dba7c\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.5588,\"y\":1.6102,\"z\":0.0491},\"rot\":{\"x\":359.9201,\"y\":269.9948,\"z\":0.0169}},\"725b9b\":{\"lock\":false,\"pos\":{\"x\":-27.288,\"y\":1.6185,\"z\":-3.6558},\"rot\":{\"x\":359.9549,\"y\":225.423,\"z\":0.0681}},\"7f666b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"98195d\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9719,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"ae9c75\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9917,\"z\":0.0803}},\"b37a4c\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9825,\"z\":0.0169}},\"b4ef40\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":0.0168}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.6318,\"y\":1.5822,\"z\":-14.9411},\"rot\":{\"x\":359.9197,\"y\":270.0308,\"z\":0.0168}},\"e7b32a\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7184,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"f1a8d3\":{\"lock\":false,\"pos\":{\"x\":-2.6803,\"y\":1.655,\"z\":-5.0492},\"rot\":{\"x\":0.0169,\"y\":179.9734,\"z\":0.0802}}}}", - "ContainedObjects": [ - { - "Name": "Custom_Tile", - "Transform": { - "posX": -27.2495, - "posY": 1.62058377, - "posZ": 3.68730044, - "rotX": 359.93158, - "rotY": 315.0238, - "rotZ": 359.9554, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "05d1cf", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.5021, - "posY": 1.62399578, - "posZ": -0.12839976, - "rotX": 359.983124, - "rotY": -0.00382182654, - "rotZ": 359.920074, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": false, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "2e6a5b", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -3.6953, - "posY": 1.66272724, - "posZ": 14.8922033, - "rotX": 359.919739, - "rotY": 269.9999, - "rotZ": 0.016840931, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dr. Shivani Maheswaran", - "Description": "Emergency Physician", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 281605, - "SidewaysCard": false, - "CustomDeck": { - "2816": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "430489" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2243, - "posY": 1.6975888, - "posZ": 7.56999969, - "rotX": 359.9201, - "rotY": 269.999756, - "rotZ": 0.016876461, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Emergency Room", - "Description": "St. Mary's.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274417, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4dba7c" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -20.5588, - "posY": 1.61018264, - "posZ": 0.0490999855, - "rotX": 359.9201, - "rotY": 269.994446, - "rotZ": 0.0169059075, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7234af", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -27.288, - "posY": 1.61847508, - "posZ": -3.65579963, - "rotX": 359.954926, - "rotY": 225.42305, - "rotZ": 0.06807315, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "725b9b", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765, - "posY": 1.68622041, - "posZ": -0.0300004128, - "rotX": 359.9201, - "rotY": 269.999725, - "rotZ": 0.0168765783, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Waiting Room", - "Description": "St. Mary's.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274416, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7f666b" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2243, - "posY": 1.69309223, - "posZ": -7.70000124, - "rotX": 359.9201, - "rotY": 269.9719, - "rotZ": 0.0169153381, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Experimental Therapies Ward", - "Description": "St. Mary's.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274418, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "98195d" - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 1.69670093, - "posY": 1.55831659, - "posZ": 14.2787008, - "rotX": 359.955139, - "rotY": 224.998123, - "rotZ": 0.06867259, - "scaleX": 2.0, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "Nickname": "Set-aside", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.02148666, - "g": 0.00100758043, - "b": 0.02148666 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", - "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 1, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 19.5292969, - "posY": 2.52368855, - "posZ": -65.9515457, - "rotX": 0.000274056656, - "rotY": 270.002136, - "rotZ": -0.00109385012, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Stairwell", - "Description": "St. Mary's.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274420, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bd26ee" - }, - { - "Name": "Deck", - "Transform": { - "posX": 43.1313362, - "posY": 3.40768933, - "posZ": 56.2772865, - "rotX": 0.0208102334, - "rotY": 270.0, - "rotZ": 0.0167693309, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Basement Doors", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 274422, - 274423, - 274421 - ], - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -1.17708433, - "posY": 1.34451783, - "posZ": 79.8246155, - "rotX": 0.0208419058, - "rotY": 270.000031, - "rotZ": 0.01655323, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Basement Door", - "Description": "St. Mary's. Basement.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274422, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4e2ab5" - }, - { - "Name": "Card", - "Transform": { - "posX": -1.3089, - "posY": 1.50554371, - "posZ": 80.2802658, - "rotX": 0.0207522381, - "rotY": 270.000031, - "rotZ": 0.01676218, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Basement Door", - "Description": "St. Mary's. Basement.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274423, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "42fa87" - }, - { - "Name": "Card", - "Transform": { - "posX": -1.28195369, - "posY": 1.52276206, - "posZ": 80.1422348, - "rotX": 0.020512946, - "rotY": 270.000061, - "rotZ": 0.0162001234, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Basement Door", - "Description": "St. Mary's. Basement.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274421, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "96c994" - } - ], - "GUID": "fca017" - }, - { - "Name": "Deck", - "Transform": { - "posX": 43.0967255, - "posY": 3.41693974, - "posZ": 62.8609238, - "rotX": 0.0208104774, - "rotY": 269.999939, - "rotZ": 0.0167694874, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Corrupted Orderly", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 274107, - 274107 - ], - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 37.81886, - "posY": 1.35207331, - "posZ": 57.2038651, - "rotX": 0.0207542721, - "rotY": 270.000031, - "rotZ": 0.0174547154, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Corrupted Orderly", - "Description": "Humanoid. Staff. Spider.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274107, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "eac2ed" - }, - { - "Name": "Card", - "Transform": { - "posX": 37.8268051, - "posY": 1.50629711, - "posZ": 57.4835663, - "rotX": 0.0150169851, - "rotY": 270.000061, - "rotZ": -0.00339917513, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Corrupted Orderly", - "Description": "Humanoid. Staff. Spider.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274107, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4d1ce5" - } - ], - "GUID": "c68917" - }, - { - "Name": "Deck", - "Transform": { - "posX": 46.8427353, - "posY": 3.4107976, - "posZ": 62.2912941, - "rotX": 0.0208184477, - "rotY": 269.972321, - "rotZ": 0.0167590678, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Outbreak", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 274108, - 274108, - 274108 - ], - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 50.1699524, - "posY": 1.4408015, - "posZ": 59.3374252, - "rotX": 356.973755, - "rotY": 269.985779, - "rotZ": 0.0568509735, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Outbreak", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274108, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "988ac2" - }, - { - "Name": "Card", - "Transform": { - "posX": 50.1682053, - "posY": 1.66445386, - "posZ": 59.337307, - "rotX": 359.134033, - "rotY": 269.999451, - "rotZ": 0.0628164, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Outbreak", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274108, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "39f2a0" - }, - { - "Name": "Card", - "Transform": { - "posX": 50.1681976, - "posY": 1.6678381, - "posZ": 59.337307, - "rotX": 358.764526, - "rotY": 269.999054, - "rotZ": 0.0756083652, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Outbreak", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274108, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "41bb1d" - } - ], - "GUID": "226a9c" - }, - { - "Name": "Deck", - "Transform": { - "posX": 47.2568779, - "posY": 3.41024566, - "posZ": 55.36397, - "rotX": 0.0208103452, - "rotY": 270.000275, - "rotZ": 0.0167692, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Spiders", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 274128, - 274128, - 274127, - 274127, - 274127, - 274126 - ], - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -17.82091, - "posY": 1.33128047, - "posZ": 55.306675, - "rotX": 0.0209979564, - "rotY": 270.0003, - "rotZ": 0.0154960454, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Sickening Webs", - "Description": "Obstacle.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274128, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "aaa961" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.1596622, - "posY": 1.4920063, - "posZ": 55.3749123, - "rotX": 0.0263286941, - "rotY": 270.0003, - "rotZ": 0.0107973032, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Sickening Webs", - "Description": "Obstacle.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274128, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f7b0ac" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.9226074, - "posY": 1.3302232, - "posZ": 52.41938, - "rotX": 0.0207031667, - "rotY": 269.9782, - "rotZ": 0.0206490774, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Swarm of Spiders", - "Description": "Creature. Spider.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274127, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "404e3b" - }, - { - "Name": "Card", - "Transform": { - "posX": -18.1491051, - "posY": 1.47793663, - "posZ": 52.5626335, - "rotX": 0.007718184, - "rotY": 270.003845, - "rotZ": 0.0501582474, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Swarm of Spiders", - "Description": "Creature. Spider.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274127, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e20a3d" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.99768, - "posY": 1.49296021, - "posZ": 52.5603447, - "rotX": 0.0238676667, - "rotY": 269.989746, - "rotZ": 0.0183764044, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Swarm of Spiders", - "Description": "Creature. Spider.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274127, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ec88e2" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.800869, - "posY": 1.49662709, - "posZ": 55.9866867, - "rotX": 0.0207160283, - "rotY": 270.000061, - "rotZ": 0.0141102793, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Spider of Leng", - "Description": "Monster. Spider.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274126, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fc24fb" - } - ], - "GUID": "2dd09d" - }, - { - "Name": "Deck", - "Transform": { - "posX": 4.69255733, - "posY": 2.65170956, - "posZ": -23.6560268, - "rotX": 359.9201, - "rotY": 269.995331, - "rotZ": 0.016883295, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agents of Atlach-Nacha", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 274110, - 274110, - 274109, - 274109 - ], - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -11.7681608, - "posY": 1.67323828, - "posZ": 12.4915247, - "rotX": 359.9206, - "rotY": 270.000519, - "rotZ": 0.0129873687, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Will of the Spider-Mother", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274110, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "50e06a" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.6543922, - "posY": 1.81859434, - "posZ": 12.3625975, - "rotX": 359.941925, - "rotY": 270.001648, - "rotZ": 0.00295316125, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Will of the Spider-Mother", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274110, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "924656" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.8818655, - "posY": 1.83639562, - "posZ": 12.4194412, - "rotX": 359.936554, - "rotY": 269.993164, - "rotZ": 0.0173758585, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Grey Weaver", - "Description": "Monster. Spider.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274109, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b126fb" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.6577845, - "posY": 1.83786273, - "posZ": 12.0466986, - "rotX": 359.9192, - "rotY": 270.011932, - "rotZ": 0.0173931215, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Grey Weaver", - "Description": "Monster. Spider.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274109, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "621de5" - } - ], - "GUID": "cfbe20" - }, - { - "Name": "Card", - "Transform": { - "posX": 42.94955, - "posY": 3.427797, - "posZ": 66.3755, - "rotX": 0.0208236557, - "rotY": 270.0, - "rotZ": 0.0167942159, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Randolph Carter", - "Description": "Chained to the Waking World", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274204, - "SidewaysCard": false, - "CustomDeck": { - "2742": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "aebf12" - }, - { - "Name": "Card", - "Transform": { - "posX": 5.185056, - "posY": 2.65543985, - "posZ": -2.58340144, - "rotX": 0.0, - "rotY": 270.0, - "rotZ": 0.0, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Infestation Begins", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274424, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e5c9af" - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 42.9512177, - "posY": 3.34053063, - "posZ": 68.2738647, - "rotX": 0.00529053528, - "rotY": 270.000732, - "rotZ": 0.054995358, - "scaleX": 3.0, - "scaleY": 3.0, - "scaleZ": 3.0 - }, - "Nickname": "Infestation Bag", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "http://cloud-3.steamusercontent.com/ugc/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/959719855127875098/FDA724CE3F0F9C62A141C0B33CAB238C40EDEE32/", - "NormalURL": "", - "ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929350/39BD77E7ADC7C32EC6BDB21649FDE8B65E8E1968/", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Custom_Tile", - "Transform": { - "posX": 52.27346, - "posY": 2.065368, - "posZ": 70.6387939, - "rotX": 0.0200458653, - "rotY": 269.994446, - "rotZ": 0.06477361, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/1plY463.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d4467c" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": 55.8118439, - "posY": 1.98421216, - "posZ": 72.7538, - "rotX": 0.0208075028, - "rotY": 269.99408, - "rotZ": 0.0167706311, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/1plY463.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "163f65" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": 58.8788071, - "posY": 1.9852159, - "posZ": 72.3781, - "rotX": 0.02081059, - "rotY": 269.995483, - "rotZ": 0.0167716853, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/1plY463.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b5bb5c" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": 61.6115227, - "posY": 1.98578739, - "posZ": 70.93989, - "rotX": 0.0208105054, - "rotY": 269.9955, - "rotZ": 0.0167717226, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/1plY463.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1a1506" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": 52.4895058, - "posY": 2.06544662, - "posZ": 70.59631, - "rotX": 0.03353666, - "rotY": 269.993683, - "rotZ": 0.0588619523, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/stbBxtx.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "cc8bbb" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": 53.16047, - "posY": 2.064702, - "posZ": 70.44286, - "rotX": 359.9398, - "rotY": 270.049561, - "rotZ": 0.0806277841, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/VzhJJaH.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4ad9ad" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": 52.28967, - "posY": 2.064728, - "posZ": 70.14878, - "rotX": 0.0280863326, - "rotY": 269.995758, - "rotZ": 0.062192, - "scaleX": 0.81, - "scaleY": 1.0, - "scaleZ": 0.81 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/VzhJJaH.png", - "ImageSecondaryURL": "", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 2, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7d6103" - } - ], - "GUID": "0257a2" - } - ], - "PhysicsMaterial": { - "StaticFriction": 0.6, - "DynamicFriction": 0.6, - "Bounciness": 0.0, - "FrictionCombine": 0, - "BounceCombine": 0 - }, - "Rigidbody": { - "Mass": 1.375, - "Drag": 5.0, - "AngularDrag": 5.0, - "UseGravity": true - }, - "GUID": "a45247" + "GUID": "3a751b" }, { "Name": "Deck", "Transform": { - "posX": -2.72469974, - "posY": 1.65664113, - "posZ": 0.373300344, - "rotX": 0.0168466475, - "rotY": 179.991745, - "rotZ": 0.08025517, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agenda Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 274607, - 274606, - 274605 - ], - "CustomDeck": { - "2746": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -2.72472239, - "posY": 1.65704656, - "posZ": 0.37329495, - "rotX": 0.0174119882, - "rotY": 179.992126, - "rotZ": 0.07683178, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hospital of Horrors", - "Description": "Agenda 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274607, - "SidewaysCard": true, - "CustomDeck": { - "2746": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d810aa" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.72472978, - "posY": 1.80680585, - "posZ": 0.3733177, - "rotX": 0.0283064954, - "rotY": 179.9964, - "rotZ": 0.06661427, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Infestation Spreads", - "Description": "Agenda 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274606, - "SidewaysCard": true, - "CustomDeck": { - "2746": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9a9007" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.72472048, - "posY": 1.82436967, - "posZ": 0.3733217, - "rotX": 0.014995547, - "rotY": 179.997269, - "rotZ": 0.07805128, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Halls of St. Mary's", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274605, - "SidewaysCard": true, - "CustomDeck": { - "2746": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "87ab5b" - } - ], - "GUID": "ae9c75" - }, - { - "Name": "Card", - "Transform": { - "posX": -17.1198978, - "posY": 1.67707765, - "posZ": -0.0300003346, - "rotX": 359.9201, - "rotY": 269.9825, - "rotZ": 0.0169005711, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Records Office", - "Description": "St. Mary's.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274419, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b37a4c" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.95600057, - "posY": 1.65564823, - "posZ": -10.4412012, - "rotX": 359.919739, - "rotY": 270.000519, - "rotZ": 0.0168403443, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "Waking Nightmare", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 274415, - "SidewaysCard": false, - "CustomDeck": { - "2744": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b4ef40" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.63180041, - "posY": 1.58215821, - "posZ": -14.941102, - "rotX": 359.919739, - "rotY": 270.030762, - "rotZ": 0.016794974, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "Campaign B Setup", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'TDE_B'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", - "LuaScriptState": "", - "GUID": "bbb70a" - }, - { - "Name": "Deck", - "Transform": { - "posX": -3.9277, - "posY": 1.71841538, - "posZ": 5.757101, + "posX": -3.92761135, + "posY": 1.74437845, + "posZ": 5.757204, "rotX": 359.919739, "rotY": 270.0, "rotZ": 180.016815, @@ -1031947,6 +1040477,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1031955,72 +1040487,83 @@ "Hands": false, "SidewaysCard": false, "DeckIDs": [ - 234118, - 281715, - 234116, - 281724, - 234227, - 281715, - 281723, - 281725, - 234116, - 281725, - 234117, - 281706, - 234116, - 281724, - 281715, - 234227, - 281706, - 234117, - 281723, - 234118 + 274129, + 232419, + 274120, + 274129, + 232419, + 274118, + 274119, + 274118, + 274119, + 232419, + 274120, + 274130, + 274130, + 448407, + 448407, + 448407, + 448408, + 448408, + 448403, + 448403, + 448405, + 448405, + 448404, + 448404, + 448404, + 448406, + 448406, + 448406 ], "CustomDeck": { - "2341": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2817": { + "2741": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, - "2342": { + "2324": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 + }, + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", "Transform": { - "posX": -15.4338884, - "posY": 1.49635184, - "posZ": 66.64195, - "rotX": 0.0248884521, - "rotY": 270.0327, - "rotZ": -0.000242893628, + "posX": -3.95851326, + "posY": 1.33603656, + "posZ": 54.52095, + "rotX": 0.021499306, + "rotY": 269.999054, + "rotZ": 0.01294238, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Dissonant Voices", - "Description": "Terror.", + "Nickname": "Hunted by Corsairs", + "Description": "Scheme.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032031,43 +1040574,301 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 234118, + "CardID": 274129, "SidewaysCard": false, "CustomDeck": { - "2341": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d30166" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.85151768, + "posY": 1.481172, + "posZ": 54.5874138, + "rotX": 0.0317279, + "rotY": 269.997437, + "rotZ": 0.0104400339, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232419, + "SidewaysCard": false, + "CustomDeck": { + "2324": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "97416f" + "XmlUI": "", + "GUID": "6e7cb8" }, { "Name": "Card", "Transform": { - "posX": -11.2954206, - "posY": 1.94337964, - "posZ": 75.87013, - "rotX": 0.0, + "posX": -3.99202347, + "posY": 1.49862671, + "posZ": 54.1671333, + "rotX": 0.0205474552, + "rotY": 270.000031, + "rotZ": 0.0154121937, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Deeper Slumber", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274120, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c9a81c" + }, + { + "Name": "Card", + "Transform": { + "posX": -4.119467, + "posY": 1.48490989, + "posZ": 54.3174744, + "rotX": 0.0210007112, + "rotY": 270.000427, + "rotZ": 0.0169398841, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hunted by Corsairs", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274129, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4f56f1" + }, + { + "Name": "Card", + "Transform": { + "posX": -4.18778563, + "posY": 1.48285019, + "posZ": 54.38247, + "rotX": 0.024659181, + "rotY": 269.999878, + "rotZ": 0.0159895718, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232419, + "SidewaysCard": false, + "CustomDeck": { + "2324": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8af879" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.93856478, + "posY": 1.4856503, + "posZ": 54.4894142, + "rotX": 0.0238736, + "rotY": 270.005, + "rotZ": 0.0106812716, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dreamer's Curse", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274118, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8af23c" + }, + { + "Name": "Card", + "Transform": { + "posX": -5.61676359, + "posY": 1.49031913, + "posZ": 55.2240753, + "rotX": 0.0210925788, "rotY": 270.0, - "rotZ": 0.0, + "rotZ": 0.0154342148, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Whispers of Hypnos", + "Nickname": "Somniphobia", "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { @@ -1032079,13 +1040880,15 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 281715, + "CardID": 274119, "SidewaysCard": false, "CustomDeck": { "2741": { @@ -1032094,29 +1040897,30 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "690fdf" + "XmlUI": "", + "GUID": "e64ec2" }, { "Name": "Card", "Transform": { - "posX": -15.5085716, - "posY": 1.48227274, - "posZ": 66.83469, - "rotX": 0.0259839334, - "rotY": 270.0125, - "rotZ": 0.0103577031, + "posX": -5.1435895, + "posY": 1.49677563, + "posZ": 55.3496666, + "rotX": 0.0186838917, + "rotY": 270.000061, + "rotZ": 0.0165105425, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Rotting Remains", - "Description": "Terror.", + "Nickname": "Dreamer's Curse", + "Description": "Curse.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032127,61 +1040931,15 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 234116, - "SidewaysCard": false, - "CustomDeck": { - "2341": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ab3719" - }, - { - "Name": "Card", - "Transform": { - "posX": -15.2898378, - "posY": 1.49847782, - "posZ": 74.49116, - "rotX": 0.027782822, - "rotY": 270.000122, - "rotZ": 0.0170789734, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Glimpse of the Underworld", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 281724, + "CardID": 274118, "SidewaysCard": false, "CustomDeck": { "2741": { @@ -1032190,29 +1040948,30 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "81396b" + "XmlUI": "", + "GUID": "dd39c6" }, { "Name": "Card", "Transform": { - "posX": -15.252141, - "posY": 1.33558333, - "posZ": 67.1355743, - "rotX": 0.021979766, - "rotY": 270.0025, - "rotZ": 0.009349022, + "posX": -5.319792, + "posY": 1.45421457, + "posZ": 55.48307, + "rotX": 0.0235182159, + "rotY": 270.000519, + "rotZ": 0.0153398849, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Locked Door", - "Description": "Obstacle.", + "Nickname": "Somniphobia", + "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032223,43 +1040982,250 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 234227, + "CardID": 274119, "SidewaysCard": false, "CustomDeck": { - "2342": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bdd705" + }, + { + "Name": "Card", + "Transform": { + "posX": -5.75459766, + "posY": 1.46369326, + "posZ": 55.18787, + "rotX": 0.021479506, + "rotY": 269.9999, + "rotZ": 0.0153722484, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232419, + "SidewaysCard": false, + "CustomDeck": { + "2324": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "4904d0" + "XmlUI": "", + "GUID": "6e7cb8" }, { "Name": "Card", "Transform": { - "posX": -11.3957472, - "posY": 1.94239068, - "posZ": 72.61547, - "rotX": 0.0, + "posX": -5.285024, + "posY": 1.473537, + "posZ": 55.3664665, + "rotX": 0.02268582, + "rotY": 269.9998, + "rotZ": 0.0148103712, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Deeper Slumber", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274120, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "07cb83" + }, + { + "Name": "Card", + "Transform": { + "posX": -5.73751926, + "posY": 1.48304963, + "posZ": 55.2935753, + "rotX": 0.0214949958, "rotY": 270.0, - "rotZ": 0.0, + "rotZ": 0.0150681, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Whispers of Hypnos", + "Nickname": "Corsair of Leng", + "Description": "Humanoid. Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274130, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a45b3a" + }, + { + "Name": "Card", + "Transform": { + "posX": -5.38415337, + "posY": 1.50843859, + "posZ": 55.3186073, + "rotX": 0.02077319, + "rotY": 270.000031, + "rotZ": 0.0165515617, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Corsair of Leng", + "Description": "Humanoid. Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274130, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "646a1a" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.1378026, + "posY": 1.34118438, + "posZ": 70.00583, + "rotX": 0.0219865087, + "rotY": 269.986755, + "rotZ": 0.00923137553, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Forced into Hiding", "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { @@ -1032271,43 +1041237,46 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 281715, + "CardID": 448407, "SidewaysCard": false, "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "ab4c37" + "XmlUI": "", + "GUID": "430478" }, { "Name": "Card", "Transform": { - "posX": -18.8716145, - "posY": 1.4960593, - "posZ": 69.9934, - "rotX": 0.02509427, - "rotY": 270.0002, - "rotZ": 0.0154290823, + "posX": -2.08908343, + "posY": 1.49055374, + "posZ": 69.73123, + "rotX": 0.0114795351, + "rotY": 269.986877, + "rotZ": 0.01847368, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Night Terrors", + "Nickname": "Forced into Hiding", "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { @@ -1032319,44 +1041288,98 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 281723, + "CardID": 448407, "SidewaysCard": false, "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "638b7c" + "XmlUI": "", + "GUID": "35c286" }, { "Name": "Card", "Transform": { - "posX": -18.9654636, - "posY": 1.41237366, - "posZ": 74.82911, - "rotX": 0.0206071083, + "posX": -4.27698469, + "posY": 1.50192142, + "posZ": 50.755394, + "rotX": 0.0219084, + "rotY": 269.9867, + "rotZ": 0.0159632284, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Forced into Hiding", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 448407, + "SidewaysCard": false, + "CustomDeck": { + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b8b5c0" + }, + { + "Name": "Card", + "Transform": { + "posX": -8.013627, + "posY": 1.33334887, + "posZ": 50.2772, + "rotX": 0.0212570131, "rotY": 269.986633, - "rotZ": 356.035858, + "rotZ": 0.01420621, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Threads of Reality", - "Description": "Power.", + "Nickname": "Lunar Patrol", + "Description": "Scheme.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032367,44 +1041390,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 281725, + "CardID": 448408, "SidewaysCard": false, "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "3e7219" + "XmlUI": "", + "GUID": "1dc329" }, { "Name": "Card", "Transform": { - "posX": -15.1918449, - "posY": 1.49825406, - "posZ": 67.0849838, - "rotX": 0.0185506232, - "rotY": 269.999939, - "rotZ": 0.0159074273, + "posX": -8.107245, + "posY": 1.48278522, + "posZ": 50.4694824, + "rotX": 0.0337397456, + "rotY": 269.986267, + "rotZ": -0.00328205316, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Rotting Remains", - "Description": "Terror.", + "Nickname": "Lunar Patrol", + "Description": "Scheme.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032415,44 +1041441,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 234116, + "CardID": 448408, "SidewaysCard": false, "CustomDeck": { - "2341": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "ab3719" + "XmlUI": "", + "GUID": "8ed23d" }, { "Name": "Card", "Transform": { - "posX": -18.9450645, - "posY": 1.63163185, - "posZ": 74.42269, - "rotX": 0.02133287, - "rotY": 270.000122, - "rotZ": 358.8375, + "posX": -0.342821658, + "posY": 1.33624387, + "posZ": 50.85751, + "rotX": 0.02183284, + "rotY": 269.9867, + "rotZ": 0.0101136481, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Threads of Reality", - "Description": "Power.", + "Nickname": "Moonbound Byakhee", + "Description": "Monster. Byakhee.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032463,44 +1041492,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 281725, + "CardID": 448403, "SidewaysCard": false, "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "c3cc96" + "XmlUI": "", + "GUID": "1e3d9c" }, { "Name": "Card", "Transform": { - "posX": -15.5149069, - "posY": 1.48991072, - "posZ": 66.61328, - "rotX": 0.02902092, - "rotY": 270.045776, - "rotZ": -0.00427468959, + "posX": -0.119474329, + "posY": 1.4857558, + "posZ": 50.3578033, + "rotX": 0.0261226017, + "rotY": 269.986633, + "rotZ": 0.013653243, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Frozen in Fear", - "Description": "Terror.", + "Nickname": "Moonbound Byakhee", + "Description": "Monster. Byakhee.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032511,44 +1041543,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 234117, + "CardID": 448403, "SidewaysCard": false, "CustomDeck": { - "2341": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "0f4202" + "XmlUI": "", + "GUID": "6a01b3" }, { "Name": "Card", "Transform": { - "posX": -15.4196062, - "posY": 1.49738181, - "posZ": 70.0118942, - "rotX": 0.02183292, - "rotY": 270.007874, - "rotZ": 0.0130473021, + "posX": -4.602836, + "posY": 1.33395815, + "posZ": 48.6415939, + "rotX": 0.0227752626, + "rotY": 269.986755, + "rotZ": 0.00403617648, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Suspicious Orderly", - "Description": "Humanoid. Staff.", + "Nickname": "Moon-Beast", + "Description": "Monster. Servitor.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032559,44 +1041594,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 281706, + "CardID": 448405, "SidewaysCard": false, "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "5e6da0" + "XmlUI": "", + "GUID": "a67b30" }, { "Name": "Card", "Transform": { - "posX": -15.5316477, - "posY": 1.48447287, - "posZ": 67.16099, - "rotX": 0.0189164747, - "rotY": 270.0087, - "rotZ": 0.0117459893, + "posX": -4.177688, + "posY": 1.48315227, + "posZ": 48.1663322, + "rotX": 0.00254054368, + "rotY": 269.986877, + "rotZ": 0.0276345443, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Rotting Remains", - "Description": "Terror.", + "Nickname": "Moon-Beast", + "Description": "Monster. Servitor.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032607,44 +1041645,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 234116, + "CardID": 448405, "SidewaysCard": false, "CustomDeck": { - "2341": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "435a47" + "XmlUI": "", + "GUID": "7a9fd0" }, { "Name": "Card", "Transform": { - "posX": -14.9562168, - "posY": 1.33799672, - "posZ": 74.79575, - "rotX": 0.02128689, - "rotY": 269.948517, - "rotZ": 0.0135712354, + "posX": -5.16077042, + "posY": 1.33419871, + "posZ": 49.5594826, + "rotX": 0.0210423376, + "rotY": 269.9867, + "rotZ": 0.0156857315, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Glimpse of the Underworld", - "Description": "Terror.", + "Nickname": "Cats from Saturn", + "Description": "Creature. Monster.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032655,44 +1041696,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 281724, + "CardID": 448404, "SidewaysCard": false, "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "f34d5f" + "XmlUI": "", + "GUID": "69fa0b" }, { "Name": "Card", "Transform": { - "posX": -11.4451923, - "posY": 1.9415797, - "posZ": 69.90859, - "rotX": 0.0, - "rotY": 270.0, - "rotZ": 0.0, + "posX": -4.95902729, + "posY": 1.483893, + "posZ": 49.61392, + "rotX": 0.0156786237, + "rotY": 269.9868, + "rotZ": 0.00259767217, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Whispers of Hypnos", - "Description": "Terror.", + "Nickname": "Cats from Saturn", + "Description": "Creature. Monster.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032703,44 +1041747,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 281715, + "CardID": 448404, "SidewaysCard": false, "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "200ac5" + "XmlUI": "", + "GUID": "1a188b" }, { "Name": "Card", "Transform": { - "posX": -15.2474775, - "posY": 1.47428286, - "posZ": 67.0842, - "rotX": -0.00303730019, - "rotY": 269.9937, - "rotZ": 0.01247096, + "posX": -5.088737, + "posY": 1.50123262, + "posZ": 49.43233, + "rotX": 0.0224124733, + "rotY": 269.986572, + "rotZ": 0.0150748733, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Locked Door", - "Description": "Obstacle.", + "Nickname": "Cats from Saturn", + "Description": "Creature. Monster.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032751,44 +1041798,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 234227, + "CardID": 448404, "SidewaysCard": false, "CustomDeck": { - "2342": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "ab3719" + "XmlUI": "", + "GUID": "ba6406" }, { "Name": "Card", "Transform": { - "posX": -15.0796642, - "posY": 1.33664393, - "posZ": 70.20619, - "rotX": 0.0209349841, - "rotY": 270.000122, - "rotZ": 0.01593082, + "posX": -3.7438643, + "posY": 2.34431648, + "posZ": 47.14024, + "rotX": 0.02157486, + "rotY": 269.986877, + "rotZ": 0.0128391329, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Suspicious Orderly", - "Description": "Humanoid. Staff.", + "Nickname": "Close Watch", + "Description": "Scheme.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032799,44 +1041849,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 281706, + "CardID": 448406, "SidewaysCard": false, "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "9b9df4" + "XmlUI": "", + "GUID": "d06c19" }, { "Name": "Card", "Transform": { - "posX": -15.5246363, - "posY": 1.48501992, - "posZ": 66.8433151, - "rotX": 0.0193933919, - "rotY": 270.0156, - "rotZ": 0.00433985237, + "posX": -3.7652297, + "posY": 2.39406681, + "posZ": 46.4197578, + "rotX": 0.0215747468, + "rotY": 269.9872, + "rotZ": 0.0128485141, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Frozen in Fear", - "Description": "Terror.", + "Nickname": "Close Watch", + "Description": "Scheme.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032847,44 +1041900,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 234117, + "CardID": 448406, "SidewaysCard": false, "CustomDeck": { - "2341": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "c70601" + "XmlUI": "", + "GUID": "09b1ba" }, { "Name": "Card", "Transform": { - "posX": -18.7347469, - "posY": 1.33525944, - "posZ": 70.05127, - "rotX": 0.0210470781, - "rotY": 270.0003, - "rotZ": 0.0151563631, + "posX": -3.89863968, + "posY": 2.449588, + "posZ": 45.84762, + "rotX": 0.0239194687, + "rotY": 269.9803, + "rotZ": 0.0328396149, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Night Terrors", - "Description": "Terror.", + "Nickname": "Close Watch", + "Description": "Scheme.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032895,95 +1041951,50 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 281723, + "CardID": 448406, "SidewaysCard": false, "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "ef90ee" - }, - { - "Name": "Card", - "Transform": { - "posX": -15.4043, - "posY": 1.45409477, - "posZ": 67.20083, - "rotX": 0.0148261543, - "rotY": 270.0008, - "rotZ": 0.01684804, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dissonant Voices", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234118, - "SidewaysCard": false, - "CustomDeck": { - "2341": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f5c831" + "GUID": "cd1750" } ], - "GUID": "e7b32a" + "GUID": "3c1955" }, { - "Name": "Deck", + "Name": "Card", "Transform": { - "posX": -2.6803, - "posY": 1.65498567, - "posZ": -5.0492, - "rotX": 0.0168722291, - "rotY": 179.9734, - "rotZ": 0.08024971, + "posX": -30.2243176, + "posY": 1.63948, + "posZ": 7.57000256, + "rotX": 359.9201, + "rotY": 270.01062, + "rotZ": 0.016857367, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Scenario Deck", - "Description": "", + "Nickname": "City of the Moon-Beasts", + "Description": "Surface. City.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1032994,268 +1042005,599 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 274610, - 274609, - 274608 - ], + "Hands": true, + "CardID": 448302, + "SidewaysCard": false, "CustomDeck": { - "2746": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "4483": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -2.68031788, - "posY": 1.65541518, - "posZ": -5.049209, - "rotX": 0.0172575135, - "rotY": 179.9738, - "rotZ": 0.0783508047, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Containing the Outbreak", - "Description": "Act 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274610, - "SidewaysCard": true, - "CustomDeck": { - "2746": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "aa505a" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.68846774, - "posY": 1.78980541, - "posZ": -5.048556, - "rotX": 0.012574112, - "rotY": 179.992172, - "rotZ": 0.0530508421, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Search for the Patient", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274609, - "SidewaysCard": true, - "CustomDeck": { - "2746": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c04e9d" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.68853617, - "posY": 1.822758, - "posZ": -5.048544, - "rotX": 0.0192118511, - "rotY": 179.991821, - "rotZ": 0.07963451, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Looking for Answers", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274608, - "SidewaysCard": true, - "CustomDeck": { - "2746": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6789c0" - } - ], - "GUID": "f1a8d3" - } - ], - "GUID": "599cb7", - "AttachedDecals": [ - { - "Transform": { - "posX": -0.0021877822, - "posY": -0.08963572, - "posZ": -0.00288731651, - "rotX": 270.0, - "rotY": 359.869568, - "rotZ": 0.0, - "scaleX": 2.00000215, - "scaleY": 2.00000238, - "scaleZ": 2.00000262 - }, - "CustomDecal": { - "Name": "dunwich_back", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", - "Size": 7.4 - } - } - ] - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 12.2520761, - "posY": 1.46795821, - "posZ": 11.9863644, - "rotX": 359.920135, - "rotY": 270.0, - "rotZ": 0.0168737471, - "scaleX": 2.21, - "scaleY": 0.46, - "scaleZ": 2.42 - }, - "Nickname": "2-A: The Search For Kadath", - "Description": "The Dream Eaters", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/780741189053435823/96C94958445E20B7DFB0D6B43AC86B4C491895B6/", - "NormalURL": "", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CustomShader": { - "SpecularColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "SpecularIntensity": 0.0, - "SpecularSharpness": 2.0, - "FresnelStrength": 0.0 + "XmlUI": "", + "GUID": "4d7bc7" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.95601749, + "posY": 1.59753954, + "posZ": -10.4412, + "rotX": 359.919739, + "rotY": 269.986725, + "rotZ": 0.0168558173, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "Dark Side of the Moon", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 448300, + "SidewaysCard": false, + "CustomDeck": { + "4483": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5c8909" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.2242, + "posY": 1.6225183, + "posZ": -3.82999921, + "rotX": 359.983582, + "rotY": 0.33335495, + "rotZ": 359.919983, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5caa00", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -36.7732, + "posY": 1.63391459, + "posZ": 3.86, + "rotX": 0.0168767832, + "rotY": 179.996384, + "rotZ": 0.07993863, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7234af", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -33.5996, + "posY": 1.62834227, + "posZ": -0.0355003178, + "rotX": 0.0798934847, + "rotY": 89.99708, + "rotZ": 359.9831, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "88a108", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2242165, + "posY": 1.637242, + "posZ": -0.029997129, + "rotX": 359.9201, + "rotY": 270.0105, + "rotZ": 0.0168576222, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Dark Crater", + "Description": "Surface.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 448303, + "SidewaysCard": false, + "CustomDeck": { + "4483": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "99c449" }, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", - "LuaScriptState": "{\"ml\":{\"02da4e\":{\"lock\":false,\"pos\":{\"x\":-30.2207,\"y\":1.6961,\"z\":2.428},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"04c6b1\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":269.9996,\"z\":0.0168}},\"175627\":{\"lock\":false,\"pos\":{\"x\":-30.2382,\"y\":1.6225,\"z\":-3.8293},\"rot\":{\"x\":0.0175,\"y\":179.5781,\"z\":0.0798}},\"247820\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.985,\"z\":0.0169}},\"269d43\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7397,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"65c10b\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-27.1175,\"y\":1.6193,\"z\":0.0633},\"rot\":{\"x\":359.9201,\"y\":270.0033,\"z\":0.0169}},\"7c8ea4\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9997,\"z\":0.0803}},\"83569f\":{\"lock\":false,\"pos\":{\"x\":-12.3269,\"y\":1.6737,\"z\":11.2204},\"rot\":{\"x\":359.9201,\"y\":270.0026,\"z\":0.0169}},\"972cb1\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0015,\"z\":0.0169}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.6766,\"y\":1.5823,\"z\":-14.8239},\"rot\":{\"x\":359.9197,\"y\":270.0305,\"z\":0.0168}},\"d74877\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":0.0169}},\"d87cb2\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6543,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0002,\"z\":0.0803}},\"e93f00\":{\"lock\":false,\"pos\":{\"x\":-12.262,\"y\":1.6729,\"z\":8.8014},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}}}}", - "ContainedObjects": [ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 1.69660068, - "posY": 1.55831659, - "posZ": 14.2787008, + "posX": 1.69660139, + "posY": 1.55831683, + "posZ": 14.2787037, "rotX": 359.955139, - "rotY": 224.997971, - "rotZ": 0.06867303, + "rotY": 224.997833, + "rotZ": 0.06867231, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 @@ -1033272,6 +1042614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1033290,25 +1042634,25 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { - "Name": "Deck", + "Name": "Card", "Transform": { - "posX": -2.11199522, - "posY": 3.64101839, - "posZ": 19.6899319, - "rotX": 359.9211, - "rotY": 269.999939, - "rotZ": 0.176839828, + "posX": -1.00175333, + "posY": 3.272036, + "posZ": 0.170168161, + "rotX": 359.920135, + "rotY": 269.986633, + "rotZ": 0.01689765, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Locations", - "Description": "", + "Nickname": "The Captain", + "Description": "Dreamlands Navigator", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1033319,732 +1042663,148 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, - "Hands": false, + "Hands": true, + "CardID": 448401, "SidewaysCard": false, - "DeckIDs": [ - 275533, - 275529, - 275532, - 275530, - 275531, - 275534, - 275535, - 275536, - 275537, - 275538, - 275539, - 275540, - 275541, - 275542 - ], "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -12.4419594, - "posY": 1.57453752, - "posZ": 13.4791069, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168767087, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Forbidden Lands", - "Description": "Forbidden. Wastes.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275533, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8e9ed5" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.274209, - "posY": 1.57808256, - "posZ": 26.3125839, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168756042, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Kadatheron", - "Description": "Mnar. Ancient. City. Port.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275529, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "056275" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.2036991, - "posY": 1.57514131, - "posZ": 16.6578, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.01687632, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ilek-Vad", - "Description": "Forbidden. City. Port.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275532, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "96cca3" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.09113, - "posY": 1.5767647, - "posZ": 22.70372, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168759152, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Sarnath", - "Description": "Mnar. Ancient. Ruins.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275530, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9a739a" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.5108461, - "posY": 1.57645667, - "posZ": 19.6702366, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168755651, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ruins of Ib", - "Description": "Mnar. Ancient. Ruins.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275531, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1d61e4" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.4753046, - "posY": 1.57377851, - "posZ": 10.7440977, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168763455, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Zulan-Thek", - "Description": "Forbidden. City.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275534, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ae139d" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.71207, - "posY": 1.573349, - "posZ": 8.164102, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168757625, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Baharna", - "Description": "Oriab. City. Port.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275535, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6ebff1" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.7785082, - "posY": 1.57264042, - "posZ": 5.44348049, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168752186, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mt. Ngranek", - "Description": "Oriab. Mountain.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275536, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "42511b" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.9459677, - "posY": 1.57212532, - "posZ": 2.901174, - "rotX": 359.920135, - "rotY": 269.999969, - "rotZ": 0.0168754458, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nameless Ruins", - "Description": "Oriab. Ancient. Ruins.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275537, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3bfae3" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.4735508, - "posY": 1.57046366, - "posZ": -0.5054646, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168750454, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Celephaïs", - "Description": "Ooth-Nargai. City. Port.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275538, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b9d7d3" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.8110142, - "posY": 1.57021189, - "posZ": -2.957839, - "rotX": 359.920135, - "rotY": 269.999939, - "rotZ": 0.0168750752, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Serannian", - "Description": "Ooth-Nargai. City. Port.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275539, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8eaa3e" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.9111652, - "posY": 1.56951559, - "posZ": -5.79671955, - "rotX": 359.920135, - "rotY": 269.9999, - "rotZ": 0.016874861, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hazuth-Kleg", - "Description": "Ooth-Nargai. City.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275540, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ac608d" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.7769585, - "posY": 1.56846, - "posZ": -8.745693, - "rotX": 359.920135, - "rotY": 269.999969, - "rotZ": 0.0168759543, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Temple of Unattainable Desires", - "Description": "Ooth-Nargai. Temple.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275541, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "566e24" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.8705034, - "posY": 1.567704, - "posZ": -11.7560482, - "rotX": 359.920135, - "rotY": 269.9999, - "rotZ": 0.01687664, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "City-Which-Appears-On-No-Map", - "Description": "City. Otherworld.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275542, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1892f8" - } - ], - "GUID": "c5ed15" + "XmlUI": "", + "GUID": "035f54" }, { "Name": "Card", "Transform": { - "posX": -2.920171, - "posY": 3.61802959, - "posZ": 15.9969339, - "rotX": 359.9201, - "rotY": 270.0074, - "rotZ": 0.016867, + "posX": -0.140059009, + "posY": 3.25801015, + "posZ": 4.66106653, + "rotX": 2.57129323E-05, + "rotY": 269.9862, + "rotZ": -0.000100568504, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Beings of Ib", + "Nickname": "Virgil Gray", + "Description": "Truly Inspired", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 448400, + "SidewaysCard": false, + "CustomDeck": { + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5dbc74" + }, + { + "Name": "Card", + "Transform": { + "posX": -5.63004351, + "posY": 3.01442623, + "posZ": 9.05983448, + "rotX": 0.0208127648, + "rotY": 0.0269944351, + "rotZ": 0.0167658143, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "False Awakening", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 448609, + "SidewaysCard": false, + "CustomDeck": { + "4486": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0de10c" + }, + { + "Name": "Card", + "Transform": { + "posX": 0.3857994, + "posY": 3.01677179, + "posZ": 9.609353, + "rotX": 0.0208133329, + "rotY": 269.986847, + "rotZ": 0.0167665631, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Moon Lizard", "Description": "Monster. Elite.", "GMNotes": "", "ColorDiffuse": { @@ -1034056,44 +1042816,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 275239, + "CardID": 448402, "SidewaysCard": false, "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "4484": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "b49497" + "XmlUI": "", + "GUID": "db6ad1" }, { "Name": "Card", "Transform": { - "posX": -3.5399425, - "posY": 3.61615133, - "posZ": 6.68237352, - "rotX": 359.920135, - "rotY": 270.000031, - "rotZ": 0.0168760046, + "posX": 9.642976, + "posY": 3.258013, + "posZ": 4.29473352, + "rotX": -1.58084658E-05, + "rotY": 269.986725, + "rotZ": -1.04519777E-05, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "The Crawling Mist", - "Description": "Monster. Avatar.", + "Nickname": "Light Side of the Moon", + "Description": "Surface. Ruins.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1034104,44 +1042867,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 277811, + "CardID": 448309, "SidewaysCard": false, "CustomDeck": { - "2778": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "4483": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "aa76f7" + "XmlUI": "", + "GUID": "e4d13a" }, { "Name": "Card", "Transform": { - "posX": -3.14765286, - "posY": 3.6174407, - "posZ": 12.9187422, + "posX": 3.58776188, + "posY": 3.26561165, + "posZ": 0.08030915, "rotX": 359.920135, - "rotY": 269.99585, - "rotZ": 0.0168837085, + "rotY": 269.986633, + "rotZ": 0.0168963019, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Cats of Ulthar", - "Description": "Creature. Elite.", + "Nickname": "Moon-Beast Galley", + "Description": "Ship.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1034152,44 +1042918,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 275236, + "CardID": 448301, "SidewaysCard": false, "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "4483": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "35c471" + "XmlUI": "", + "GUID": "fdaf9a" }, { "Name": "Card", "Transform": { - "posX": -3.4513042, - "posY": 3.61690283, - "posZ": 9.653793, - "rotX": 359.920135, - "rotY": 269.9958, - "rotZ": 0.0168841016, + "posX": 4.06642342, + "posY": 3.25801086, + "posZ": 4.579455, + "rotX": 2.4886207E-05, + "rotY": 269.970947, + "rotZ": -5.99862033E-05, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Stalking Manticore", - "Description": "Creature. Monster. Elite.", + "Nickname": "The White Ship", + "Description": "Ship.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1034200,44 +1042969,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 275237, + "CardID": 448310, "SidewaysCard": false, "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "4483": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "d6c02c" + "XmlUI": "", + "GUID": "537a2f" }, { "Name": "Card", "Transform": { - "posX": -3.53071117, - "posY": 3.615322, - "posZ": 3.90885615, - "rotX": 359.920135, - "rotY": 269.980042, - "rotZ": 0.0169055965, + "posX": 4.631258, + "posY": 3.018292, + "posZ": 9.535302, + "rotX": 0.0208228566, + "rotY": 269.9542, + "rotZ": 0.0167549569, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Horde of Night", - "Description": "Monster. Elite.", + "Nickname": "The Black Core", + "Description": "Cave.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1034248,44 +1043020,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 275238, + "CardID": 448307, "SidewaysCard": false, "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "4483": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "499dd5" + "XmlUI": "", + "GUID": "c283c3" }, { - "Name": "Deck", + "Name": "Card", "Transform": { - "posX": -2.79704356, - "posY": 3.6417253, - "posZ": 21.72567, + "posX": 8.679053, + "posY": 3.25846839, + "posZ": -0.07334685, "rotX": 359.920135, - "rotY": 270.021881, - "rotZ": 0.0168662611, + "rotY": 269.982117, + "rotZ": 0.01690388, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Tenebrous Nightgaunts", - "Description": "", + "Nickname": "Caverns Beneath the Moon", + "Description": "Light Side", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1034296,145 +1043071,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, - "Hands": false, + "Hands": true, + "CardID": 448308, "SidewaysCard": false, - "DeckIDs": [ - 275241, - 275241 - ], "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "4483": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -13.2128162, - "posY": 1.5778501, - "posZ": 21.1856079, - "rotX": 359.920441, - "rotY": 270.021881, - "rotZ": 0.0147382179, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Tenebrous Nightgaunt", - "Description": "Monster. Nightgaunt.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275241, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1ce529" - }, - { - "Name": "Card", - "Transform": { - "posX": -13.3413391, - "posY": 1.73354626, - "posZ": 21.2646561, - "rotX": 359.915649, - "rotY": 270.0219, - "rotZ": 0.012841003, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Tenebrous Nightgaunt", - "Description": "Monster. Nightgaunt.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275241, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "987cef" - } - ], - "GUID": "96da72" + "XmlUI": "", + "GUID": "4b517e" }, { - "Name": "Deck", + "Name": "Card", "Transform": { - "posX": -2.6915164, - "posY": 3.62443757, - "posZ": 18.5137444, - "rotX": 359.920135, - "rotY": 269.9981, - "rotZ": 0.01687923, + "posX": 10.7771444, + "posY": 3.02035761, + "posZ": 8.967343, + "rotX": 0.0208214726, + "rotY": 269.959259, + "rotZ": 0.0167554673, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Corsairs of Leng", - "Description": "", + "Nickname": "Caverns Beneath the Moon", + "Description": "Dark Side", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1034445,327 +1043122,31 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, - "Hands": false, + "Hands": true, + "CardID": 448306, "SidewaysCard": false, - "DeckIDs": [ - 277930, - 277930 - ], "CustomDeck": { - "2779": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "4483": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -0.8792448, - "posY": 1.54885137, - "posZ": -18.964489, - "rotX": 359.920258, - "rotY": 270.002075, - "rotZ": 0.0160020888, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Corsair of Leng", - "Description": "Humanoid. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 277930, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "646a1a" - }, - { - "Name": "Card", - "Transform": { - "posX": -0.6101885, - "posY": 1.70970118, - "posZ": -18.9958839, - "rotX": 359.922028, - "rotY": 270.014343, - "rotZ": 0.0135500757, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Corsair of Leng", - "Description": "Humanoid. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 277930, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a45b3a" - } - ], - "GUID": "41e8e0" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.50804567, - "posY": 3.61565685, - "posZ": 14.4788265, - "rotX": 359.920135, - "rotY": 270.000336, - "rotZ": 0.0168757457, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Priests of a Thousand Masks", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 275240, - 275240, - 275240 - ], - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -14.5339622, - "posY": 1.57638431, - "posZ": 10.27148, - "rotX": 359.921417, - "rotY": 270.0005, - "rotZ": 0.00846398, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Priests of a Thousand Masks", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275240, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3c60a3" - }, - { - "Name": "Card", - "Transform": { - "posX": -14.1222458, - "posY": 1.73135841, - "posZ": 10.0143385, - "rotX": 359.9022, - "rotY": 270.0005, - "rotZ": 0.0194792971, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Priests of a Thousand Masks", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275240, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "929b02" - }, - { - "Name": "Card", - "Transform": { - "posX": -14.122365, - "posY": 1.74570465, - "posZ": 10.0143471, - "rotX": 359.9207, - "rotY": 270.000519, - "rotZ": 0.015264404, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Priests of a Thousand Masks", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275240, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3c60a3" - } - ], - "GUID": "678204" + "GUID": "d69f76" } ], "PhysicsMaterial": { @@ -1034781,1750 +1043162,22 @@ "AngularDrag": 5.0, "UseGravity": true }, - "GUID": "65c10b" - }, - { - "Name": "Deck", - "Transform": { - "posX": -3.92770028, - "posY": 1.73973322, - "posZ": 5.757201, - "rotX": 359.919739, - "rotY": 270.0, - "rotZ": 180.016815, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 275243, - 275244, - 275934, - 275915, - 275913, - 275921, - 275244, - 275921, - 275243, - 275929, - 275915, - 275932, - 275932, - 275912, - 275929, - 275933, - 275931, - 275922, - 275245, - 275915, - 275914, - 275931, - 275922, - 275245 - ], - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -7.5146904, - "posY": 1.865406, - "posZ": 22.4842567, - "rotX": -0.004218876, - "rotY": 270.000519, - "rotZ": 0.0759157, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nightriders", - "Description": "Creature. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275243, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0f7d44" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.44637251, - "posY": 1.68690383, - "posZ": 22.23971, - "rotX": 359.9574, - "rotY": 269.977051, - "rotZ": 357.952332, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Song of the Magah Bird", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275244, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "da130c" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.601114, - "posY": 1.82774377, - "posZ": 31.1552677, - "rotX": 359.9396, - "rotY": 269.72702, - "rotZ": 356.6766, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Zoog Burrow", - "Description": "Hazard.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275934, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8b08a8" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.51770973, - "posY": 1.710178, - "posZ": 31.68852, - "rotX": 0.8261434, - "rotY": 270.239044, - "rotZ": 355.267151, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispers of Hypnos", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275915, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ce95a3" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.12121534, - "posY": 1.68012333, - "posZ": 31.1778, - "rotX": 359.866577, - "rotY": 270.012543, - "rotZ": 354.3614, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Law of 'Ygiroth (Discord)", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275913, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "48601c" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.29006863, - "posY": 1.77508748, - "posZ": 31.6659145, - "rotX": 0.04985804, - "rotY": 270.120728, - "rotZ": 356.119568, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dreamlands Eclipse", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275921, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9df5fa" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.1733017, - "posY": 1.56984, - "posZ": 22.9708328, - "rotX": 359.9215, - "rotY": 269.982056, - "rotZ": 0.00721275574, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Song of the Magah Bird", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275244, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "81d1a4" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.241075, - "posY": 1.76712751, - "posZ": 31.5813789, - "rotX": 0.313825518, - "rotY": 270.16687, - "rotZ": 355.37915, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dreamlands Eclipse", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275921, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c942d4" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.687539, - "posY": 1.857332, - "posZ": 22.0311432, - "rotX": 0.133902177, - "rotY": 270.010681, - "rotZ": 0.476255745, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nightriders", - "Description": "Creature. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275243, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f3bc7d" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.118088, - "posY": 3.12496376, - "posZ": 30.7177525, - "rotX": 359.958679, - "rotY": 270.011841, - "rotZ": 0.008831963, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hunted by Corsairs", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275929, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d30166" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.30569649, - "posY": 1.74557066, - "posZ": 31.7424488, - "rotX": 0.0877673253, - "rotY": 270.11792, - "rotZ": 355.527863, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispers of Hypnos", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275915, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6476cc" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.316199, - "posY": 1.82182014, - "posZ": 31.6502972, - "rotX": 359.841431, - "rotY": 269.8029, - "rotZ": 356.4663, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Stealthy Zoog", - "Description": "Creature. Zoog.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275932, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "db8153" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.172232, - "posY": 1.94074166, - "posZ": 31.5613937, - "rotX": 359.7404, - "rotY": 269.707947, - "rotZ": 356.947235, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Stealthy Zoog", - "Description": "Creature. Zoog.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275932, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "27dc33" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.29805, - "posY": 1.84863257, - "posZ": 31.5060158, - "rotX": 359.871979, - "rotY": 269.793152, - "rotZ": 356.9523, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Law of 'Ygiroth (Chaos)", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275912, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fc58cb" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.19534, - "posY": 1.7781316, - "posZ": 31.6812077, - "rotX": 359.9493, - "rotY": 270.1191, - "rotZ": 356.545166, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hunted by Corsairs", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275929, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4f56f1" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.577619, - "posY": 1.79761493, - "posZ": 32.03079, - "rotX": 359.902771, - "rotY": 269.943176, - "rotZ": 357.5296, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Inconspicuous Zoog", - "Description": "Creature. Zoog.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275933, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d1c795" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.341299, - "posY": 1.76366591, - "posZ": 32.1722832, - "rotX": 359.099731, - "rotY": 269.9903, - "rotZ": 359.105042, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Furtive Zoog", - "Description": "Creature. Zoog.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275931, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fb76f8" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.105017, - "posY": 1.76853013, - "posZ": 31.95703, - "rotX": 359.90802, - "rotY": 269.7754, - "rotZ": 356.3118, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Prismatic Phenomenon", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275922, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c9cb0f" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.597225, - "posY": 1.99104929, - "posZ": 21.85384, - "rotX": 359.8399, - "rotY": 270.006683, - "rotZ": 357.425751, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wondrous Lands", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275245, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5ad5e0" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.43821573, - "posY": 1.7685262, - "posZ": 31.8188763, - "rotX": 359.941, - "rotY": 269.647675, - "rotZ": 356.452148, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispers of Hypnos", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275915, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a3ada0" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.20290136, - "posY": 1.83644211, - "posZ": 31.8489876, - "rotX": 359.920715, - "rotY": 269.767731, - "rotZ": 357.605316, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Law of 'Ygiroth (Pandemonium)", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275914, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bf7d6b" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.07092571, - "posY": 1.79056633, - "posZ": 31.77091, - "rotX": 359.9197, - "rotY": 270.0309, - "rotZ": 0.0158037879, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Furtive Zoog", - "Description": "Creature. Zoog.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275931, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4a2c73" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.08372736, - "posY": 1.80981278, - "posZ": 31.771904, - "rotX": 359.922119, - "rotY": 269.89624, - "rotZ": 357.844055, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Prismatic Phenomenon", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275922, - "SidewaysCard": false, - "CustomDeck": { - "2759": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4b23ff" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.59687662, - "posY": 1.85007334, - "posZ": 21.9502544, - "rotX": 359.934662, - "rotY": 269.976685, - "rotZ": 358.089417, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wondrous Lands", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275245, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ee06eb" - } - ], - "GUID": "269d43" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.7248, - "posY": 1.66397738, - "posZ": 0.373300433, - "rotX": 0.01683533, - "rotY": 179.999741, - "rotZ": 0.0802579448, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agenda Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 275312, - 275311 - ], - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -3.74359059, - "posY": 1.57216394, - "posZ": 46.6948051, - "rotX": 0.0174726825, - "rotY": 179.998779, - "rotZ": 0.0782274157, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agents of Outer Gods", - "Description": "Agenda 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275312, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a6ecc6" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.60695219, - "posY": 1.71743131, - "posZ": 46.6658745, - "rotX": 0.0156136546, - "rotY": 179.9985, - "rotZ": 0.06568816, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Journey Across the Dreamlands", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275311, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "cbc59e" - } - ], - "GUID": "7c8ea4" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.68859982, - "posY": 1.65432537, - "posZ": -5.04850054, - "rotX": 0.0168349724, - "rotY": 180.000168, - "rotZ": 0.08025766, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 275317, - 275316, - 275315, - 275314, - 275313 - ], - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -13.11061, - "posY": 1.58402824, - "posZ": 42.85089, - "rotX": 0.0178025123, - "rotY": 179.999786, - "rotZ": 0.0741316751, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The King's Decree", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275317, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7d8966" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.65023, - "posY": 1.72878861, - "posZ": 42.7050934, - "rotX": 0.0175244045, - "rotY": 180.000031, - "rotZ": 0.064095445, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Seek Out the Night", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275316, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d78fdd" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.9636154, - "posY": 1.74668288, - "posZ": 42.86624, - "rotX": 0.0148617644, - "rotY": 180.0009, - "rotZ": 0.08124309, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Doom That Came Before", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275315, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c65b29" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.7072363, - "posY": 1.73268008, - "posZ": 43.0748558, - "rotX": 0.0136243543, - "rotY": 180.001038, - "rotZ": 0.0829606, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Isle of Oriab", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275314, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "20f212" - }, - { - "Name": "Card", - "Transform": { - "posX": -13.3660841, - "posY": 1.73149014, - "posZ": 42.6055, - "rotX": 0.0154368114, - "rotY": 180.000336, - "rotZ": 0.07339504, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Kingdom of the Skai", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275313, - "SidewaysCard": true, - "CustomDeck": { - "2753": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "cbc59e" - } - ], - "GUID": "d87cb2" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.956, - "posY": 1.65564811, - "posZ": -10.4413013, - "rotX": 359.919739, - "rotY": 269.999634, - "rotZ": 0.0168415941, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "The Search for Kadath", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 275525, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "04c6b1" + "GUID": "a45247" }, { "Name": "Custom_Tile", "Transform": { - "posX": -3.67655945, - "posY": 1.58225548, - "posZ": -14.8239346, + "posX": -3.6434, + "posY": 1.58231843, + "posZ": -14.4516029, "rotX": 359.919739, - "rotY": 270.030518, - "rotZ": 0.0167951863, + "rotY": 270.030579, + "rotZ": 0.016794974, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, - "Nickname": "The Search For Kadath", + "Nickname": "Dark Side of the Moon", "Description": "click to set chaos token difficulty", "GMNotes": "", "ColorDiffuse": { @@ -1036536,6 +1043189,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1036554,164 +1043209,20 @@ "Stretch": true } }, - "XmlUI": "", - "LuaScript": "name = 'The Search For Kadath'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", + "LuaScript": "name = 'Dark Side of the Moon'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", - "GUID": "bbb70a" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.3268976, - "posY": 1.67370689, - "posZ": 11.2203989, - "rotX": 359.9201, - "rotY": 270.002563, - "rotZ": 0.0168726575, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Pack of Vooniths", - "Description": "Creature. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275242, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "83569f" - }, - { - "Name": "Card", - "Transform": { - "posX": -12.262, - "posY": 1.67290413, - "posZ": 8.801399, - "rotX": 359.9201, - "rotY": 270.000061, - "rotZ": 0.0168763548, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Virgil Gray", - "Description": "Writer of Strange Tales", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275235, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e93f00" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.6765, - "posY": 1.68622041, - "posZ": -0.03000035, - "rotX": 359.9201, - "rotY": 269.9958, - "rotZ": 0.0168822147, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ulthar", - "Description": "Skai. City.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275526, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d74877" + "GUID": "aa8d82" }, { "Name": "Custom_Tile", "Transform": { - "posX": -27.1175, - "posY": 1.61933243, - "posZ": 0.06329975, - "rotX": 359.9201, - "rotY": 270.0033, - "rotZ": 0.016895365, + "posX": -34.1049, + "posY": 1.62802434, + "posZ": -3.50860023, + "rotX": 359.93158, + "rotY": 315.0172, + "rotZ": 359.9554, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 @@ -1036728,6 +1043239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1036746,9 +1043259,4887 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", + "GUID": "b3cb48", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.2242, + "posY": 1.62478256, + "posZ": 3.86000013, + "rotX": 0.016876705, + "rotY": 179.99646, + "rotZ": 0.0799383745, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b6f2f1", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.72480679, + "posY": 1.62076056, + "posZ": 0.373302132, + "rotX": 0.0168082025, + "rotY": 180.019623, + "rotZ": 0.080261685, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 448225, + 448224, + 448223 + ], + "CustomDeck": { + "4482": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -13.9430313, + "posY": 1.66886377, + "posZ": -12.760006, + "rotX": 0.0172067322, + "rotY": 180.033279, + "rotZ": 0.07749708, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Are Upon You!", + "Description": "Agenda 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 448225, + "SidewaysCard": true, + "CustomDeck": { + "4482": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d99919" + }, + { + "Name": "Card", + "Transform": { + "posX": -8.022227, + "posY": 1.66043532, + "posZ": -13.5207338, + "rotX": 0.01686454, + "rotY": 180.019638, + "rotZ": 0.07910768, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Alarm Is Raised", + "Description": "Agenda 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 448224, + "SidewaysCard": true, + "CustomDeck": { + "4482": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "582d94" + }, + { + "Name": "Card", + "Transform": { + "posX": -8.29579449, + "posY": 1.894331, + "posZ": -13.5412006, + "rotX": 2.69618034, + "rotY": 180.022583, + "rotZ": 0.0773316547, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Silent Stirring", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 448223, + "SidewaysCard": true, + "CustomDeck": { + "4482": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5da9b8" + } + ], + "GUID": "bf5bd8" + }, + { + "Name": "Card", + "Transform": { + "posX": -36.7731171, + "posY": 1.6486119, + "posZ": 7.570004, + "rotX": 359.9201, + "rotY": 270.010559, + "rotZ": 0.0168574527, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Temple of the Moon Lizard", + "Description": "Surface.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 448304, + "SidewaysCard": false, + "CustomDeck": { + "4483": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "cb15b1" + }, + { + "Name": "Card", + "Transform": { + "posX": -36.7732162, + "posY": 1.64637411, + "posZ": -0.0299973525, + "rotX": 359.9201, + "rotY": 270.0105, + "rotZ": 0.01685759, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Moon-Forest", + "Description": "Surface. Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 448305, + "SidewaysCard": false, + "CustomDeck": { + "4483": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "cdf29c" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -33.7733, + "posY": 1.63077247, + "posZ": 7.395, + "rotX": 0.0798935145, + "rotY": 89.9972, + "rotZ": 359.9831, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d08fc6", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + } + ], + "GUID": "0fad66", + "AttachedDecals": [ + { + "Transform": { + "posX": -0.0021877822, + "posY": -0.08963572, + "posZ": -0.00288731651, + "rotX": 270.0, + "rotY": 359.869568, + "rotZ": 0.0, + "scaleX": 2.00000215, + "scaleY": 2.00000238, + "scaleZ": 2.00000262 + }, + "CustomDecal": { + "Name": "dunwich_back", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", + "Size": 7.4 + } + } + ] + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 12.2505016, + "posY": 1.45853734, + "posZ": -20.0137043, + "rotX": 359.920135, + "rotY": 270.0004, + "rotZ": 0.0168735925, + "scaleX": 2.21, + "scaleY": 0.46, + "scaleZ": 2.42 + }, + "Nickname": "4-A: Where the Gods Dwell", + "Description": "The Dream Eaters", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/781876499695136018/EF2515B5569697B81A425766F80E14F70B48AD93/", + "NormalURL": "", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CustomShader": { + "SpecularColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "SpecularIntensity": 0.0, + "SpecularSharpness": 2.0, + "FresnelStrength": 0.0 + }, + "CastShadows": true + }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", + "LuaScriptState": "{\"ml\":{\"23f5d1\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"29c6d1\":{\"lock\":false,\"pos\":{\"x\":-26.976,\"y\":1.6191,\"z\":-0.0342},\"rot\":{\"x\":0.0799,\"y\":90.0006,\"z\":359.9831}},\"364766\":{\"lock\":false,\"pos\":{\"x\":-33.4596,\"y\":1.6282,\"z\":-0.0121},\"rot\":{\"x\":0.0799,\"y\":90.0006,\"z\":359.9831}},\"3b8e56\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0013,\"z\":0.0169}},\"3e86c2\":{\"lock\":false,\"pos\":{\"x\":-3.5977,\"y\":1.5821,\"z\":-14.9872},\"rot\":{\"x\":359.9197,\"y\":269.978,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6317,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180.0141,\"z\":0.0799}},\"72c773\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.0275,\"z\":0.0168}},\"93e081\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.7022,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0081,\"z\":0.0169}},\"c08e12\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"d17e52\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0015,\"z\":0.0169}},\"d7defe\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180.0144,\"z\":0.0799}},\"da60f6\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7557,\"z\":5.7567},\"rot\":{\"x\":359.9197,\"y\":269.982,\"z\":180.0168}},\"e549c9\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6543,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":179.9989,\"z\":0.0803}},\"ecaabf\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0013,\"z\":0.0169}},\"f003bb\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9991,\"z\":0.0168}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Deck", + "Transform": { + "posX": -3.92748618, + "posY": 1.75572109, + "posZ": 5.75669432, + "rotX": 359.919739, + "rotY": 269.982, + "rotZ": 180.016846, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 234635, + 274119, + 231722, + 234634, + 231722, + 231722, + 231724, + 234633, + 274120, + 234636, + 274119, + 274118, + 274115, + 234627, + 231723, + 274115, + 234626, + 274115, + 274120, + 274113, + 234627, + 231724, + 274112, + 234627, + 234636, + 274118, + 274114 + ], + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2317": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 23.3701916, + "posY": 1.93367982, + "posZ": -4.36128855, + "rotX": 359.921326, + "rotY": 270.0052, + "rotZ": 180.000824, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Restless Journey (Lies)", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234635, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4b40bb" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.10714579, + "posY": 1.85911262, + "posZ": 15.1832485, + "rotX": 359.923279, + "rotY": 270.0094, + "rotZ": 180.0092, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Somniphobia", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274119, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e64ec2" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.3297215, + "posY": 1.77588809, + "posZ": 15.9645157, + "rotX": 0.07387834, + "rotY": 269.998474, + "rotZ": 359.992645, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Acolyte", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231722, + "SidewaysCard": false, + "CustomDeck": { + "2317": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4911f2" + }, + { + "Name": "Card", + "Transform": { + "posX": 24.822422, + "posY": 1.92204416, + "posZ": -4.675362, + "rotX": 359.9141, + "rotY": 269.997925, + "rotZ": 180.008926, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Restless Journey (Hardship)", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234634, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9cc2c5" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.92770767, + "posY": 1.97732818, + "posZ": 5.75714731, + "rotX": 359.9905, + "rotY": 269.9906, + "rotZ": 180.041077, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Acolyte", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231722, + "SidewaysCard": false, + "CustomDeck": { + "2317": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ab3719" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.3295956, + "posY": 1.62976587, + "posZ": 15.9645061, + "rotX": 0.0716057643, + "rotY": 270.000061, + "rotZ": 359.982727, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Acolyte", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231722, + "SidewaysCard": false, + "CustomDeck": { + "2317": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "50fdc5" + }, + { + "Name": "Card", + "Transform": { + "posX": -14.9937792, + "posY": 1.57623422, + "posZ": 7.191085, + "rotX": 359.920227, + "rotY": 270.005066, + "rotZ": 0.01624975, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysterious Chanting", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231724, + "SidewaysCard": false, + "CustomDeck": { + "2317": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d63054" + }, + { + "Name": "Card", + "Transform": { + "posX": 24.3455772, + "posY": 1.9130013, + "posZ": -4.31537247, + "rotX": 359.942444, + "rotY": 270.0401, + "rotZ": 179.9737, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Restless Journey (Fallacy)", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234633, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8b17a1" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.43135548, + "posY": 1.48793566, + "posZ": 50.2434, + "rotX": 0.0139066791, + "rotY": 269.999817, + "rotZ": -0.00134133862, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Deeper Slumber", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274120, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c9a81c" + }, + { + "Name": "Card", + "Transform": { + "posX": 23.94412, + "posY": 1.95221329, + "posZ": -4.00885868, + "rotX": 359.9371, + "rotY": 270.019684, + "rotZ": 179.997742, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Abandoned by the Gods", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234636, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d4845c" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.363955, + "posY": 1.4883889, + "posZ": 46.8831024, + "rotX": 0.0292372759, + "rotY": 269.999878, + "rotZ": 0.009698411, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Somniphobia", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274119, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bdd705" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.55991268, + "posY": 1.3354677, + "posZ": 50.66423, + "rotX": 0.0210230164, + "rotY": 269.999969, + "rotZ": 0.015651783, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dreamer's Curse", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274118, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8af23c" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.7077415, + "posY": 1.49358606, + "posZ": 64.2276154, + "rotX": 0.0181054082, + "rotY": 269.999969, + "rotZ": -0.000729266962, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers of Hypnos", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274115, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ce95a3" + }, + { + "Name": "Card", + "Transform": { + "posX": 4.646768, + "posY": 1.718759, + "posZ": 10.0789881, + "rotX": 359.9391, + "rotY": 270.038574, + "rotZ": 180.006317, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Liar with No Face", + "Description": "Monster. Cultist. Servitor.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234627, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0eece1" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.1335211, + "posY": 1.7306242, + "posZ": 15.1695614, + "rotX": 359.933441, + "rotY": 269.998932, + "rotZ": 180.028931, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wizard of the Order", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231723, + "SidewaysCard": false, + "CustomDeck": { + "2317": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d36612" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.70772433, + "posY": 1.50589979, + "posZ": 64.22764, + "rotX": 0.0247761626, + "rotY": 269.9997, + "rotZ": 0.0151432147, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers of Hypnos", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274115, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6476cc" + }, + { + "Name": "Card", + "Transform": { + "posX": 4.822001, + "posY": 1.55233145, + "posZ": 10.2153893, + "rotX": 359.920135, + "rotY": 270.001129, + "rotZ": 180.016861, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dhole of the Wastes", + "Description": "Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234626, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f34504" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.70772815, + "posY": 1.3390168, + "posZ": 64.22763, + "rotX": 0.0210467484, + "rotY": 270.0, + "rotZ": 0.0153855, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers of Hypnos", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274115, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a3ada0" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.64724255, + "posY": 1.33347023, + "posZ": 50.15231, + "rotX": 0.021022873, + "rotY": 269.999847, + "rotZ": 0.0156522952, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Deeper Slumber", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274120, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "07cb83" + }, + { + "Name": "Card", + "Transform": { + "posX": -1.349257, + "posY": 1.33509922, + "posZ": 56.99563, + "rotX": 0.04734984, + "rotY": 270.0003, + "rotZ": 359.83844, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Law of 'Ygiroth (Discord)", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274113, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "48601c" + }, + { + "Name": "Card", + "Transform": { + "posX": 4.83890724, + "posY": 1.7200079, + "posZ": 10.2753181, + "rotX": -1.627506E-05, + "rotY": 270.000183, + "rotZ": 180.666824, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Liar with No Face", + "Description": "Monster. Cultist. Servitor.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234627, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "82b246" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.1765862, + "posY": 1.7388649, + "posZ": 7.12856245, + "rotX": 359.9205, + "rotY": 270.005066, + "rotZ": 0.011837706, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysterious Chanting", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231724, + "SidewaysCard": false, + "CustomDeck": { + "2317": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b347d1" + }, + { + "Name": "Card", + "Transform": { + "posX": -0.8192207, + "posY": 1.47842848, + "posZ": 56.2326355, + "rotX": 359.92807, + "rotY": 269.996246, + "rotZ": 0.356809825, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Law of 'Ygiroth (Chaos)", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274112, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fc58cb" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.92658448, + "posY": 1.92084217, + "posZ": 5.760205, + "rotX": 359.227783, + "rotY": 269.9492, + "rotZ": 177.46312, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Liar with No Face", + "Description": "Monster. Cultist. Servitor.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234627, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "573f55" + }, + { + "Name": "Card", + "Transform": { + "posX": 23.7621918, + "posY": 1.94272566, + "posZ": -4.18574238, + "rotX": 359.9617, + "rotY": 269.975922, + "rotZ": 180.0185, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Abandoned by the Gods", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234636, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d4845c" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.34402561, + "posY": 1.48993313, + "posZ": 50.7553253, + "rotX": 0.0139070377, + "rotY": 269.999969, + "rotZ": -0.00134107959, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dreamer's Curse", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274118, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "dd39c6" + }, + { + "Name": "Card", + "Transform": { + "posX": -0.465582937, + "posY": 1.62316334, + "posZ": 55.9808464, + "rotX": 359.928467, + "rotY": 269.997772, + "rotZ": 0.4196703, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Law of 'Ygiroth (Pandemonium)", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274114, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bf7d6b" + } + ], + "GUID": "da60f6" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.72475362, + "posY": 1.65664124, + "posZ": 0.373331547, + "rotX": 0.0168350041, + "rotY": 180.0, + "rotZ": 0.08025765, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agenda Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 234538, + 234537, + 234536 + ], + "CustomDeck": { + "2345": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 1.5129416, + "posY": 1.553389, + "posZ": 7.755346, + "rotX": 0.0184581224, + "rotY": 178.9231, + "rotZ": 0.0790349543, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Chaos Incarnate", + "Description": "Agenda 3 ", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234538, + "SidewaysCard": true, + "CustomDeck": { + "2345": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d451c6" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.56102264, + "posY": 1.70188582, + "posZ": 7.50367737, + "rotX": 0.0187433437, + "rotY": 180.004852, + "rotZ": 0.07948507, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Shape of Chaos", + "Description": "Agenda 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234537, + "SidewaysCard": true, + "CustomDeck": { + "2345": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bdb299" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.75776863, + "posY": 1.71890879, + "posZ": 7.4334774, + "rotX": 0.01735614, + "rotY": 179.9811, + "rotZ": 0.0797196552, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Eye of Chaos", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234536, + "SidewaysCard": true, + "CustomDeck": { + "2345": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "75881e" + } + ], + "GUID": "23f5d1" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.68848658, + "posY": 1.654325, + "posZ": -5.04855156, + "rotX": 0.01683662, + "rotY": 179.998886, + "rotZ": 0.08025731, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 234543, + 234542, + 234541, + 234540, + 234539 + ], + "CustomDeck": { + "2345": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -2.398561, + "posY": 1.71315813, + "posZ": 11.8457737, + "rotX": 0.0138844633, + "rotY": 180.000687, + "rotZ": 180.070251, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Dream-Eaters", + "Description": "Act 5 ", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234543, + "SidewaysCard": true, + "CustomDeck": { + "2345": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0dcc95" + }, + { + "Name": "Card", + "Transform": { + "posX": -1.73794353, + "posY": 1.71442127, + "posZ": 12.1403866, + "rotX": 0.0123398965, + "rotY": 179.998535, + "rotZ": 180.059921, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Truth and Lies", + "Description": "Act 4", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234542, + "SidewaysCard": true, + "CustomDeck": { + "2345": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d2e4db" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.21234441, + "posY": 1.72920561, + "posZ": 11.8906612, + "rotX": 0.0131380754, + "rotY": 180.000061, + "rotZ": 180.093063, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Beyond Dreams", + "Description": "Act 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234541, + "SidewaysCard": true, + "CustomDeck": { + "2345": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3de681" + }, + { + "Name": "Card", + "Transform": { + "posX": -1.64583027, + "posY": 1.711319, + "posZ": 12.1371679, + "rotX": 0.00669722445, + "rotY": 179.986816, + "rotZ": 180.095688, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Thing in the Robes", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234540, + "SidewaysCard": true, + "CustomDeck": { + "2345": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8b429f" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.20941448, + "posY": 1.71010542, + "posZ": 12.2677374, + "rotX": 0.0132873552, + "rotY": 179.999908, + "rotZ": 0.0633311346, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Journey Through the Cold Wastes", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234539, + "SidewaysCard": true, + "CustomDeck": { + "2345": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "75881e" + } + ], + "GUID": "e549c9" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.95588636, + "posY": 1.655648, + "posZ": -10.4411888, + "rotX": 359.919739, + "rotY": 269.9991, + "rotZ": 0.0168422163, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "Where the Gods Dwell", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 234724, + "SidewaysCard": false, + "CustomDeck": { + "2347": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f003bb" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.59765649, + "posY": 1.58209693, + "posZ": -14.98716, + "rotX": 359.919739, + "rotY": 269.977966, + "rotZ": 0.01686866, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "Point of No Return", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'Where the Gods Dwell'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3e86c2" + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 1.6963532, + "posY": 1.558317, + "posZ": 14.2788572, + "rotX": 359.955139, + "rotY": 224.998, + "rotZ": 0.0686737448, + "scaleX": 2.0, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "Nickname": "Set-aside", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.02148666, + "g": 0.00100758043, + "b": 0.02148666 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://paste.ee/r/ylQzQ", + "DiffuseURL": "http://i.imgur.com/yVhOLYs.jpg", + "NormalURL": "http://i.imgur.com/f1ogHo6.jpg", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 1, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -13.6929073, + "posY": 3.63578987, + "posZ": 15.9609556, + "rotX": 359.925476, + "rotY": 270.021118, + "rotZ": 0.02446339, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Crawling Mist", + "Description": "Monster. Avatar.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274111, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "aa76f7" + }, + { + "Name": "Deck", + "Transform": { + "posX": -14.6439238, + "posY": 3.64394832, + "posZ": 15.6710043, + "rotX": 359.925018, + "rotY": 269.951935, + "rotZ": 0.040865615, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Myriad Forms", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 234632, + 234632 + ], + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 3.32917333, + "posY": 1.55092871, + "posZ": 8.001244, + "rotX": 359.9181, + "rotY": 270.30838, + "rotZ": 0.0161751453, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Myriad Forms", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234632, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1cb90d" + }, + { + "Name": "Card", + "Transform": { + "posX": 3.34916377, + "posY": 1.70044243, + "posZ": 8.128719, + "rotX": 359.924255, + "rotY": 269.985535, + "rotZ": 0.05793682, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Myriad Forms", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234632, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b34663" + } + ], + "GUID": "8ffd3f" + }, + { + "Name": "Deck", + "Transform": { + "posX": -14.8206491, + "posY": 3.6349225, + "posZ": 16.052515, + "rotX": 359.914856, + "rotY": 270.001343, + "rotZ": 0.0135078868, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispering Chaos", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 234631, + 234630, + 234629, + 234628 + ], + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -1.97101557, + "posY": 1.71412408, + "posZ": 7.06639051, + "rotX": 359.937531, + "rotY": 270.000946, + "rotZ": 180.035278, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispering Chaos (West)", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234631, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5fb187" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.4170475, + "posY": 1.7283392, + "posZ": 6.5700264, + "rotX": 359.9341, + "rotY": 269.993225, + "rotZ": 180.032532, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispering Chaos (South)", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234630, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b8a1e4" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.44740915, + "posY": 1.71045923, + "posZ": 6.740841, + "rotX": 359.931427, + "rotY": 270.0095, + "rotZ": 180.011017, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispering Chaos (East)", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234629, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bad74a" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.3450408, + "posY": 1.561251, + "posZ": 6.693541, + "rotX": 359.920776, + "rotY": 270.0068, + "rotZ": 180.016266, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispering Chaos (North)", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234628, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6e73af" + } + ], + "GUID": "6bea62" + }, + { + "Name": "Deck", + "Transform": { + "posX": -13.6202126, + "posY": 3.6342957, + "posZ": 16.078228, + "rotX": 359.92395, + "rotY": 269.967834, + "rotZ": 0.0172034018, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nyarlathoteps", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 234624, + 234623, + 234622, + 234621, + 234620 + ], + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 1.59032273, + "posY": 1.71114, + "posZ": 10.1137714, + "rotX": 359.9768, + "rotY": 269.999084, + "rotZ": 180.141754, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nyarlathotep", + "Description": "Stalker Among the Stars", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234624, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "972fec" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.81655526, + "posY": 1.74129629, + "posZ": 10.4229708, + "rotX": 359.92392, + "rotY": 270.01947, + "rotZ": 181.771057, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nyarlathotep", + "Description": "God of a Thousand Forms", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234623, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d721c2" + }, + { + "Name": "Card", + "Transform": { + "posX": 2.28367186, + "posY": 1.75666821, + "posZ": 10.5099068, + "rotX": 359.9914, + "rotY": 270.0055, + "rotZ": 181.717712, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nyarlathotep", + "Description": "Messenger of the Outer Gods", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234622, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0f7c12" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.51166916, + "posY": 1.705699, + "posZ": 10.2204876, + "rotX": 359.926361, + "rotY": 270.014221, + "rotZ": 180.007156, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nyarlathotep", + "Description": "The Faceless Whisperer", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234621, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8be848" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.88532555, + "posY": 1.55641615, + "posZ": 10.1746874, + "rotX": 359.915924, + "rotY": 270.004852, + "rotZ": 180.015762, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nyarlathotep", + "Description": "The Crawling Chaos", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234620, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8b17a1" + } + ], + "GUID": "957ea3" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.5584927, + "posY": 3.63897514, + "posZ": 16.35194, + "rotX": 359.93277, + "rotY": 269.9998, + "rotZ": 0.0170828868, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "High Priest Not to Be Described", + "Description": "Agent of the Other Gods", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234625, + "SidewaysCard": false, + "CustomDeck": { + "2346": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8b17a1" + }, + { + "Name": "Deck", + "Transform": { + "posX": -14.9823351, + "posY": 3.63792014, + "posZ": 16.0282364, + "rotX": 359.922119, + "rotY": 270.004578, + "rotZ": 0.0167148858, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Forsaken Towers", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 234735, + 234734, + 234733, + 234732, + 234731, + 234730 + ], + "CustomDeck": { + "2347": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 2.02258015, + "posY": 1.74255073, + "posZ": 11.2991524, + "rotX": -1.55280086E-05, + "rotY": 270.0002, + "rotZ": 181.4322, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Forsaken Tower", + "Description": "Kadath.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 234735, + "SidewaysCard": false, + "CustomDeck": { + "2347": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "11687a" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.75518823, + "posY": 1.71161091, + "posZ": 11.5014286, + "rotX": 359.9759, + "rotY": 270.000458, + "rotZ": 180.14238, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Forsaken Tower", + "Description": "Kadath.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 234734, + "SidewaysCard": false, + "CustomDeck": { + "2347": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d749ed" + }, + { + "Name": "Card", + "Transform": { + "posX": 2.0772686, + "posY": 1.70882714, + "posZ": 11.3180952, + "rotX": 359.920532, + "rotY": 269.9964, + "rotZ": 179.991867, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Forsaken Tower", + "Description": "Kadath.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 234733, + "SidewaysCard": false, + "CustomDeck": { + "2347": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "983fd2" + }, + { + "Name": "Card", + "Transform": { + "posX": 2.016233, + "posY": 1.74967539, + "posZ": 11.5280228, + "rotX": -9.711675E-06, + "rotY": 270.000122, + "rotZ": 181.0138, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Forsaken Tower", + "Description": "Kadath.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 234732, + "SidewaysCard": false, + "CustomDeck": { + "2347": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "450779" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.57203829, + "posY": 1.743926, + "posZ": 11.5793247, + "rotX": 359.930817, + "rotY": 270.042236, + "rotZ": 182.003464, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Forsaken Tower", + "Description": "Kadath.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 234731, + "SidewaysCard": false, + "CustomDeck": { + "2347": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "13f5e3" + }, + { + "Name": "Card", + "Transform": { + "posX": -19.2113914, + "posY": 1.7386744, + "posZ": 18.6668644, + "rotX": 359.9396, + "rotY": 270.0362, + "rotZ": 0.002979445, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Forsaken Tower", + "Description": "Kadath.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 234730, + "SidewaysCard": false, + "CustomDeck": { + "2347": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3c7586" + } + ], + "GUID": "cdcb95" + } + ], + "PhysicsMaterial": { + "StaticFriction": 0.6, + "DynamicFriction": 0.6, + "Bounciness": 0.0, + "FrictionCombine": 0, + "BounceCombine": 0 + }, + "Rigidbody": { + "Mass": 1.375, + "Drag": 5.0, + "AngularDrag": 5.0, + "UseGravity": true + }, + "GUID": "c08e12" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.676548, + "posY": 1.68622041, + "posZ": -0.0299953, + "rotX": 359.9201, + "rotY": 270.0015, + "rotZ": 0.0168742519, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Plateau of Leng", + "Description": "Leng.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 234725, + "SidewaysCard": false, + "CustomDeck": { + "2347": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d17e52" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -26.976, + "posY": 1.61910665, + "posZ": -0.0342008136, + "rotX": 0.07989463, + "rotY": 90.00057, + "rotZ": 359.9831, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "29c6d1", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.2242, + "posY": 1.62478244, + "posZ": 3.86000133, + "rotX": 0.0168518238, + "rotY": 180.014359, + "rotZ": 0.07994374, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d7defe", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2241764, + "posY": 1.69758856, + "posZ": 7.569973, + "rotX": 359.9201, + "rotY": 270.001343, + "rotZ": 0.0168742649, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Monastery of Leng", + "Description": "Leng.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 234727, + "SidewaysCard": false, + "CustomDeck": { + "2347": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3b8e56" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2241726, + "posY": 1.69535065, + "posZ": -0.0301172044, + "rotX": 359.9201, + "rotY": 270.027466, + "rotZ": 0.0168379955, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cold Wastes", + "Description": "Leng.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 234726, + "SidewaysCard": false, + "CustomDeck": { + "2347": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "72c773" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -33.4596, + "posY": 1.628154, + "posZ": -0.0121008549, + "rotX": 0.07989458, + "rotY": 90.00059, + "rotZ": 359.9831, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "364766", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -36.77311, + "posY": 1.70448279, + "posZ": -0.03002694, + "rotX": 359.9201, + "rotY": 270.001282, + "rotZ": 0.0168744959, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Onyx Gates", + "Description": "Leng. Kadath.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 234728, + "SidewaysCard": false, + "CustomDeck": { + "2347": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ecaabf" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -36.7732, + "posY": 1.63165021, + "posZ": -3.83000016, + "rotX": 0.0168522038, + "rotY": 180.014084, + "rotZ": 0.07994394, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -1036776,6 +1048167,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1036794,9 +1048187,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1036824,6 +1048217,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1036842,9 +1048237,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1036852,66 +1048247,18 @@ { "Name": "Card", "Transform": { - "posX": -30.2207, - "posY": 1.6960696, - "posZ": 2.42799973, + "posX": -36.7732849, + "posY": 1.70222449, + "posZ": -7.699998, "rotX": 359.9201, - "rotY": 270.000427, - "rotZ": 0.0168756526, + "rotY": 270.008057, + "rotZ": 0.01686508, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Pack of Vooniths", - "Description": "Creature. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": false, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275242, - "SidewaysCard": false, - "CustomDeck": { - "2752": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "02da4e" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2242, - "posY": 1.69535065, - "posZ": -0.03000038, - "rotX": 359.9201, - "rotY": 269.984955, - "rotZ": 0.0168971121, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Skai River", - "Description": "Skai. City.", + "Nickname": "The Onyx Castle", + "Description": "Kadath.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1036922,225 +1048269,34 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, - "CardID": 275527, + "CardID": 234729, "SidewaysCard": false, "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "2347": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "247820" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2382, - "posY": 1.62253785, - "posZ": -3.82929969, - "rotX": 0.0174597874, - "rotY": 179.578064, - "rotZ": 0.07980933, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "175627", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2243, - "posY": 1.69309235, - "posZ": -7.70000124, - "rotX": 359.9201, - "rotY": 270.001526, - "rotZ": 0.0168739017, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dylath-Leen", - "Description": "Skai. City. Port.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 275528, - "SidewaysCard": false, - "CustomDeck": { - "2755": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "972cb1" + "GUID": "93e081" } ], - "GUID": "7b07ca", + "GUID": "185096", "AttachedDecals": [ { "Transform": { @@ -1037165,12 +1048321,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 12.249979, - "posY": 1.4656055, - "posZ": 3.98635459, + "posX": 12.2500038, + "posY": 1.46560538, + "posZ": 3.98639965, "rotX": 359.920135, - "rotY": 270.000153, - "rotZ": 0.0168737378, + "rotY": 269.999969, + "rotZ": 0.0168727636, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 @@ -1037187,6 +1048343,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037215,9 +1048373,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"156254\":{\"lock\":false,\"pos\":{\"x\":-26.6043,\"y\":1.6174,\"z\":-4.1736},\"rot\":{\"x\":0.0685,\"y\":134.9759,\"z\":0.0445}},\"23b0bf\":{\"lock\":false,\"pos\":{\"x\":-33.5581,\"y\":1.6283,\"z\":0.0013},\"rot\":{\"x\":0.0799,\"y\":90.0059,\"z\":359.9831}},\"27c4de\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180.0112,\"z\":0.0799}},\"285100\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"31cb94\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.793,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"491963\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6317,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180.0113,\"z\":0.0799}},\"4a9058\":{\"lock\":false,\"pos\":{\"x\":-43.37,\"y\":1.7137,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"4e1b15\":{\"lock\":false,\"pos\":{\"x\":-26.6171,\"y\":1.6196,\"z\":3.485},\"rot\":{\"x\":359.9554,\"y\":224.9924,\"z\":0.0684}},\"55059a\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.7067,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"57c9a1\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"5c62e6\":{\"lock\":false,\"pos\":{\"x\":1.6969,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-40.0476,\"y\":1.6373,\"z\":-0.0025},\"rot\":{\"x\":359.9201,\"y\":270.0094,\"z\":0.0169}},\"7ae3b9\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0083,\"z\":0.0803}},\"847080\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"a87562\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":0.0169}},\"b53295\":{\"lock\":false,\"pos\":{\"x\":-3.7,\"y\":1.5824,\"z\":-14.4878},\"rot\":{\"x\":359.9197,\"y\":270.0309,\"z\":0.0168}},\"c1375a\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"c93906\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.7022,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"efa150\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Model_Bag", @@ -1037244,6 +1048402,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037262,9 +1048422,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -1037291,6 +1048451,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037313,12 +1048475,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1037345,6 +1048508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037360,12 +1048525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "26c89b" }, { @@ -1037393,6 +1048559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037408,12 +1048576,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a99f05" }, { @@ -1037441,6 +1048610,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037456,12 +1048627,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "df1a40" }, { @@ -1037489,6 +1048661,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037504,12 +1048678,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "192407" }, { @@ -1037537,6 +1048712,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037552,12 +1048729,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e75e96" }, { @@ -1037585,6 +1048763,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037600,12 +1048780,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e02af" } ], @@ -1037636,6 +1048817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037651,12 +1048834,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "191379" }, { @@ -1037684,6 +1048868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037699,12 +1048885,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "10faf9" }, { @@ -1037732,6 +1048919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037747,12 +1048936,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61fd07" }, { @@ -1037780,6 +1048970,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037800,12 +1048992,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1037832,6 +1049025,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037847,12 +1049042,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "320842" }, { @@ -1037880,6 +1049076,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037895,12 +1049093,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d96187" }, { @@ -1037928,6 +1049127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037943,12 +1049144,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c83d2b" }, { @@ -1037976,6 +1049178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1037991,12 +1049195,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9032bd" } ], @@ -1038043,6 +1049248,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038093,7 +1049300,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "121": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -1038101,7 +1049309,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", @@ -1038109,7 +1049318,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2783": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", @@ -1038117,12 +1049327,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1038149,6 +1049360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038164,12 +1049377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "739826" }, { @@ -1038197,6 +1049411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038212,12 +1049428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a50f4" }, { @@ -1038245,6 +1049462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038260,12 +1049479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c646" }, { @@ -1038293,6 +1049513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038308,12 +1049530,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d7652" }, { @@ -1038341,6 +1049564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038356,12 +1049581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "12d9fc" }, { @@ -1038389,6 +1049615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038404,12 +1049632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5fef28" }, { @@ -1038437,6 +1049666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038452,12 +1049683,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e08b3" }, { @@ -1038485,6 +1049717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038500,12 +1049734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "46cd53" }, { @@ -1038533,6 +1049768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038548,12 +1049785,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56e5db" }, { @@ -1038581,6 +1049819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038596,12 +1049836,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7381cd" }, { @@ -1038629,6 +1049870,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038644,12 +1049887,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbc9d1" }, { @@ -1038677,6 +1049921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038692,12 +1049938,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1340ff" }, { @@ -1038725,6 +1049972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038740,12 +1049989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9449d7" }, { @@ -1038773,6 +1050023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038788,12 +1050040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb311c" }, { @@ -1038821,6 +1050074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038836,12 +1050091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b78c3b" }, { @@ -1038869,6 +1050125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038884,12 +1050142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "03a265" }, { @@ -1038917,6 +1050176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038932,12 +1050193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "356046" }, { @@ -1038965,6 +1050227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1038980,12 +1050244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3e53b0" }, { @@ -1039013,6 +1050278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039028,12 +1050295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4218a0" }, { @@ -1039061,6 +1050329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039076,12 +1050346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d84de0" }, { @@ -1039109,6 +1050380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039124,12 +1050397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a65f30" }, { @@ -1039157,6 +1050431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039172,12 +1050448,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c193f" }, { @@ -1039205,6 +1050482,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039220,12 +1050499,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6a13ae" }, { @@ -1039253,6 +1050533,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039268,12 +1050550,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d60f3b" }, { @@ -1039301,6 +1050584,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039316,12 +1050601,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6fdcaf" }, { @@ -1039349,6 +1050635,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039364,12 +1050652,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "31f1b5" }, { @@ -1039397,6 +1050686,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039412,12 +1050703,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5bae" }, { @@ -1039445,6 +1050737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039460,12 +1050754,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8c436" }, { @@ -1039493,6 +1050788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039508,12 +1050805,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8cfcad" }, { @@ -1039541,6 +1050839,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039556,12 +1050856,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc9e13" }, { @@ -1039589,6 +1050890,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039604,12 +1050907,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c2d5a" }, { @@ -1039637,6 +1050941,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039652,12 +1050958,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fb152" }, { @@ -1039685,6 +1050992,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039700,12 +1051009,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99845e" }, { @@ -1039733,6 +1051043,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039748,12 +1051060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "605181" } ], @@ -1039784,6 +1051097,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039803,12 +1051118,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1039835,6 +1051151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039850,12 +1051168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4eaaf" }, { @@ -1039883,6 +1051202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039898,12 +1051219,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3453da" }, { @@ -1039931,6 +1051253,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1039946,12 +1051270,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cbc59e" } ], @@ -1039982,6 +1051307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040000,12 +1051327,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1040032,6 +1051360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040047,12 +1051377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "746ced" }, { @@ -1040080,6 +1051411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040095,12 +1051428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e97dc1" } ], @@ -1040131,6 +1051465,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040146,12 +1051482,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "847080" }, { @@ -1040179,6 +1051516,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040197,9 +1051536,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'A Thousand Shapes of Horror'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "b53295" }, { @@ -1040227,6 +1051566,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040242,12 +1051583,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a87562" }, { @@ -1040275,6 +1051617,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040293,9 +1051637,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4e1b15", "States": { "2": { @@ -1040323,6 +1051667,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040341,9 +1051687,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1040371,6 +1051717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040389,9 +1051737,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1040421,6 +1051769,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040439,9 +1051789,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "156254", "States": { "2": { @@ -1040469,6 +1051819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040487,9 +1051839,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1040517,6 +1051869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040535,9 +1051889,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1040567,6 +1051921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040582,12 +1051938,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c1375a" }, { @@ -1040615,6 +1051972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040630,12 +1051989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57c9a1" }, { @@ -1040663,6 +1052023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040681,9 +1052043,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23b0bf", "States": { "2": { @@ -1040711,6 +1052073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040729,9 +1052093,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1040759,6 +1052123,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040777,9 +1052143,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1040809,6 +1052175,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040824,12 +1052192,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "285100" }, { @@ -1040857,6 +1052226,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040875,9 +1052246,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "27c4de", "States": { "2": { @@ -1040905,6 +1052276,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040923,9 +1052296,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1040953,6 +1052326,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1040971,9 +1052346,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1041003,6 +1052378,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1041018,12 +1052395,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "55059a" }, { @@ -1041051,6 +1052429,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1041069,9 +1052449,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -1041099,6 +1052479,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1041117,9 +1052499,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1041147,6 +1052529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1041165,9 +1052549,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1041197,6 +1052581,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1041215,9 +1052601,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "491963", "States": { "2": { @@ -1041245,6 +1052631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1041263,9 +1052651,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1041293,6 +1052681,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1041311,9 +1052701,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1041343,6 +1052733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1041358,12 +1052750,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c93906" }, { @@ -1041391,6 +1052784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1041406,12 +1052801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4a9058" } ], @@ -1041440,3683 +1052836,12 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 12.24958, - "posY": 1.46325028, - "posZ": -4.013648, + "posX": 12.250102, + "posY": 1.46089375, + "posZ": -12.0136013, "rotX": 359.920135, - "rotY": 270.0003, - "rotZ": 0.01687309, - "scaleX": 2.21, - "scaleY": 0.46, - "scaleZ": 2.42 - }, - "Nickname": "3-A: Dark Side of the Moon", - "Description": "The Dream Eaters", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/778493962298058421/0B46C836BDF38F4DA05812D232294D51B421D951/", - "NormalURL": "", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 3, - "TypeIndex": 6, - "CustomShader": { - "SpecularColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "SpecularIntensity": 0.0, - "SpecularSharpness": 2.0, - "FresnelStrength": 0.0 - }, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", - "LuaScriptState": "{\"ml\":{\"3a751b\":{\"lock\":false,\"pos\":{\"x\":-2.6764,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9707,\"z\":0.0802}},\"3c1955\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7611,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"4d7bc7\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0107,\"z\":0.0169}},\"5c8909\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9868,\"z\":0.0169}},\"5caa00\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9836,\"y\":0.3334,\"z\":359.92}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9965,\"z\":0.08}},\"88a108\":{\"lock\":false,\"pos\":{\"x\":-33.5996,\"y\":1.6283,\"z\":-0.0355},\"rot\":{\"x\":0.0799,\"y\":89.9971,\"z\":359.9831}},\"99c449\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0106,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9979,\"z\":0.0687}},\"aa8d82\":{\"lock\":false,\"pos\":{\"x\":-3.6434,\"y\":1.5823,\"z\":-14.4516},\"rot\":{\"x\":359.9197,\"y\":270.0306,\"z\":0.0168}},\"b3cb48\":{\"lock\":false,\"pos\":{\"x\":-34.1049,\"y\":1.628,\"z\":-3.5086},\"rot\":{\"x\":359.9316,\"y\":315.0172,\"z\":359.9554}},\"b6f2f1\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9965,\"z\":0.0799}},\"bf5bd8\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0196,\"z\":0.0803}},\"c43d3c\":{\"lock\":false,\"pos\":{\"x\":-1.201,\"y\":1.55,\"z\":-39.628},\"rot\":{\"x\":0,\"y\":270.0004,\"z\":0}},\"cb15b1\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7067,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0106,\"z\":0.0169}},\"cdf29c\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0106,\"z\":0.0169}},\"d08fc6\":{\"lock\":false,\"pos\":{\"x\":-33.7733,\"y\":1.6308,\"z\":7.395},\"rot\":{\"x\":0.0799,\"y\":89.9971,\"z\":359.9831}}}}", - "ContainedObjects": [ - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.64344144, - "posY": 1.58231843, - "posZ": -14.4515753, - "rotX": 359.919739, - "rotY": 270.030579, - "rotZ": 0.0167951509, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "Dark Side of the Moon", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'Dark Side of the Moon'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", - "LuaScriptState": "", - "GUID": "aa8d82" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.956, - "posY": 1.65564811, - "posZ": -10.4412012, - "rotX": 359.919739, - "rotY": 269.986755, - "rotZ": 0.01685969, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "Dark Side of the Moon", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448300, - "SidewaysCard": false, - "CustomDeck": { - "4483": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5c8909" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.67639971, - "posY": 1.65347755, - "posZ": -5.0485, - "rotX": 0.0168761015, - "rotY": 179.970657, - "rotZ": 0.08024897, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 448229, - 448228, - 448227, - 448226 - ], - "CustomDeck": { - "4482": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -11.0816126, - "posY": 1.66499209, - "posZ": -12.4067783, - "rotX": 0.0171953663, - "rotY": 179.926956, - "rotZ": 0.07844931, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Unexpected Rescue", - "Description": "Act 4", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448229, - "SidewaysCard": true, - "CustomDeck": { - "4482": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "04d820" - }, - { - "Name": "Card", - "Transform": { - "posX": -10.9915428, - "posY": 1.826066, - "posZ": -11.9397945, - "rotX": 0.0120061105, - "rotY": 180.016312, - "rotZ": 0.08003286, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Moon's Core", - "Description": "Act 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448228, - "SidewaysCard": true, - "CustomDeck": { - "4482": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "453173" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.2566652, - "posY": 1.84363711, - "posZ": -12.45118, - "rotX": 0.0164827611, - "rotY": 180.00737, - "rotZ": 0.07951248, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Exploring the Moon", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448227, - "SidewaysCard": true, - "CustomDeck": { - "4482": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "950287" - }, - { - "Name": "Card", - "Transform": { - "posX": -11.2261992, - "posY": 1.829924, - "posZ": -12.4624214, - "rotX": 0.0165065471, - "rotY": 179.9832, - "rotZ": 0.07953842, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "In the Belly of the Moon-Beast", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448226, - "SidewaysCard": true, - "CustomDeck": { - "4482": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8a7b93" - } - ], - "GUID": "3a751b" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.7248, - "posY": 1.65664148, - "posZ": 0.373300254, - "rotX": 0.016807422, - "rotY": 180.019623, - "rotZ": 0.0802635, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 448225, - 448224, - 448223 - ], - "CustomDeck": { - "4482": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -13.9430313, - "posY": 1.66886377, - "posZ": -12.760006, - "rotX": 0.0172067322, - "rotY": 180.033279, - "rotZ": 0.07749708, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Are Upon You!", - "Description": "Agenda 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448225, - "SidewaysCard": true, - "CustomDeck": { - "4482": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d99919" - }, - { - "Name": "Card", - "Transform": { - "posX": -8.022227, - "posY": 1.66043532, - "posZ": -13.5207338, - "rotX": 0.01686454, - "rotY": 180.019638, - "rotZ": 0.07910768, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Alarm Is Raised", - "Description": "Agenda 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448224, - "SidewaysCard": true, - "CustomDeck": { - "4482": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "582d94" - }, - { - "Name": "Card", - "Transform": { - "posX": -8.29579449, - "posY": 1.894331, - "posZ": -13.5412006, - "rotX": 2.69618034, - "rotY": 180.022583, - "rotZ": 0.0773316547, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Silent Stirring", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448223, - "SidewaysCard": true, - "CustomDeck": { - "4482": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5da9b8" - } - ], - "GUID": "bf5bd8" - }, - { - "Name": "Deck", - "Transform": { - "posX": -3.92760038, - "posY": 1.761051, - "posZ": 5.757201, - "rotX": 359.919739, - "rotY": 269.999969, - "rotZ": 180.016815, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Encounter Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 274129, - 232419, - 274120, - 274129, - 232419, - 274118, - 274119, - 274118, - 274119, - 232419, - 274120, - 274130, - 274130, - 448407, - 448407, - 448407, - 448408, - 448408, - 448403, - 448403, - 448405, - 448405, - 448404, - 448404, - 448404, - 448406, - 448406, - 448406 - ], - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2324": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -3.95851326, - "posY": 1.33603656, - "posZ": 54.52095, - "rotX": 0.021499306, - "rotY": 269.999054, - "rotZ": 0.01294238, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hunted by Corsairs", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274129, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d30166" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.85151768, - "posY": 1.481172, - "posZ": 54.5874138, - "rotX": 0.0317279, - "rotY": 269.997437, - "rotZ": 0.0104400339, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232419, - "SidewaysCard": false, - "CustomDeck": { - "2324": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6e7cb8" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.99202347, - "posY": 1.49862671, - "posZ": 54.1671333, - "rotX": 0.0205474552, - "rotY": 270.000031, - "rotZ": 0.0154121937, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Deeper Slumber", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274120, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c9a81c" - }, - { - "Name": "Card", - "Transform": { - "posX": -4.119467, - "posY": 1.48490989, - "posZ": 54.3174744, - "rotX": 0.0210007112, - "rotY": 270.000427, - "rotZ": 0.0169398841, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Hunted by Corsairs", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274129, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4f56f1" - }, - { - "Name": "Card", - "Transform": { - "posX": -4.18778563, - "posY": 1.48285019, - "posZ": 54.38247, - "rotX": 0.024659181, - "rotY": 269.999878, - "rotZ": 0.0159895718, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232419, - "SidewaysCard": false, - "CustomDeck": { - "2324": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8af879" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.93856478, - "posY": 1.4856503, - "posZ": 54.4894142, - "rotX": 0.0238736, - "rotY": 270.005, - "rotZ": 0.0106812716, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dreamer's Curse", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274118, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8af23c" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.61676359, - "posY": 1.49031913, - "posZ": 55.2240753, - "rotX": 0.0210925788, - "rotY": 270.0, - "rotZ": 0.0154342148, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Somniphobia", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274119, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e64ec2" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.1435895, - "posY": 1.49677563, - "posZ": 55.3496666, - "rotX": 0.0186838917, - "rotY": 270.000061, - "rotZ": 0.0165105425, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dreamer's Curse", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274118, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "dd39c6" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.319792, - "posY": 1.45421457, - "posZ": 55.48307, - "rotX": 0.0235182159, - "rotY": 270.000519, - "rotZ": 0.0153398849, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Somniphobia", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274119, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bdd705" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.75459766, - "posY": 1.46369326, - "posZ": 55.18787, - "rotX": 0.021479506, - "rotY": 269.9999, - "rotZ": 0.0153722484, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Ancient Evils", - "Description": "Omen.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 232419, - "SidewaysCard": false, - "CustomDeck": { - "2324": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6e7cb8" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.285024, - "posY": 1.473537, - "posZ": 55.3664665, - "rotX": 0.02268582, - "rotY": 269.9998, - "rotZ": 0.0148103712, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Deeper Slumber", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274120, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "07cb83" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.73751926, - "posY": 1.48304963, - "posZ": 55.2935753, - "rotX": 0.0214949958, - "rotY": 270.0, - "rotZ": 0.0150681, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Corsair of Leng", - "Description": "Humanoid. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274130, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a45b3a" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.38415337, - "posY": 1.50843859, - "posZ": 55.3186073, - "rotX": 0.02077319, - "rotY": 270.000031, - "rotZ": 0.0165515617, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Corsair of Leng", - "Description": "Humanoid. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274130, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "646a1a" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.1378026, - "posY": 1.34118438, - "posZ": 70.00583, - "rotX": 0.0219865087, - "rotY": 269.986755, - "rotZ": 0.00923137553, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Forced into Hiding", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448407, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "430478" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.08908343, - "posY": 1.49055374, - "posZ": 69.73123, - "rotX": 0.0114795351, - "rotY": 269.986877, - "rotZ": 0.01847368, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Forced into Hiding", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448407, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "35c286" - }, - { - "Name": "Card", - "Transform": { - "posX": -4.27698469, - "posY": 1.50192142, - "posZ": 50.755394, - "rotX": 0.0219084, - "rotY": 269.9867, - "rotZ": 0.0159632284, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Forced into Hiding", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448407, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b8b5c0" - }, - { - "Name": "Card", - "Transform": { - "posX": -8.013627, - "posY": 1.33334887, - "posZ": 50.2772, - "rotX": 0.0212570131, - "rotY": 269.986633, - "rotZ": 0.01420621, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lunar Patrol", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448408, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1dc329" - }, - { - "Name": "Card", - "Transform": { - "posX": -8.107245, - "posY": 1.48278522, - "posZ": 50.4694824, - "rotX": 0.0337397456, - "rotY": 269.986267, - "rotZ": -0.00328205316, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Lunar Patrol", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448408, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8ed23d" - }, - { - "Name": "Card", - "Transform": { - "posX": -0.342821658, - "posY": 1.33624387, - "posZ": 50.85751, - "rotX": 0.02183284, - "rotY": 269.9867, - "rotZ": 0.0101136481, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Moonbound Byakhee", - "Description": "Monster. Byakhee.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448403, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1e3d9c" - }, - { - "Name": "Card", - "Transform": { - "posX": -0.119474329, - "posY": 1.4857558, - "posZ": 50.3578033, - "rotX": 0.0261226017, - "rotY": 269.986633, - "rotZ": 0.013653243, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Moonbound Byakhee", - "Description": "Monster. Byakhee.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448403, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6a01b3" - }, - { - "Name": "Card", - "Transform": { - "posX": -4.602836, - "posY": 1.33395815, - "posZ": 48.6415939, - "rotX": 0.0227752626, - "rotY": 269.986755, - "rotZ": 0.00403617648, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Moon-Beast", - "Description": "Monster. Servitor.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448405, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a67b30" - }, - { - "Name": "Card", - "Transform": { - "posX": -4.177688, - "posY": 1.48315227, - "posZ": 48.1663322, - "rotX": 0.00254054368, - "rotY": 269.986877, - "rotZ": 0.0276345443, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Moon-Beast", - "Description": "Monster. Servitor.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448405, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7a9fd0" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.16077042, - "posY": 1.33419871, - "posZ": 49.5594826, - "rotX": 0.0210423376, - "rotY": 269.9867, - "rotZ": 0.0156857315, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cats from Saturn", - "Description": "Creature. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448404, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "69fa0b" - }, - { - "Name": "Card", - "Transform": { - "posX": -4.95902729, - "posY": 1.483893, - "posZ": 49.61392, - "rotX": 0.0156786237, - "rotY": 269.9868, - "rotZ": 0.00259767217, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cats from Saturn", - "Description": "Creature. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448404, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1a188b" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.088737, - "posY": 1.50123262, - "posZ": 49.43233, - "rotX": 0.0224124733, - "rotY": 269.986572, - "rotZ": 0.0150748733, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cats from Saturn", - "Description": "Creature. Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448404, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ba6406" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.7438643, - "posY": 2.34431648, - "posZ": 47.14024, - "rotX": 0.02157486, - "rotY": 269.986877, - "rotZ": 0.0128391329, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Close Watch", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448406, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d06c19" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.7652297, - "posY": 2.39406681, - "posZ": 46.4197578, - "rotX": 0.0215747468, - "rotY": 269.9872, - "rotZ": 0.0128485141, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Close Watch", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448406, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "09b1ba" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.89863968, - "posY": 2.449588, - "posZ": 45.84762, - "rotX": 0.0239194687, - "rotY": 269.9803, - "rotZ": 0.0328396149, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Close Watch", - "Description": "Scheme.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448406, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "cd1750" - } - ], - "GUID": "3c1955" - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 1.69660068, - "posY": 1.55831635, - "posZ": 14.2787027, - "rotX": 359.955139, - "rotY": 224.997864, - "rotZ": 0.06867311, - "scaleX": 2.0, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "Nickname": "Set-aside", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.02148666, - "g": 0.00100758043, - "b": 0.02148666 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://paste.ee/r/ylQzQ", - "DiffuseURL": "http://i.imgur.com/yVhOLYs.jpg", - "NormalURL": "http://i.imgur.com/f1ogHo6.jpg", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 1, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -1.00175333, - "posY": 3.272036, - "posZ": 0.170168161, - "rotX": 359.920135, - "rotY": 269.986633, - "rotZ": 0.01689765, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Captain", - "Description": "Dreamlands Navigator", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448401, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "035f54" - }, - { - "Name": "Card", - "Transform": { - "posX": -0.140059009, - "posY": 3.25801015, - "posZ": 4.66106653, - "rotX": 2.57129323E-05, - "rotY": 269.9862, - "rotZ": -0.000100568504, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Virgil Gray", - "Description": "Truly Inspired", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448400, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5dbc74" - }, - { - "Name": "Card", - "Transform": { - "posX": -5.63004351, - "posY": 3.01442623, - "posZ": 9.05983448, - "rotX": 0.0208127648, - "rotY": 0.0269944351, - "rotZ": 0.0167658143, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "False Awakening", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448609, - "SidewaysCard": false, - "CustomDeck": { - "4486": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/EcbhVuh.jpg", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0de10c" - }, - { - "Name": "Card", - "Transform": { - "posX": 0.3857994, - "posY": 3.01677179, - "posZ": 9.609353, - "rotX": 0.0208133329, - "rotY": 269.986847, - "rotZ": 0.0167665631, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Moon Lizard", - "Description": "Monster. Elite.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448402, - "SidewaysCard": false, - "CustomDeck": { - "4484": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "db6ad1" - }, - { - "Name": "Card", - "Transform": { - "posX": 9.642976, - "posY": 3.258013, - "posZ": 4.29473352, - "rotX": -1.58084658E-05, - "rotY": 269.986725, - "rotZ": -1.04519777E-05, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Light Side of the Moon", - "Description": "Surface. Ruins.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448309, - "SidewaysCard": false, - "CustomDeck": { - "4483": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e4d13a" - }, - { - "Name": "Card", - "Transform": { - "posX": 3.58776188, - "posY": 3.26561165, - "posZ": 0.08030915, - "rotX": 359.920135, - "rotY": 269.986633, - "rotZ": 0.0168963019, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Moon-Beast Galley", - "Description": "Ship.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448301, - "SidewaysCard": false, - "CustomDeck": { - "4483": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fdaf9a" - }, - { - "Name": "Card", - "Transform": { - "posX": 4.06642342, - "posY": 3.25801086, - "posZ": 4.579455, - "rotX": 2.4886207E-05, - "rotY": 269.970947, - "rotZ": -5.99862033E-05, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The White Ship", - "Description": "Ship.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448310, - "SidewaysCard": false, - "CustomDeck": { - "4483": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "537a2f" - }, - { - "Name": "Card", - "Transform": { - "posX": 4.631258, - "posY": 3.018292, - "posZ": 9.535302, - "rotX": 0.0208228566, - "rotY": 269.9542, - "rotZ": 0.0167549569, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Black Core", - "Description": "Cave.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448307, - "SidewaysCard": false, - "CustomDeck": { - "4483": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c283c3" - }, - { - "Name": "Card", - "Transform": { - "posX": 8.679053, - "posY": 3.25846839, - "posZ": -0.07334685, - "rotX": 359.920135, - "rotY": 269.982117, - "rotZ": 0.01690388, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Caverns Beneath the Moon", - "Description": "Light Side", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448308, - "SidewaysCard": false, - "CustomDeck": { - "4483": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4b517e" - }, - { - "Name": "Card", - "Transform": { - "posX": 10.7771444, - "posY": 3.02035761, - "posZ": 8.967343, - "rotX": 0.0208214726, - "rotY": 269.959259, - "rotZ": 0.0167554673, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Caverns Beneath the Moon", - "Description": "Dark Side", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448306, - "SidewaysCard": false, - "CustomDeck": { - "4483": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d69f76" - } - ], - "PhysicsMaterial": { - "StaticFriction": 0.6, - "DynamicFriction": 0.6, - "Bounciness": 0.0, - "FrictionCombine": 0, - "BounceCombine": 0 - }, - "Rigidbody": { - "Mass": 1.375, - "Drag": 5.0, - "AngularDrag": 5.0, - "UseGravity": true - }, - "GUID": "a45247" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2242, - "posY": 1.69535065, - "posZ": -0.0300002415, - "rotX": 359.9201, - "rotY": 270.010559, - "rotZ": 0.0168616939, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Dark Crater", - "Description": "Surface.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448303, - "SidewaysCard": false, - "CustomDeck": { - "4483": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "99c449" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2242, - "posY": 1.6225183, - "posZ": -3.82999945, - "rotX": 359.983582, - "rotY": 0.3333816, - "rotZ": 359.919952, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5caa00", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -34.1049, - "posY": 1.62802434, - "posZ": -3.50860023, - "rotX": 359.93158, - "rotY": 315.0172, - "rotZ": 359.9554, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b3cb48", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -33.5996, - "posY": 1.62834215, - "posZ": -0.03550024, - "rotX": 0.07989348, - "rotY": 89.99708, - "rotZ": 359.9831, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "88a108", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -36.7732, - "posY": 1.70448279, - "posZ": -0.0300004911, - "rotX": 359.9201, - "rotY": 270.010559, - "rotZ": 0.0168616474, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Moon-Forest", - "Description": "Surface. Woods.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448305, - "SidewaysCard": false, - "CustomDeck": { - "4483": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "cdf29c" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -36.7732, - "posY": 1.63391447, - "posZ": 3.86000085, - "rotX": 0.0168767665, - "rotY": 179.99649, - "rotZ": 0.07995189, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "7234af", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -36.7731, - "posY": 1.70672059, - "posZ": 7.57, - "rotX": 359.9201, - "rotY": 270.0106, - "rotZ": 0.0168614816, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Temple of the Moon Lizard", - "Description": "Surface.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448304, - "SidewaysCard": false, - "CustomDeck": { - "4483": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "cb15b1" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -33.7733, - "posY": 1.63077247, - "posZ": 7.395001, - "rotX": 0.0798935443, - "rotY": 89.99713, - "rotZ": 359.9831, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d08fc6", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2243, - "posY": 1.69758868, - "posZ": 7.56999969, - "rotX": 359.9201, - "rotY": 270.010651, - "rotZ": 0.0168614686, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "City of the Moon-Beasts", - "Description": "Surface. City.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 448302, - "SidewaysCard": false, - "CustomDeck": { - "4483": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4d7bc7" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2242, - "posY": 1.62478244, - "posZ": 3.86000037, - "rotX": 0.0168767627, - "rotY": 179.99649, - "rotZ": 0.07993867, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b6f2f1", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - } - ], - "GUID": "0fad66", - "AttachedDecals": [ - { - "Transform": { - "posX": -0.0021877822, - "posY": -0.08963572, - "posZ": -0.00288731651, - "rotX": 270.0, - "rotY": 359.869568, - "rotZ": 0.0, - "scaleX": 2.00000215, - "scaleY": 2.00000238, - "scaleZ": 2.00000262 - }, - "CustomDecal": { - "Name": "dunwich_back", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", - "Size": 7.4 - } - } - ] - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 12.2500811, - "posY": 1.46089387, - "posZ": -12.0136461, - "rotX": 359.920135, - "rotY": 270.0004, - "rotZ": 0.0168739613, + "rotY": 270.000244, + "rotZ": 0.0168743171, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 @@ -1045133,6 +1052858,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045161,9 +1052888,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"09f962\":{\"lock\":false,\"pos\":{\"x\":-26.4856,\"y\":1.6194,\"z\":3.3667},\"rot\":{\"x\":359.9555,\"y\":224.9789,\"z\":0.0684}},\"16d115\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0112,\"z\":0.0169}},\"24ebbe\":{\"lock\":false,\"pos\":{\"x\":0.8312,\"y\":1.3942,\"z\":-3.7245},\"rot\":{\"x\":359.9832,\"y\":0.0001,\"z\":359.9197}},\"5a9838\":{\"lock\":false,\"pos\":{\"x\":0.7602,\"y\":1.3934,\"z\":-6.5464},\"rot\":{\"x\":359.9832,\"y\":-0.0001,\"z\":359.9197}},\"664162\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9948,\"z\":0.0803}},\"6d126f\":{\"lock\":false,\"pos\":{\"x\":-20.2756,\"y\":1.612,\"z\":7.5921},\"rot\":{\"x\":0.0799,\"y\":90.0025,\"z\":359.9831}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9957,\"z\":0.0799}},\"923952\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9666,\"z\":0.0169}},\"943b6c\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7717,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"ae0ecc\":{\"lock\":false,\"pos\":{\"x\":-33.5225,\"y\":1.6282,\"z\":0.0043},\"rot\":{\"x\":0.0799,\"y\":90.0202,\"z\":359.9831}},\"b0fbe0\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9818,\"z\":0.0169}},\"c43d3c\":{\"lock\":false,\"pos\":{\"x\":-0.4911,\"y\":1.55,\"z\":-40.2649},\"rot\":{\"x\":0,\"y\":270.0015,\"z\":0}},\"d616d2\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9818,\"z\":0.0169}},\"f252c5\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":0.0169}},\"f302ab\":{\"lock\":false,\"pos\":{\"x\":-3.8867,\"y\":1.5826,\"z\":-14.7599},\"rot\":{\"x\":359.9197,\"y\":270.0307,\"z\":0.0168}},\"f8cc03\":{\"lock\":false,\"pos\":{\"x\":-26.8492,\"y\":1.6189,\"z\":-0.013},\"rot\":{\"x\":0.0799,\"y\":90.0146,\"z\":359.9831}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -1045190,6 +1052917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045208,9 +1052937,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Point of No Return'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", + "XmlUI": "", "GUID": "f302ab" }, { @@ -1045238,6 +1052967,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045253,12 +1052984,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d616d2" }, { @@ -1045286,6 +1053018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045304,12 +1053038,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1045336,6 +1053071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045351,12 +1053088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e173e7" }, { @@ -1045384,6 +1053122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045399,12 +1053139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d30878" } ], @@ -1045435,6 +1053176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045443,9 +1053186,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -1045472,6 +1053215,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045491,12 +1053236,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1045523,6 +1053269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045538,12 +1053286,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "105e3a" }, { @@ -1045571,6 +1053320,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045586,12 +1053337,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6aa77" }, { @@ -1045619,6 +1053371,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045634,12 +1053388,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "febef4" } ], @@ -1045673,6 +1053428,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045681,9 +1053438,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -1045710,6 +1053467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045729,12 +1053488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1045761,6 +1053521,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045776,12 +1053538,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "105e3a" }, { @@ -1045809,6 +1053572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045824,12 +1053589,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6aa77" }, { @@ -1045857,6 +1053623,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045872,12 +1053640,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f907c0" } ], @@ -1045911,6 +1053680,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1045957,7 +1053728,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2741": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", @@ -1045965,7 +1053737,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "4484": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/", @@ -1045973,12 +1053746,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1046005,6 +1053779,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046020,12 +1053796,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1046053,6 +1053830,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046068,12 +1053847,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -1046101,6 +1053881,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046116,12 +1053898,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fb152" }, { @@ -1046149,6 +1053932,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046164,12 +1053949,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1046197,6 +1053983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046212,12 +1054000,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce95a3" }, { @@ -1046245,6 +1054034,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046260,12 +1054051,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "605181" }, { @@ -1046293,6 +1054085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046308,12 +1054102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6476cc" }, { @@ -1046341,6 +1054136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046356,12 +1054153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -1046389,6 +1054187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046404,12 +1054204,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9da9f5" }, { @@ -1046437,6 +1054238,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046452,12 +1054255,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "272ea4" }, { @@ -1046485,6 +1054289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046500,12 +1054306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1dc329" }, { @@ -1046533,6 +1054340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046548,12 +1054357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -1046581,6 +1054391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046596,12 +1054408,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "30bb55" }, { @@ -1046629,6 +1054442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046644,12 +1054459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "009bed" }, { @@ -1046677,6 +1054493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046692,12 +1054510,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -1046725,6 +1054544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046740,12 +1054561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99845e" }, { @@ -1046773,6 +1054595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046788,12 +1054612,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f776ef" }, { @@ -1046821,6 +1054646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046836,12 +1054663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" }, { @@ -1046869,6 +1054697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046884,12 +1054714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -1046917,6 +1054748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046932,12 +1054765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -1046965,6 +1054799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1046980,12 +1054816,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a3ada0" }, { @@ -1047013,6 +1054850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047028,12 +1054867,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -1047061,6 +1054901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047076,12 +1054918,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4c2d5a" }, { @@ -1047109,6 +1054952,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047124,12 +1054969,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "adb449" }, { @@ -1047157,6 +1055003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047172,12 +1055020,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b87089" }, { @@ -1047205,6 +1055054,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047220,12 +1055071,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -1047253,6 +1055105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047268,12 +1055122,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1047301,6 +1055156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047316,12 +1055173,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "416545" }, { @@ -1047349,6 +1055207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047364,12 +1055224,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99efa0" }, { @@ -1047397,6 +1055258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047412,12 +1055275,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -1047448,6 +1055312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047466,9 +1055332,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1047495,6 +1055361,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047510,12 +1055378,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3bf831" }, { @@ -1047543,6 +1055412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047563,12 +1055434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1047595,6 +1055467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047610,12 +1055484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e04da" }, { @@ -1047643,6 +1055518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047658,12 +1055535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d0c1c" }, { @@ -1047691,6 +1055569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047706,12 +1055586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1047739,6 +1055620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047754,12 +1055637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b75b70" } ], @@ -1047790,6 +1055674,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047805,12 +1055691,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d7881" }, { @@ -1047838,6 +1055725,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047853,12 +1055742,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4534a" }, { @@ -1047886,6 +1055776,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047906,12 +1055798,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1047938,6 +1055831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1047953,12 +1055848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "621de5" }, { @@ -1047986,6 +1055882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048001,12 +1055899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b126fb" }, { @@ -1048034,6 +1055933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048049,12 +1055950,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "924656" }, { @@ -1048082,6 +1055984,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048097,12 +1056001,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e06a" } ], @@ -1048133,6 +1056038,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048153,12 +1056060,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1048185,6 +1056093,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048200,12 +1056110,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8ca95" }, { @@ -1048233,6 +1056144,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048248,12 +1056161,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2472d3" }, { @@ -1048281,6 +1056195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048296,12 +1056212,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ebbf2f" }, { @@ -1048329,6 +1056246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048344,12 +1056263,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4faa7f" } ], @@ -1048380,6 +1056300,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048400,12 +1056322,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1048432,6 +1056355,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048447,12 +1056372,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fa43f" }, { @@ -1048480,6 +1056406,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048495,12 +1056423,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e43efd" }, { @@ -1048528,6 +1056457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048543,12 +1056474,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e45ec8" }, { @@ -1048576,6 +1056508,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048591,12 +1056525,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "25d93a" } ], @@ -1048627,6 +1056562,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048642,12 +1056579,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2273ef" }, { @@ -1048675,6 +1056613,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048695,12 +1056635,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1048727,6 +1056668,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048742,12 +1056685,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "205498" }, { @@ -1048775,6 +1056719,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048790,12 +1056736,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd1eba" }, { @@ -1048823,6 +1056770,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048838,12 +1056787,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "537a2f" }, { @@ -1048871,6 +1056821,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048886,12 +1056838,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e86a44" } ], @@ -1048922,6 +1056875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048942,12 +1056897,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1048974,6 +1056930,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1048989,12 +1056947,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c5a434" }, { @@ -1049022,6 +1056981,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049037,12 +1056998,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fdb3b3" }, { @@ -1049070,6 +1057032,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049085,12 +1057049,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee0dc6" }, { @@ -1049118,6 +1057083,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049133,12 +1057100,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "858f4d" } ], @@ -1049185,6 +1057153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049200,12 +1057170,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "923952" }, { @@ -1049233,6 +1057204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049251,9 +1057224,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d126f", "States": { "2": { @@ -1049281,6 +1057254,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049299,9 +1057274,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1049329,6 +1057304,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049347,9 +1057324,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1049379,6 +1057356,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049394,12 +1057373,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b0fbe0" }, { @@ -1049427,6 +1057407,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049445,9 +1057427,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -1049475,6 +1057457,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049493,9 +1057477,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1049523,6 +1057507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049541,9 +1057527,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1049573,6 +1057559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049591,9 +1057579,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09f962", "States": { "2": { @@ -1049621,6 +1057609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049639,9 +1057629,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1049669,6 +1057659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049687,9 +1057679,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1049719,6 +1057711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049734,12 +1057728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f252c5" }, { @@ -1049767,6 +1057762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049785,9 +1057782,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f8cc03", "States": { "2": { @@ -1049815,6 +1057812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049833,9 +1057832,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1049863,6 +1057862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049881,9 +1057882,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1049913,6 +1057914,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049928,12 +1057931,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d115" }, { @@ -1049961,6 +1057965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1049979,9 +1057985,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae0ecc", "States": { "2": { @@ -1050009,6 +1058015,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1050027,9 +1058035,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1050057,6 +1058065,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1050075,9 +1058085,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1050108,18 +1058118,18 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 12.2504778, - "posY": 1.45853746, - "posZ": -20.0136547, + "posX": 12.250103, + "posY": 1.47031677, + "posZ": 19.9864044, "rotX": 359.920135, - "rotY": 270.000366, - "rotZ": 0.0168725271, + "rotY": 269.999939, + "rotZ": 0.016873356, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, - "Nickname": "4-A: Where the Gods Dwell", - "Description": "The Dream Eaters", + "Nickname": "1-B: Waking Nightmare", + "Description": "The Dream-Eaters", "GMNotes": "", "ColorDiffuse": { "r": 1.0, @@ -1050130,6 +1058140,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1050140,7 +1058152,7 @@ "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", - "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/781876499695136018/EF2515B5569697B81A425766F80E14F70B48AD93/", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/775107869055713235/FBABD72CD923F9371D9E8416D95CF198A0CDD42B/", "NormalURL": "", "ColliderURL": "", "Convex": true, @@ -1050158,26 +1058170,330 @@ }, "CastShadows": true }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", + "LuaScriptState": "{\"ml\":{\"05d1cf\":{\"lock\":false,\"pos\":{\"x\":-27.2495,\"y\":1.6206,\"z\":3.6873},\"rot\":{\"x\":359.9316,\"y\":315.0237,\"z\":359.9554}},\"2e6a5b\":{\"lock\":false,\"pos\":{\"x\":-30.5021,\"y\":1.624,\"z\":-0.1284},\"rot\":{\"x\":359.9831,\"y\":-0.004,\"z\":359.9201}},\"430489\":{\"lock\":false,\"pos\":{\"x\":-3.6953,\"y\":1.6627,\"z\":14.8922},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"4dba7c\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.5588,\"y\":1.6102,\"z\":0.0491},\"rot\":{\"x\":359.9201,\"y\":269.9948,\"z\":0.0169}},\"725b9b\":{\"lock\":false,\"pos\":{\"x\":-27.288,\"y\":1.6185,\"z\":-3.6558},\"rot\":{\"x\":359.9549,\"y\":225.423,\"z\":0.0681}},\"7f666b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"98195d\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9719,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"ae9c75\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9917,\"z\":0.0803}},\"b37a4c\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9825,\"z\":0.0169}},\"b4ef40\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":0.0168}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.6318,\"y\":1.5822,\"z\":-14.9411},\"rot\":{\"x\":359.9197,\"y\":270.0308,\"z\":0.0168}},\"e7b32a\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7184,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"f1a8d3\":{\"lock\":false,\"pos\":{\"x\":-2.6803,\"y\":1.655,\"z\":-5.0492},\"rot\":{\"x\":0.0169,\"y\":179.9734,\"z\":0.0802}}}}", "XmlUI": "", - "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", - "LuaScriptState": "{\"ml\":{\"23f5d1\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"29c6d1\":{\"lock\":false,\"pos\":{\"x\":-26.976,\"y\":1.6191,\"z\":-0.0342},\"rot\":{\"x\":0.0799,\"y\":90.0006,\"z\":359.9831}},\"364766\":{\"lock\":false,\"pos\":{\"x\":-33.4596,\"y\":1.6282,\"z\":-0.0121},\"rot\":{\"x\":0.0799,\"y\":90.0006,\"z\":359.9831}},\"3b8e56\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0013,\"z\":0.0169}},\"3e86c2\":{\"lock\":false,\"pos\":{\"x\":-3.5977,\"y\":1.5821,\"z\":-14.9872},\"rot\":{\"x\":359.9197,\"y\":269.978,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6317,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180.0141,\"z\":0.0799}},\"72c773\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.0275,\"z\":0.0168}},\"93e081\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.7022,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0081,\"z\":0.0169}},\"c08e12\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"d17e52\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0015,\"z\":0.0169}},\"d7defe\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180.0144,\"z\":0.0799}},\"da60f6\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7557,\"z\":5.7567},\"rot\":{\"x\":359.9197,\"y\":269.982,\"z\":180.0168}},\"e549c9\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6543,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":179.9989,\"z\":0.0803}},\"ecaabf\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0013,\"z\":0.0169}},\"f003bb\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9991,\"z\":0.0168}}}}", "ContainedObjects": [ { - "Name": "Deck", + "Name": "Custom_Tile", "Transform": { - "posX": -3.92748618, - "posY": 1.75572109, - "posZ": 5.75669432, - "rotX": 359.919739, - "rotY": 269.982, - "rotZ": 180.016846, + "posX": -27.2495, + "posY": 1.62058377, + "posZ": 3.68730044, + "rotX": 359.93158, + "rotY": 315.0238, + "rotZ": 359.9554, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Encounter Deck", + "Nickname": "", "Description": "", "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "05d1cf", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.5021, + "posY": 1.62399578, + "posZ": -0.12839976, + "rotX": 359.983124, + "rotY": -0.00382182654, + "rotZ": 359.920074, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": false, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "2e6a5b", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -3.6953, + "posY": 1.66272724, + "posZ": 14.8922033, + "rotX": 359.919739, + "rotY": 269.9999, + "rotZ": 0.016840931, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dr. Shivani Maheswaran", + "Description": "Emergency Physician", + "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, @@ -1050187,3172 +1058503,47 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, - "Hands": false, + "Hands": true, + "CardID": 281605, "SidewaysCard": false, - "DeckIDs": [ - 234635, - 274119, - 231722, - 234634, - 231722, - 231722, - 231724, - 234633, - 274120, - 234636, - 274119, - 274118, - 274115, - 234627, - 231723, - 274115, - 234626, - 274115, - 274120, - 274113, - 234627, - 231724, - 274112, - 234627, - 234636, - 274118, - 274114 - ], "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - }, - "2741": { + "2816": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false - }, - "2317": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 23.3701916, - "posY": 1.93367982, - "posZ": -4.36128855, - "rotX": 359.921326, - "rotY": 270.0052, - "rotZ": 180.000824, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Restless Journey (Lies)", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234635, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4b40bb" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.10714579, - "posY": 1.85911262, - "posZ": 15.1832485, - "rotX": 359.923279, - "rotY": 270.0094, - "rotZ": 180.0092, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Somniphobia", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274119, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "e64ec2" - }, - { - "Name": "Card", - "Transform": { - "posX": -15.3297215, - "posY": 1.77588809, - "posZ": 15.9645157, - "rotX": 0.07387834, - "rotY": 269.998474, - "rotZ": 359.992645, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Acolyte", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231722, - "SidewaysCard": false, - "CustomDeck": { - "2317": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "4911f2" - }, - { - "Name": "Card", - "Transform": { - "posX": 24.822422, - "posY": 1.92204416, - "posZ": -4.675362, - "rotX": 359.9141, - "rotY": 269.997925, - "rotZ": 180.008926, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Restless Journey (Hardship)", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234634, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "9cc2c5" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.92770767, - "posY": 1.97732818, - "posZ": 5.75714731, - "rotX": 359.9905, - "rotY": 269.9906, - "rotZ": 180.041077, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Acolyte", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231722, - "SidewaysCard": false, - "CustomDeck": { - "2317": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ab3719" - }, - { - "Name": "Card", - "Transform": { - "posX": -15.3295956, - "posY": 1.62976587, - "posZ": 15.9645061, - "rotX": 0.0716057643, - "rotY": 270.000061, - "rotZ": 359.982727, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Acolyte", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231722, - "SidewaysCard": false, - "CustomDeck": { - "2317": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "50fdc5" - }, - { - "Name": "Card", - "Transform": { - "posX": -14.9937792, - "posY": 1.57623422, - "posZ": 7.191085, - "rotX": 359.920227, - "rotY": 270.005066, - "rotZ": 0.01624975, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysterious Chanting", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231724, - "SidewaysCard": false, - "CustomDeck": { - "2317": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d63054" - }, - { - "Name": "Card", - "Transform": { - "posX": 24.3455772, - "posY": 1.9130013, - "posZ": -4.31537247, - "rotX": 359.942444, - "rotY": 270.0401, - "rotZ": 179.9737, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Restless Journey (Fallacy)", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234633, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8b17a1" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.43135548, - "posY": 1.48793566, - "posZ": 50.2434, - "rotX": 0.0139066791, - "rotY": 269.999817, - "rotZ": -0.00134133862, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Deeper Slumber", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274120, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "c9a81c" - }, - { - "Name": "Card", - "Transform": { - "posX": 23.94412, - "posY": 1.95221329, - "posZ": -4.00885868, - "rotX": 359.9371, - "rotY": 270.019684, - "rotZ": 179.997742, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Abandoned by the Gods", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234636, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d4845c" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.363955, - "posY": 1.4883889, - "posZ": 46.8831024, - "rotX": 0.0292372759, - "rotY": 269.999878, - "rotZ": 0.009698411, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Somniphobia", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274119, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bdd705" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.55991268, - "posY": 1.3354677, - "posZ": 50.66423, - "rotX": 0.0210230164, - "rotY": 269.999969, - "rotZ": 0.015651783, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dreamer's Curse", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274118, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8af23c" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.7077415, - "posY": 1.49358606, - "posZ": 64.2276154, - "rotX": 0.0181054082, - "rotY": 269.999969, - "rotZ": -0.000729266962, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispers of Hypnos", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274115, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ce95a3" - }, - { - "Name": "Card", - "Transform": { - "posX": 4.646768, - "posY": 1.718759, - "posZ": 10.0789881, - "rotX": 359.9391, - "rotY": 270.038574, - "rotZ": 180.006317, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Liar with No Face", - "Description": "Monster. Cultist. Servitor.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234627, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0eece1" - }, - { - "Name": "Card", - "Transform": { - "posX": -15.1335211, - "posY": 1.7306242, - "posZ": 15.1695614, - "rotX": 359.933441, - "rotY": 269.998932, - "rotZ": 180.028931, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Wizard of the Order", - "Description": "Humanoid. Cultist.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231723, - "SidewaysCard": false, - "CustomDeck": { - "2317": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d36612" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.70772433, - "posY": 1.50589979, - "posZ": 64.22764, - "rotX": 0.0247761626, - "rotY": 269.9997, - "rotZ": 0.0151432147, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispers of Hypnos", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274115, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6476cc" - }, - { - "Name": "Card", - "Transform": { - "posX": 4.822001, - "posY": 1.55233145, - "posZ": 10.2153893, - "rotX": 359.920135, - "rotY": 270.001129, - "rotZ": 180.016861, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dhole of the Wastes", - "Description": "Monster.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234626, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f34504" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.70772815, - "posY": 1.3390168, - "posZ": 64.22763, - "rotX": 0.0210467484, - "rotY": 270.0, - "rotZ": 0.0153855, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispers of Hypnos", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274115, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "a3ada0" - }, - { - "Name": "Card", - "Transform": { - "posX": -7.64724255, - "posY": 1.33347023, - "posZ": 50.15231, - "rotX": 0.021022873, - "rotY": 269.999847, - "rotZ": 0.0156522952, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Deeper Slumber", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274120, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "07cb83" - }, - { - "Name": "Card", - "Transform": { - "posX": -1.349257, - "posY": 1.33509922, - "posZ": 56.99563, - "rotX": 0.04734984, - "rotY": 270.0003, - "rotZ": 359.83844, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Law of 'Ygiroth (Discord)", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274113, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "48601c" - }, - { - "Name": "Card", - "Transform": { - "posX": 4.83890724, - "posY": 1.7200079, - "posZ": 10.2753181, - "rotX": -1.627506E-05, - "rotY": 270.000183, - "rotZ": 180.666824, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Liar with No Face", - "Description": "Monster. Cultist. Servitor.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234627, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "82b246" - }, - { - "Name": "Card", - "Transform": { - "posX": -15.1765862, - "posY": 1.7388649, - "posZ": 7.12856245, - "rotX": 359.9205, - "rotY": 270.005066, - "rotZ": 0.011837706, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Mysterious Chanting", - "Description": "Hex.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 231724, - "SidewaysCard": false, - "CustomDeck": { - "2317": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b347d1" - }, - { - "Name": "Card", - "Transform": { - "posX": -0.8192207, - "posY": 1.47842848, - "posZ": 56.2326355, - "rotX": 359.92807, - "rotY": 269.996246, - "rotZ": 0.356809825, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Law of 'Ygiroth (Chaos)", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274112, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "fc58cb" - }, - { - "Name": "Card", - "Transform": { - "posX": -3.92658448, - "posY": 1.92084217, - "posZ": 5.760205, - "rotX": 359.227783, - "rotY": 269.9492, - "rotZ": 177.46312, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Liar with No Face", - "Description": "Monster. Cultist. Servitor.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234627, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "573f55" - }, - { - "Name": "Card", - "Transform": { - "posX": 23.7621918, - "posY": 1.94272566, - "posZ": -4.18574238, - "rotX": 359.9617, - "rotY": 269.975922, - "rotZ": 180.0185, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Abandoned by the Gods", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234636, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d4845c" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.34402561, - "posY": 1.48993313, - "posZ": 50.7553253, - "rotX": 0.0139070377, - "rotY": 269.999969, - "rotZ": -0.00134107959, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Dreamer's Curse", - "Description": "Curse.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274118, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "dd39c6" - }, - { - "Name": "Card", - "Transform": { - "posX": -0.465582937, - "posY": 1.62316334, - "posZ": 55.9808464, - "rotX": 359.928467, - "rotY": 269.997772, - "rotZ": 0.4196703, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Law of 'Ygiroth (Pandemonium)", - "Description": "Terror.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274114, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bf7d6b" - } - ], - "GUID": "da60f6" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.72475362, - "posY": 1.65664124, - "posZ": 0.373331547, - "rotX": 0.0168350041, - "rotY": 180.0, - "rotZ": 0.08025765, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Agenda Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 234538, - 234537, - 234536 - ], - "CustomDeck": { - "2345": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 1.5129416, - "posY": 1.553389, - "posZ": 7.755346, - "rotX": 0.0184581224, - "rotY": 178.9231, - "rotZ": 0.0790349543, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Chaos Incarnate", - "Description": "Agenda 3 ", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234538, - "SidewaysCard": true, - "CustomDeck": { - "2345": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d451c6" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.56102264, - "posY": 1.70188582, - "posZ": 7.50367737, - "rotX": 0.0187433437, - "rotY": 180.004852, - "rotZ": 0.07948507, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Shape of Chaos", - "Description": "Agenda 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234537, - "SidewaysCard": true, - "CustomDeck": { - "2345": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bdb299" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.75776863, - "posY": 1.71890879, - "posZ": 7.4334774, - "rotX": 0.01735614, - "rotY": 179.9811, - "rotZ": 0.0797196552, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Eye of Chaos", - "Description": "Agenda 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234536, - "SidewaysCard": true, - "CustomDeck": { - "2345": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "75881e" - } - ], - "GUID": "23f5d1" - }, - { - "Name": "Deck", - "Transform": { - "posX": -2.68848658, - "posY": 1.654325, - "posZ": -5.04855156, - "rotX": 0.01683662, - "rotY": 179.998886, - "rotZ": 0.08025731, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Act Deck", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": true, - "DeckIDs": [ - 234543, - 234542, - 234541, - 234540, - 234539 - ], - "CustomDeck": { - "2345": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -2.398561, - "posY": 1.71315813, - "posZ": 11.8457737, - "rotX": 0.0138844633, - "rotY": 180.000687, - "rotZ": 180.070251, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Dream-Eaters", - "Description": "Act 5 ", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234543, - "SidewaysCard": true, - "CustomDeck": { - "2345": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0dcc95" - }, - { - "Name": "Card", - "Transform": { - "posX": -1.73794353, - "posY": 1.71442127, - "posZ": 12.1403866, - "rotX": 0.0123398965, - "rotY": 179.998535, - "rotZ": 180.059921, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Truth and Lies", - "Description": "Act 4", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234542, - "SidewaysCard": true, - "CustomDeck": { - "2345": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d2e4db" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.21234441, - "posY": 1.72920561, - "posZ": 11.8906612, - "rotX": 0.0131380754, - "rotY": 180.000061, - "rotZ": 180.093063, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Beyond Dreams", - "Description": "Act 3", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234541, - "SidewaysCard": true, - "CustomDeck": { - "2345": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3de681" - }, - { - "Name": "Card", - "Transform": { - "posX": -1.64583027, - "posY": 1.711319, - "posZ": 12.1371679, - "rotX": 0.00669722445, - "rotY": 179.986816, - "rotZ": 180.095688, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Thing in the Robes", - "Description": "Act 2", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234540, - "SidewaysCard": true, - "CustomDeck": { - "2345": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8b429f" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.20941448, - "posY": 1.71010542, - "posZ": 12.2677374, - "rotX": 0.0132873552, - "rotY": 179.999908, - "rotZ": 0.0633311346, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Journey Through the Cold Wastes", - "Description": "Act 1", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234539, - "SidewaysCard": true, - "CustomDeck": { - "2345": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "75881e" - } - ], - "GUID": "e549c9" + "GUID": "430489" }, { "Name": "Card", "Transform": { - "posX": -3.95588636, - "posY": 1.655648, - "posZ": -10.4411888, - "rotX": 359.919739, - "rotY": 269.9991, - "rotZ": 0.0168422163, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Scenario", - "Description": "Where the Gods Dwell", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 234724, - "SidewaysCard": false, - "CustomDeck": { - "2347": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "f003bb" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -3.59765649, - "posY": 1.58209693, - "posZ": -14.98716, - "rotX": 359.919739, - "rotY": 269.977966, - "rotZ": 0.01686866, - "scaleX": 2.2, - "scaleY": 1.0, - "scaleZ": 2.2 - }, - "Nickname": "Point of No Return", - "Description": "click to set chaos token difficulty", - "GMNotes": "", - "ColorDiffuse": { - "r": 1.0, - "g": 1.0, - "b": 1.0 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", - "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "name = 'Where the Gods Dwell'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", - "LuaScriptState": "", - "GUID": "3e86c2" - }, - { - "Name": "Custom_Model_Bag", - "Transform": { - "posX": 1.6963532, - "posY": 1.558317, - "posZ": 14.2788572, - "rotX": 359.955139, - "rotY": 224.998, - "rotZ": 0.0686737448, - "scaleX": 2.0, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "Nickname": "Set-aside", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.02148666, - "g": 0.00100758043, - "b": 0.02148666 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "MaterialIndex": -1, - "MeshIndex": -1, - "CustomMesh": { - "MeshURL": "https://paste.ee/r/ylQzQ", - "DiffuseURL": "http://i.imgur.com/yVhOLYs.jpg", - "NormalURL": "http://i.imgur.com/f1ogHo6.jpg", - "ColliderURL": "", - "Convex": true, - "MaterialIndex": 1, - "TypeIndex": 6, - "CastShadows": true - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -13.6929073, - "posY": 3.63578987, - "posZ": 15.9609556, - "rotX": 359.925476, - "rotY": 270.021118, - "rotZ": 0.02446339, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "The Crawling Mist", - "Description": "Monster. Avatar.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 274111, - "SidewaysCard": false, - "CustomDeck": { - "2741": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "aa76f7" - }, - { - "Name": "Deck", - "Transform": { - "posX": -14.6439238, - "posY": 3.64394832, - "posZ": 15.6710043, - "rotX": 359.925018, - "rotY": 269.951935, - "rotZ": 0.040865615, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Myriad Forms", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 234632, - 234632 - ], - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 3.32917333, - "posY": 1.55092871, - "posZ": 8.001244, - "rotX": 359.9181, - "rotY": 270.30838, - "rotZ": 0.0161751453, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Myriad Forms", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234632, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "1cb90d" - }, - { - "Name": "Card", - "Transform": { - "posX": 3.34916377, - "posY": 1.70044243, - "posZ": 8.128719, - "rotX": 359.924255, - "rotY": 269.985535, - "rotZ": 0.05793682, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Myriad Forms", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234632, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b34663" - } - ], - "GUID": "8ffd3f" - }, - { - "Name": "Deck", - "Transform": { - "posX": -14.8206491, - "posY": 3.6349225, - "posZ": 16.052515, - "rotX": 359.914856, - "rotY": 270.001343, - "rotZ": 0.0135078868, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispering Chaos", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 234631, - 234630, - 234629, - 234628 - ], - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": -1.97101557, - "posY": 1.71412408, - "posZ": 7.06639051, - "rotX": 359.937531, - "rotY": 270.000946, - "rotZ": 180.035278, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispering Chaos (West)", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234631, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5fb187" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.4170475, - "posY": 1.7283392, - "posZ": 6.5700264, - "rotX": 359.9341, - "rotY": 269.993225, - "rotZ": 180.032532, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispering Chaos (South)", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234630, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "b8a1e4" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.44740915, - "posY": 1.71045923, - "posZ": 6.740841, - "rotX": 359.931427, - "rotY": 270.0095, - "rotZ": 180.011017, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispering Chaos (East)", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234629, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "bad74a" - }, - { - "Name": "Card", - "Transform": { - "posX": -2.3450408, - "posY": 1.561251, - "posZ": 6.693541, - "rotX": 359.920776, - "rotY": 270.0068, - "rotZ": 180.016266, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Whispering Chaos (North)", - "Description": "Power.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234628, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "6e73af" - } - ], - "GUID": "6bea62" - }, - { - "Name": "Deck", - "Transform": { - "posX": -13.6202126, - "posY": 3.6342957, - "posZ": 16.078228, - "rotX": 359.92395, - "rotY": 269.967834, - "rotZ": 0.0172034018, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nyarlathoteps", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 234624, - 234623, - 234622, - 234621, - 234620 - ], - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 1.59032273, - "posY": 1.71114, - "posZ": 10.1137714, - "rotX": 359.9768, - "rotY": 269.999084, - "rotZ": 180.141754, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nyarlathotep", - "Description": "Stalker Among the Stars", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234624, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "972fec" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.81655526, - "posY": 1.74129629, - "posZ": 10.4229708, - "rotX": 359.92392, - "rotY": 270.01947, - "rotZ": 181.771057, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nyarlathotep", - "Description": "God of a Thousand Forms", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234623, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d721c2" - }, - { - "Name": "Card", - "Transform": { - "posX": 2.28367186, - "posY": 1.75666821, - "posZ": 10.5099068, - "rotX": 359.9914, - "rotY": 270.0055, - "rotZ": 181.717712, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nyarlathotep", - "Description": "Messenger of the Outer Gods", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234622, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "0f7c12" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.51166916, - "posY": 1.705699, - "posZ": 10.2204876, - "rotX": 359.926361, - "rotY": 270.014221, - "rotZ": 180.007156, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nyarlathotep", - "Description": "The Faceless Whisperer", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234621, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8be848" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.88532555, - "posY": 1.55641615, - "posZ": 10.1746874, - "rotX": 359.915924, - "rotY": 270.004852, - "rotZ": 180.015762, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Nyarlathotep", - "Description": "The Crawling Chaos", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234620, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8b17a1" - } - ], - "GUID": "957ea3" - }, - { - "Name": "Card", - "Transform": { - "posX": -15.5584927, - "posY": 3.63897514, - "posZ": 16.35194, - "rotX": 359.93277, - "rotY": 269.9998, - "rotZ": 0.0170828868, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "High Priest Not to Be Described", - "Description": "Agent of the Other Gods", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234625, - "SidewaysCard": false, - "CustomDeck": { - "2346": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", - "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": false - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "8b17a1" - }, - { - "Name": "Deck", - "Transform": { - "posX": -14.9823351, - "posY": 3.63792014, - "posZ": 16.0282364, - "rotX": 359.922119, - "rotY": 270.004578, - "rotZ": 0.0167148858, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Forsaken Towers", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "SidewaysCard": false, - "DeckIDs": [ - 234735, - 234734, - 234733, - 234732, - 234731, - 234730 - ], - "CustomDeck": { - "2347": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "ContainedObjects": [ - { - "Name": "Card", - "Transform": { - "posX": 2.02258015, - "posY": 1.74255073, - "posZ": 11.2991524, - "rotX": -1.55280086E-05, - "rotY": 270.0002, - "rotZ": 181.4322, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Forsaken Tower", - "Description": "Kadath.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 234735, - "SidewaysCard": false, - "CustomDeck": { - "2347": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "11687a" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.75518823, - "posY": 1.71161091, - "posZ": 11.5014286, - "rotX": 359.9759, - "rotY": 270.000458, - "rotZ": 180.14238, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Forsaken Tower", - "Description": "Kadath.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 234734, - "SidewaysCard": false, - "CustomDeck": { - "2347": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d749ed" - }, - { - "Name": "Card", - "Transform": { - "posX": 2.0772686, - "posY": 1.70882714, - "posZ": 11.3180952, - "rotX": 359.920532, - "rotY": 269.9964, - "rotZ": 179.991867, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Forsaken Tower", - "Description": "Kadath.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 234733, - "SidewaysCard": false, - "CustomDeck": { - "2347": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "983fd2" - }, - { - "Name": "Card", - "Transform": { - "posX": 2.016233, - "posY": 1.74967539, - "posZ": 11.5280228, - "rotX": -9.711675E-06, - "rotY": 270.000122, - "rotZ": 181.0138, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Forsaken Tower", - "Description": "Kadath.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 234732, - "SidewaysCard": false, - "CustomDeck": { - "2347": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "450779" - }, - { - "Name": "Card", - "Transform": { - "posX": 1.57203829, - "posY": 1.743926, - "posZ": 11.5793247, - "rotX": 359.930817, - "rotY": 270.042236, - "rotZ": 182.003464, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Forsaken Tower", - "Description": "Kadath.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 234731, - "SidewaysCard": false, - "CustomDeck": { - "2347": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "13f5e3" - }, - { - "Name": "Card", - "Transform": { - "posX": -19.2113914, - "posY": 1.7386744, - "posZ": 18.6668644, - "rotX": 359.9396, - "rotY": 270.0362, - "rotZ": 0.002979445, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Forsaken Tower", - "Description": "Kadath.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 234730, - "SidewaysCard": false, - "CustomDeck": { - "2347": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3c7586" - } - ], - "GUID": "cdcb95" - } - ], - "PhysicsMaterial": { - "StaticFriction": 0.6, - "DynamicFriction": 0.6, - "Bounciness": 0.0, - "FrictionCombine": 0, - "BounceCombine": 0 - }, - "Rigidbody": { - "Mass": 1.375, - "Drag": 5.0, - "AngularDrag": 5.0, - "UseGravity": true - }, - "GUID": "c08e12" - }, - { - "Name": "Card", - "Transform": { - "posX": -23.676548, - "posY": 1.68622041, - "posZ": -0.0299953, + "posX": -30.2243, + "posY": 1.6975888, + "posZ": 7.56999969, "rotX": 359.9201, - "rotY": 270.0015, - "rotZ": 0.0168742519, + "rotY": 269.999756, + "rotZ": 0.016876461, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "Plateau of Leng", - "Description": "Leng.", + "Nickname": "Emergency Room", + "Description": "St. Mary's.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1053363,38 +1058554,41 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, - "CardID": 234725, + "CardID": 274417, "SidewaysCard": false, "CustomDeck": { - "2347": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "d17e52" + "XmlUI": "", + "GUID": "4dba7c" }, { "Name": "Custom_Tile", "Transform": { - "posX": -26.976, - "posY": 1.61910665, - "posZ": -0.0342008136, - "rotX": 0.07989463, - "rotY": 90.00057, - "rotZ": 359.9831, + "posX": -20.5588, + "posY": 1.61018264, + "posZ": 0.0490999855, + "rotX": 359.9201, + "rotY": 269.994446, + "rotZ": 0.0169059075, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 @@ -1053411,6 +1058605,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1053429,591 +1058625,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "29c6d1", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -30.2242, - "posY": 1.62478244, - "posZ": 3.86000133, - "rotX": 0.0168518238, - "rotY": 180.014359, - "rotZ": 0.07994374, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "d7defe", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2241764, - "posY": 1.69758856, - "posZ": 7.569973, - "rotX": 359.9201, - "rotY": 270.001343, - "rotZ": 0.0168742649, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Monastery of Leng", - "Description": "Leng.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 234727, - "SidewaysCard": false, - "CustomDeck": { - "2347": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "3b8e56" - }, - { - "Name": "Card", - "Transform": { - "posX": -30.2241726, - "posY": 1.69535065, - "posZ": -0.0301172044, - "rotX": 359.9201, - "rotY": 270.027466, - "rotZ": 0.0168379955, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Cold Wastes", - "Description": "Leng.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 234726, - "SidewaysCard": false, - "CustomDeck": { - "2347": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "72c773" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -33.4596, - "posY": 1.628154, - "posZ": -0.0121008549, - "rotX": 0.07989458, - "rotY": 90.00059, - "rotZ": 359.9831, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "364766", - "States": { - "2": { - "Name": "Custom_Tile", - "Transform": { - "posX": -39.7933121, - "posY": 1.63758957, - "posZ": 2.038383, - "rotX": 359.9201, - "rotY": 269.9961, - "rotZ": 0.0168742146, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/HyfE8m8.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "44b0c5" - }, - "3": { - "Name": "Custom_Tile", - "Transform": { - "posX": -38.8217163, - "posY": 1.99356019, - "posZ": 0.4159239, - "rotX": 359.9201, - "rotY": 272.9828, - "rotZ": 0.01687373, - "scaleX": 0.8, - "scaleY": 1.0, - "scaleZ": 0.8 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/dHKBLoD.png", - "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "5b38c6" - } - } - }, - { - "Name": "Card", - "Transform": { - "posX": -36.77311, - "posY": 1.70448279, - "posZ": -0.03002694, - "rotX": 359.9201, - "rotY": 270.001282, - "rotZ": 0.0168744959, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "Onyx Gates", - "Description": "Leng. Kadath.", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.713235259, - "g": 0.713235259, - "b": 0.713235259 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": true, - "CardID": 234728, - "SidewaysCard": false, - "CustomDeck": { - "2347": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", - "NumWidth": 10, - "NumHeight": 7, - "BackIsHidden": true, - "UniqueBack": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "ecaabf" - }, - { - "Name": "Custom_Tile", - "Transform": { - "posX": -36.7732, - "posY": 1.63165021, - "posZ": -3.83000016, - "rotX": 0.0168522038, - "rotY": 180.014084, - "rotZ": 0.07994394, - "scaleX": 1.0, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "Nickname": "", - "Description": "", - "GMNotes": "", - "ColorDiffuse": { - "r": 0.6045295, - "g": 0.6045295, - "b": 0.6045295 - }, - "Locked": false, - "Grid": true, - "Snap": true, - "IgnoreFoW": false, - "Autoraise": true, - "Sticky": true, - "Tooltip": true, - "GridProjection": false, - "HideWhenFaceDown": false, - "Hands": false, - "CustomImage": { - "ImageURL": "https://i.imgur.com/vppt2my.png", - "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", - "ImageScalar": 1.0, - "WidthScale": 0.0, - "CustomTile": { - "Type": 3, - "Thickness": 0.1, - "Stackable": false, - "Stretch": true - } - }, - "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", "GUID": "7234af", "States": { "2": { @@ -1054041,6 +1058655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054059,9 +1058675,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1054089,6 +1058705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054107,9 +1058725,161 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -27.288, + "posY": 1.61847508, + "posZ": -3.65579963, + "rotX": 359.954926, + "rotY": 225.42305, + "rotZ": 0.06807315, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "725b9b", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1054117,18 +1058887,18 @@ { "Name": "Card", "Transform": { - "posX": -36.7732849, - "posY": 1.70222449, - "posZ": -7.699998, + "posX": -23.6765, + "posY": 1.68622041, + "posZ": -0.0300004128, "rotX": 359.9201, - "rotY": 270.008057, - "rotZ": 0.01686508, + "rotY": 269.999725, + "rotZ": 0.0168765783, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "The Onyx Castle", - "Description": "Kadath.", + "Nickname": "Waiting Room", + "Description": "St. Mary's.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, @@ -1054139,31 +1058909,3595 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274416, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7f666b" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2243, + "posY": 1.69309223, + "posZ": -7.70000124, + "rotX": 359.9201, + "rotY": 269.9719, + "rotZ": 0.0169153381, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Experimental Therapies Ward", + "Description": "St. Mary's.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274418, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "98195d" + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 1.69670093, + "posY": 1.55831659, + "posZ": 14.2787008, + "rotX": 359.955139, + "rotY": 224.998123, + "rotZ": 0.06867259, + "scaleX": 2.0, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "Nickname": "Set-aside", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.02148666, + "g": 0.00100758043, + "b": 0.02148666 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", + "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 1, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 19.5292969, + "posY": 2.52368855, + "posZ": -65.9515457, + "rotX": 0.000274056656, + "rotY": 270.002136, + "rotZ": -0.00109385012, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Stairwell", + "Description": "St. Mary's.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274420, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bd26ee" + }, + { + "Name": "Deck", + "Transform": { + "posX": 43.1313362, + "posY": 3.40768933, + "posZ": 56.2772865, + "rotX": 0.0208102334, + "rotY": 270.0, + "rotZ": 0.0167693309, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Basement Doors", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 274422, + 274423, + 274421 + ], + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -1.17708433, + "posY": 1.34451783, + "posZ": 79.8246155, + "rotX": 0.0208419058, + "rotY": 270.000031, + "rotZ": 0.01655323, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Basement Door", + "Description": "St. Mary's. Basement.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274422, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4e2ab5" + }, + { + "Name": "Card", + "Transform": { + "posX": -1.3089, + "posY": 1.50554371, + "posZ": 80.2802658, + "rotX": 0.0207522381, + "rotY": 270.000031, + "rotZ": 0.01676218, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Basement Door", + "Description": "St. Mary's. Basement.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274423, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "42fa87" + }, + { + "Name": "Card", + "Transform": { + "posX": -1.28195369, + "posY": 1.52276206, + "posZ": 80.1422348, + "rotX": 0.020512946, + "rotY": 270.000061, + "rotZ": 0.0162001234, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Basement Door", + "Description": "St. Mary's. Basement.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274421, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "96c994" + } + ], + "GUID": "fca017" + }, + { + "Name": "Deck", + "Transform": { + "posX": 43.0967255, + "posY": 3.41693974, + "posZ": 62.8609238, + "rotX": 0.0208104774, + "rotY": 269.999939, + "rotZ": 0.0167694874, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Corrupted Orderly", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 274107, + 274107 + ], + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 37.81886, + "posY": 1.35207331, + "posZ": 57.2038651, + "rotX": 0.0207542721, + "rotY": 270.000031, + "rotZ": 0.0174547154, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Corrupted Orderly", + "Description": "Humanoid. Staff. Spider.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274107, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "eac2ed" + }, + { + "Name": "Card", + "Transform": { + "posX": 37.8268051, + "posY": 1.50629711, + "posZ": 57.4835663, + "rotX": 0.0150169851, + "rotY": 270.000061, + "rotZ": -0.00339917513, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Corrupted Orderly", + "Description": "Humanoid. Staff. Spider.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274107, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4d1ce5" + } + ], + "GUID": "c68917" + }, + { + "Name": "Deck", + "Transform": { + "posX": 46.8427353, + "posY": 3.4107976, + "posZ": 62.2912941, + "rotX": 0.0208184477, + "rotY": 269.972321, + "rotZ": 0.0167590678, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Outbreak", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 274108, + 274108, + 274108 + ], + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 50.1699524, + "posY": 1.4408015, + "posZ": 59.3374252, + "rotX": 356.973755, + "rotY": 269.985779, + "rotZ": 0.0568509735, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Outbreak", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274108, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "988ac2" + }, + { + "Name": "Card", + "Transform": { + "posX": 50.1682053, + "posY": 1.66445386, + "posZ": 59.337307, + "rotX": 359.134033, + "rotY": 269.999451, + "rotZ": 0.0628164, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Outbreak", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274108, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "39f2a0" + }, + { + "Name": "Card", + "Transform": { + "posX": 50.1681976, + "posY": 1.6678381, + "posZ": 59.337307, + "rotX": 358.764526, + "rotY": 269.999054, + "rotZ": 0.0756083652, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Outbreak", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274108, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "41bb1d" + } + ], + "GUID": "226a9c" + }, + { + "Name": "Deck", + "Transform": { + "posX": 47.2568779, + "posY": 3.41024566, + "posZ": 55.36397, + "rotX": 0.0208103452, + "rotY": 270.000275, + "rotZ": 0.0167692, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Spiders", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 274128, + 274128, + 274127, + 274127, + 274127, + 274126 + ], + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -17.82091, + "posY": 1.33128047, + "posZ": 55.306675, + "rotX": 0.0209979564, + "rotY": 270.0003, + "rotZ": 0.0154960454, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Sickening Webs", + "Description": "Obstacle.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274128, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "aaa961" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.1596622, + "posY": 1.4920063, + "posZ": 55.3749123, + "rotX": 0.0263286941, + "rotY": 270.0003, + "rotZ": 0.0107973032, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Sickening Webs", + "Description": "Obstacle.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274128, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f7b0ac" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.9226074, + "posY": 1.3302232, + "posZ": 52.41938, + "rotX": 0.0207031667, + "rotY": 269.9782, + "rotZ": 0.0206490774, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Swarm of Spiders", + "Description": "Creature. Spider.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274127, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "404e3b" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.1491051, + "posY": 1.47793663, + "posZ": 52.5626335, + "rotX": 0.007718184, + "rotY": 270.003845, + "rotZ": 0.0501582474, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Swarm of Spiders", + "Description": "Creature. Spider.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274127, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e20a3d" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.99768, + "posY": 1.49296021, + "posZ": 52.5603447, + "rotX": 0.0238676667, + "rotY": 269.989746, + "rotZ": 0.0183764044, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Swarm of Spiders", + "Description": "Creature. Spider.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274127, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ec88e2" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.800869, + "posY": 1.49662709, + "posZ": 55.9866867, + "rotX": 0.0207160283, + "rotY": 270.000061, + "rotZ": 0.0141102793, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Spider of Leng", + "Description": "Monster. Spider.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274126, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fc24fb" + } + ], + "GUID": "2dd09d" + }, + { + "Name": "Deck", + "Transform": { + "posX": 4.69255733, + "posY": 2.65170956, + "posZ": -23.6560268, + "rotX": 359.9201, + "rotY": 269.995331, + "rotZ": 0.016883295, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agents of Atlach-Nacha", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 274110, + 274110, + 274109, + 274109 + ], + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -11.7681608, + "posY": 1.67323828, + "posZ": 12.4915247, + "rotX": 359.9206, + "rotY": 270.000519, + "rotZ": 0.0129873687, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Will of the Spider-Mother", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274110, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "50e06a" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.6543922, + "posY": 1.81859434, + "posZ": 12.3625975, + "rotX": 359.941925, + "rotY": 270.001648, + "rotZ": 0.00295316125, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Will of the Spider-Mother", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274110, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "924656" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.8818655, + "posY": 1.83639562, + "posZ": 12.4194412, + "rotX": 359.936554, + "rotY": 269.993164, + "rotZ": 0.0173758585, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Grey Weaver", + "Description": "Monster. Spider.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274109, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b126fb" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.6577845, + "posY": 1.83786273, + "posZ": 12.0466986, + "rotX": 359.9192, + "rotY": 270.011932, + "rotZ": 0.0173931215, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Grey Weaver", + "Description": "Monster. Spider.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274109, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "621de5" + } + ], + "GUID": "cfbe20" + }, + { + "Name": "Card", + "Transform": { + "posX": 42.94955, + "posY": 3.427797, + "posZ": 66.3755, + "rotX": 0.0208236557, + "rotY": 270.0, + "rotZ": 0.0167942159, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Randolph Carter", + "Description": "Chained to the Waking World", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274204, + "SidewaysCard": false, + "CustomDeck": { + "2742": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "aebf12" + }, + { + "Name": "Card", + "Transform": { + "posX": 5.185056, + "posY": 2.65543985, + "posZ": -2.58340144, + "rotX": 0.0, + "rotY": 270.0, + "rotZ": 0.0, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Infestation Begins", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274424, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e5c9af" + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 42.9512177, + "posY": 3.34053063, + "posZ": 68.2738647, + "rotX": 0.00529053528, + "rotY": 270.000732, + "rotZ": 0.054995358, + "scaleX": 3.0, + "scaleY": 3.0, + "scaleZ": 3.0 + }, + "Nickname": "Infestation Bag", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "http://cloud-3.steamusercontent.com/ugc/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/959719855127875098/FDA724CE3F0F9C62A141C0B33CAB238C40EDEE32/", + "NormalURL": "", + "ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929350/39BD77E7ADC7C32EC6BDB21649FDE8B65E8E1968/", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Custom_Tile", + "Transform": { + "posX": 52.27346, + "posY": 2.065368, + "posZ": 70.6387939, + "rotX": 0.0200458653, + "rotY": 269.994446, + "rotZ": 0.06477361, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/1plY463.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d4467c" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": 55.8118439, + "posY": 1.98421216, + "posZ": 72.7538, + "rotX": 0.0208075028, + "rotY": 269.99408, + "rotZ": 0.0167706311, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/1plY463.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "163f65" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": 58.8788071, + "posY": 1.9852159, + "posZ": 72.3781, + "rotX": 0.02081059, + "rotY": 269.995483, + "rotZ": 0.0167716853, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/1plY463.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b5bb5c" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": 61.6115227, + "posY": 1.98578739, + "posZ": 70.93989, + "rotX": 0.0208105054, + "rotY": 269.9955, + "rotZ": 0.0167717226, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/1plY463.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1a1506" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": 52.4895058, + "posY": 2.06544662, + "posZ": 70.59631, + "rotX": 0.03353666, + "rotY": 269.993683, + "rotZ": 0.0588619523, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/stbBxtx.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "cc8bbb" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": 53.16047, + "posY": 2.064702, + "posZ": 70.44286, + "rotX": 359.9398, + "rotY": 270.049561, + "rotZ": 0.0806277841, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/VzhJJaH.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4ad9ad" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": 52.28967, + "posY": 2.064728, + "posZ": 70.14878, + "rotX": 0.0280863326, + "rotY": 269.995758, + "rotZ": 0.062192, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/VzhJJaH.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7d6103" + } + ], + "GUID": "0257a2" + } + ], + "PhysicsMaterial": { + "StaticFriction": 0.6, + "DynamicFriction": 0.6, + "Bounciness": 0.0, + "FrictionCombine": 0, + "BounceCombine": 0 + }, + "Rigidbody": { + "Mass": 1.375, + "Drag": 5.0, + "AngularDrag": 5.0, + "UseGravity": true + }, + "GUID": "a45247" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.72469974, + "posY": 1.65664113, + "posZ": 0.373300344, + "rotX": 0.0168466475, + "rotY": 179.991745, + "rotZ": 0.08025517, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agenda Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, - "Hands": true, - "CardID": 234729, - "SidewaysCard": false, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 274607, + 274606, + 274605 + ], "CustomDeck": { - "2347": { - "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/", - "BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/", + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", - "GUID": "93e081" + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -2.72472239, + "posY": 1.65704656, + "posZ": 0.37329495, + "rotX": 0.0174119882, + "rotY": 179.992126, + "rotZ": 0.07683178, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hospital of Horrors", + "Description": "Agenda 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274607, + "SidewaysCard": true, + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d810aa" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.72472978, + "posY": 1.80680585, + "posZ": 0.3733177, + "rotX": 0.0283064954, + "rotY": 179.9964, + "rotZ": 0.06661427, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Infestation Spreads", + "Description": "Agenda 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274606, + "SidewaysCard": true, + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9a9007" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.72472048, + "posY": 1.82436967, + "posZ": 0.3733217, + "rotX": 0.014995547, + "rotY": 179.997269, + "rotZ": 0.07805128, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Halls of St. Mary's", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274605, + "SidewaysCard": true, + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "87ab5b" + } + ], + "GUID": "ae9c75" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.1198978, + "posY": 1.67707765, + "posZ": -0.0300003346, + "rotX": 359.9201, + "rotY": 269.9825, + "rotZ": 0.0169005711, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Records Office", + "Description": "St. Mary's.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274419, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b37a4c" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.95600057, + "posY": 1.65564823, + "posZ": -10.4412012, + "rotX": 359.919739, + "rotY": 270.000519, + "rotZ": 0.0168403443, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "Waking Nightmare", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274415, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b4ef40" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.63180041, + "posY": 1.58215821, + "posZ": -14.941102, + "rotX": 359.919739, + "rotY": 270.030762, + "rotZ": 0.016794974, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "Campaign B Setup", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'TDE_B'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bbb70a" + }, + { + "Name": "Deck", + "Transform": { + "posX": -3.9277, + "posY": 1.71841538, + "posZ": 5.757101, + "rotX": 359.919739, + "rotY": 270.0, + "rotZ": 180.016815, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 234118, + 281715, + 234116, + 281724, + 234227, + 281715, + 281723, + 281725, + 234116, + 281725, + 234117, + 281706, + 234116, + 281724, + 281715, + 234227, + 281706, + 234117, + 281723, + 234118 + ], + "CustomDeck": { + "2341": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2817": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2342": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -15.4338884, + "posY": 1.49635184, + "posZ": 66.64195, + "rotX": 0.0248884521, + "rotY": 270.0327, + "rotZ": -0.000242893628, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dissonant Voices", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234118, + "SidewaysCard": false, + "CustomDeck": { + "2341": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "97416f" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.2954206, + "posY": 1.94337964, + "posZ": 75.87013, + "rotX": 0.0, + "rotY": 270.0, + "rotZ": 0.0, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers of Hypnos", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 281715, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "690fdf" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.5085716, + "posY": 1.48227274, + "posZ": 66.83469, + "rotX": 0.0259839334, + "rotY": 270.0125, + "rotZ": 0.0103577031, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Rotting Remains", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234116, + "SidewaysCard": false, + "CustomDeck": { + "2341": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ab3719" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.2898378, + "posY": 1.49847782, + "posZ": 74.49116, + "rotX": 0.027782822, + "rotY": 270.000122, + "rotZ": 0.0170789734, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Glimpse of the Underworld", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 281724, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "81396b" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.252141, + "posY": 1.33558333, + "posZ": 67.1355743, + "rotX": 0.021979766, + "rotY": 270.0025, + "rotZ": 0.009349022, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Locked Door", + "Description": "Obstacle.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234227, + "SidewaysCard": false, + "CustomDeck": { + "2342": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4904d0" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.3957472, + "posY": 1.94239068, + "posZ": 72.61547, + "rotX": 0.0, + "rotY": 270.0, + "rotZ": 0.0, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers of Hypnos", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 281715, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ab4c37" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.8716145, + "posY": 1.4960593, + "posZ": 69.9934, + "rotX": 0.02509427, + "rotY": 270.0002, + "rotZ": 0.0154290823, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Night Terrors", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 281723, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "638b7c" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.9654636, + "posY": 1.41237366, + "posZ": 74.82911, + "rotX": 0.0206071083, + "rotY": 269.986633, + "rotZ": 356.035858, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Threads of Reality", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 281725, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3e7219" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.1918449, + "posY": 1.49825406, + "posZ": 67.0849838, + "rotX": 0.0185506232, + "rotY": 269.999939, + "rotZ": 0.0159074273, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Rotting Remains", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234116, + "SidewaysCard": false, + "CustomDeck": { + "2341": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ab3719" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.9450645, + "posY": 1.63163185, + "posZ": 74.42269, + "rotX": 0.02133287, + "rotY": 270.000122, + "rotZ": 358.8375, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Threads of Reality", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 281725, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c3cc96" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.5149069, + "posY": 1.48991072, + "posZ": 66.61328, + "rotX": 0.02902092, + "rotY": 270.045776, + "rotZ": -0.00427468959, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Frozen in Fear", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234117, + "SidewaysCard": false, + "CustomDeck": { + "2341": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0f4202" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.4196062, + "posY": 1.49738181, + "posZ": 70.0118942, + "rotX": 0.02183292, + "rotY": 270.007874, + "rotZ": 0.0130473021, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Suspicious Orderly", + "Description": "Humanoid. Staff.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 281706, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5e6da0" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.5316477, + "posY": 1.48447287, + "posZ": 67.16099, + "rotX": 0.0189164747, + "rotY": 270.0087, + "rotZ": 0.0117459893, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Rotting Remains", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234116, + "SidewaysCard": false, + "CustomDeck": { + "2341": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "435a47" + }, + { + "Name": "Card", + "Transform": { + "posX": -14.9562168, + "posY": 1.33799672, + "posZ": 74.79575, + "rotX": 0.02128689, + "rotY": 269.948517, + "rotZ": 0.0135712354, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Glimpse of the Underworld", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 281724, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f34d5f" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.4451923, + "posY": 1.9415797, + "posZ": 69.90859, + "rotX": 0.0, + "rotY": 270.0, + "rotZ": 0.0, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers of Hypnos", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 281715, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "200ac5" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.2474775, + "posY": 1.47428286, + "posZ": 67.0842, + "rotX": -0.00303730019, + "rotY": 269.9937, + "rotZ": 0.01247096, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Locked Door", + "Description": "Obstacle.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234227, + "SidewaysCard": false, + "CustomDeck": { + "2342": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ab3719" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.0796642, + "posY": 1.33664393, + "posZ": 70.20619, + "rotX": 0.0209349841, + "rotY": 270.000122, + "rotZ": 0.01593082, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Suspicious Orderly", + "Description": "Humanoid. Staff.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 281706, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9b9df4" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.5246363, + "posY": 1.48501992, + "posZ": 66.8433151, + "rotX": 0.0193933919, + "rotY": 270.0156, + "rotZ": 0.00433985237, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Frozen in Fear", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234117, + "SidewaysCard": false, + "CustomDeck": { + "2341": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c70601" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.7347469, + "posY": 1.33525944, + "posZ": 70.05127, + "rotX": 0.0210470781, + "rotY": 270.0003, + "rotZ": 0.0151563631, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Night Terrors", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 281723, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ef90ee" + }, + { + "Name": "Card", + "Transform": { + "posX": -15.4043, + "posY": 1.45409477, + "posZ": 67.20083, + "rotX": 0.0148261543, + "rotY": 270.0008, + "rotZ": 0.01684804, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dissonant Voices", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 234118, + "SidewaysCard": false, + "CustomDeck": { + "2341": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f5c831" + } + ], + "GUID": "e7b32a" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.6803, + "posY": 1.65498567, + "posZ": -5.0492, + "rotX": 0.0168722291, + "rotY": 179.9734, + "rotZ": 0.08024971, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 274610, + 274609, + 274608 + ], + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -2.68031788, + "posY": 1.65541518, + "posZ": -5.049209, + "rotX": 0.0172575135, + "rotY": 179.9738, + "rotZ": 0.0783508047, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Containing the Outbreak", + "Description": "Act 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274610, + "SidewaysCard": true, + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "aa505a" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.68846774, + "posY": 1.78980541, + "posZ": -5.048556, + "rotX": 0.012574112, + "rotY": 179.992172, + "rotZ": 0.0530508421, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Search for the Patient", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274609, + "SidewaysCard": true, + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c04e9d" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.68853617, + "posY": 1.822758, + "posZ": -5.048544, + "rotX": 0.0192118511, + "rotY": 179.991821, + "rotZ": 0.07963451, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Looking for Answers", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274608, + "SidewaysCard": true, + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6789c0" + } + ], + "GUID": "f1a8d3" } ], - "GUID": "185096", + "GUID": "599cb7", "AttachedDecals": [ { "Transform": { @@ -1054188,12 +1062522,7273 @@ { "Name": "Custom_Model_Bag", "Transform": { - "posX": 12.2495823, + "posX": 12.2521019, + "posY": 1.46795821, + "posZ": 11.9864006, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.0168739948, + "scaleX": 2.21, + "scaleY": 0.46, + "scaleZ": 2.42 + }, + "Nickname": "2-A: The Search For Kadath", + "Description": "The Dream Eaters", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/780741189053435823/96C94958445E20B7DFB0D6B43AC86B4C491895B6/", + "NormalURL": "", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CustomShader": { + "SpecularColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "SpecularIntensity": 0.0, + "SpecularSharpness": 2.0, + "FresnelStrength": 0.0 + }, + "CastShadows": true + }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", + "LuaScriptState": "{\"ml\":{\"02da4e\":{\"lock\":false,\"pos\":{\"x\":-30.2207,\"y\":1.6961,\"z\":2.428},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"04c6b1\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":269.9996,\"z\":0.0168}},\"175627\":{\"lock\":false,\"pos\":{\"x\":-30.2382,\"y\":1.6225,\"z\":-3.8293},\"rot\":{\"x\":0.0175,\"y\":179.5781,\"z\":0.0798}},\"247820\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.985,\"z\":0.0169}},\"269d43\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7397,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"65c10b\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-27.1175,\"y\":1.6193,\"z\":0.0633},\"rot\":{\"x\":359.9201,\"y\":270.0033,\"z\":0.0169}},\"7c8ea4\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9997,\"z\":0.0803}},\"83569f\":{\"lock\":false,\"pos\":{\"x\":-12.3269,\"y\":1.6737,\"z\":11.2204},\"rot\":{\"x\":359.9201,\"y\":270.0026,\"z\":0.0169}},\"972cb1\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0015,\"z\":0.0169}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.6766,\"y\":1.5823,\"z\":-14.8239},\"rot\":{\"x\":359.9197,\"y\":270.0305,\"z\":0.0168}},\"d74877\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":0.0169}},\"d87cb2\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6543,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0002,\"z\":0.0803}},\"e93f00\":{\"lock\":false,\"pos\":{\"x\":-12.262,\"y\":1.6729,\"z\":8.8014},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 1.69660068, + "posY": 1.55831659, + "posZ": 14.2787008, + "rotX": 359.955139, + "rotY": 224.997971, + "rotZ": 0.06867303, + "scaleX": 2.0, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "Nickname": "Set-aside", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.02148666, + "g": 0.00100758043, + "b": 0.02148666 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://paste.ee/r/ylQzQ", + "DiffuseURL": "http://i.imgur.com/yVhOLYs.jpg", + "NormalURL": "http://i.imgur.com/f1ogHo6.jpg", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 1, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Deck", + "Transform": { + "posX": -2.11199522, + "posY": 3.64101839, + "posZ": 19.6899319, + "rotX": 359.9211, + "rotY": 269.999939, + "rotZ": 0.176839828, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Locations", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 275533, + 275529, + 275532, + 275530, + 275531, + 275534, + 275535, + 275536, + 275537, + 275538, + 275539, + 275540, + 275541, + 275542 + ], + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -12.4419594, + "posY": 1.57453752, + "posZ": 13.4791069, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168767087, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Forbidden Lands", + "Description": "Forbidden. Wastes.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275533, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8e9ed5" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.274209, + "posY": 1.57808256, + "posZ": 26.3125839, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168756042, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Kadatheron", + "Description": "Mnar. Ancient. City. Port.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275529, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "056275" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.2036991, + "posY": 1.57514131, + "posZ": 16.6578, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.01687632, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ilek-Vad", + "Description": "Forbidden. City. Port.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275532, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "96cca3" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.09113, + "posY": 1.5767647, + "posZ": 22.70372, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168759152, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Sarnath", + "Description": "Mnar. Ancient. Ruins.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275530, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9a739a" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.5108461, + "posY": 1.57645667, + "posZ": 19.6702366, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168755651, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ruins of Ib", + "Description": "Mnar. Ancient. Ruins.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275531, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1d61e4" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.4753046, + "posY": 1.57377851, + "posZ": 10.7440977, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168763455, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Zulan-Thek", + "Description": "Forbidden. City.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275534, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ae139d" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.71207, + "posY": 1.573349, + "posZ": 8.164102, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168757625, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Baharna", + "Description": "Oriab. City. Port.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275535, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6ebff1" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.7785082, + "posY": 1.57264042, + "posZ": 5.44348049, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168752186, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mt. Ngranek", + "Description": "Oriab. Mountain.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275536, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "42511b" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.9459677, + "posY": 1.57212532, + "posZ": 2.901174, + "rotX": 359.920135, + "rotY": 269.999969, + "rotZ": 0.0168754458, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nameless Ruins", + "Description": "Oriab. Ancient. Ruins.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275537, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3bfae3" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.4735508, + "posY": 1.57046366, + "posZ": -0.5054646, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168750454, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Celephaïs", + "Description": "Ooth-Nargai. City. Port.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275538, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b9d7d3" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.8110142, + "posY": 1.57021189, + "posZ": -2.957839, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168750752, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Serannian", + "Description": "Ooth-Nargai. City. Port.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275539, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8eaa3e" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.9111652, + "posY": 1.56951559, + "posZ": -5.79671955, + "rotX": 359.920135, + "rotY": 269.9999, + "rotZ": 0.016874861, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hazuth-Kleg", + "Description": "Ooth-Nargai. City.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275540, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ac608d" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.7769585, + "posY": 1.56846, + "posZ": -8.745693, + "rotX": 359.920135, + "rotY": 269.999969, + "rotZ": 0.0168759543, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Temple of Unattainable Desires", + "Description": "Ooth-Nargai. Temple.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275541, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "566e24" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.8705034, + "posY": 1.567704, + "posZ": -11.7560482, + "rotX": 359.920135, + "rotY": 269.9999, + "rotZ": 0.01687664, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "City-Which-Appears-On-No-Map", + "Description": "City. Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275542, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1892f8" + } + ], + "GUID": "c5ed15" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.920171, + "posY": 3.61802959, + "posZ": 15.9969339, + "rotX": 359.9201, + "rotY": 270.0074, + "rotZ": 0.016867, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Beings of Ib", + "Description": "Monster. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275239, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b49497" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.5399425, + "posY": 3.61615133, + "posZ": 6.68237352, + "rotX": 359.920135, + "rotY": 270.000031, + "rotZ": 0.0168760046, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Crawling Mist", + "Description": "Monster. Avatar.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 277811, + "SidewaysCard": false, + "CustomDeck": { + "2778": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "aa76f7" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.14765286, + "posY": 3.6174407, + "posZ": 12.9187422, + "rotX": 359.920135, + "rotY": 269.99585, + "rotZ": 0.0168837085, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cats of Ulthar", + "Description": "Creature. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275236, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "35c471" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.4513042, + "posY": 3.61690283, + "posZ": 9.653793, + "rotX": 359.920135, + "rotY": 269.9958, + "rotZ": 0.0168841016, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Stalking Manticore", + "Description": "Creature. Monster. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275237, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d6c02c" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.53071117, + "posY": 3.615322, + "posZ": 3.90885615, + "rotX": 359.920135, + "rotY": 269.980042, + "rotZ": 0.0169055965, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Horde of Night", + "Description": "Monster. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275238, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "499dd5" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.79704356, + "posY": 3.6417253, + "posZ": 21.72567, + "rotX": 359.920135, + "rotY": 270.021881, + "rotZ": 0.0168662611, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Tenebrous Nightgaunts", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 275241, + 275241 + ], + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -13.2128162, + "posY": 1.5778501, + "posZ": 21.1856079, + "rotX": 359.920441, + "rotY": 270.021881, + "rotZ": 0.0147382179, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Tenebrous Nightgaunt", + "Description": "Monster. Nightgaunt.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275241, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1ce529" + }, + { + "Name": "Card", + "Transform": { + "posX": -13.3413391, + "posY": 1.73354626, + "posZ": 21.2646561, + "rotX": 359.915649, + "rotY": 270.0219, + "rotZ": 0.012841003, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Tenebrous Nightgaunt", + "Description": "Monster. Nightgaunt.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275241, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "987cef" + } + ], + "GUID": "96da72" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.6915164, + "posY": 3.62443757, + "posZ": 18.5137444, + "rotX": 359.920135, + "rotY": 269.9981, + "rotZ": 0.01687923, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Corsairs of Leng", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 277930, + 277930 + ], + "CustomDeck": { + "2779": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -0.8792448, + "posY": 1.54885137, + "posZ": -18.964489, + "rotX": 359.920258, + "rotY": 270.002075, + "rotZ": 0.0160020888, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Corsair of Leng", + "Description": "Humanoid. Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 277930, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "646a1a" + }, + { + "Name": "Card", + "Transform": { + "posX": -0.6101885, + "posY": 1.70970118, + "posZ": -18.9958839, + "rotX": 359.922028, + "rotY": 270.014343, + "rotZ": 0.0135500757, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Corsair of Leng", + "Description": "Humanoid. Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 277930, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a45b3a" + } + ], + "GUID": "41e8e0" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.50804567, + "posY": 3.61565685, + "posZ": 14.4788265, + "rotX": 359.920135, + "rotY": 270.000336, + "rotZ": 0.0168757457, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Priests of a Thousand Masks", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 275240, + 275240, + 275240 + ], + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -14.5339622, + "posY": 1.57638431, + "posZ": 10.27148, + "rotX": 359.921417, + "rotY": 270.0005, + "rotZ": 0.00846398, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Priests of a Thousand Masks", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275240, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3c60a3" + }, + { + "Name": "Card", + "Transform": { + "posX": -14.1222458, + "posY": 1.73135841, + "posZ": 10.0143385, + "rotX": 359.9022, + "rotY": 270.0005, + "rotZ": 0.0194792971, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Priests of a Thousand Masks", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275240, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "929b02" + }, + { + "Name": "Card", + "Transform": { + "posX": -14.122365, + "posY": 1.74570465, + "posZ": 10.0143471, + "rotX": 359.9207, + "rotY": 270.000519, + "rotZ": 0.015264404, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Priests of a Thousand Masks", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275240, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3c60a3" + } + ], + "GUID": "678204" + } + ], + "PhysicsMaterial": { + "StaticFriction": 0.6, + "DynamicFriction": 0.6, + "Bounciness": 0.0, + "FrictionCombine": 0, + "BounceCombine": 0 + }, + "Rigidbody": { + "Mass": 1.375, + "Drag": 5.0, + "AngularDrag": 5.0, + "UseGravity": true + }, + "GUID": "65c10b" + }, + { + "Name": "Deck", + "Transform": { + "posX": -3.92770028, + "posY": 1.73973322, + "posZ": 5.757201, + "rotX": 359.919739, + "rotY": 270.0, + "rotZ": 180.016815, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 275243, + 275244, + 275934, + 275915, + 275913, + 275921, + 275244, + 275921, + 275243, + 275929, + 275915, + 275932, + 275932, + 275912, + 275929, + 275933, + 275931, + 275922, + 275245, + 275915, + 275914, + 275931, + 275922, + 275245 + ], + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -7.5146904, + "posY": 1.865406, + "posZ": 22.4842567, + "rotX": -0.004218876, + "rotY": 270.000519, + "rotZ": 0.0759157, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nightriders", + "Description": "Creature. Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275243, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0f7d44" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.44637251, + "posY": 1.68690383, + "posZ": 22.23971, + "rotX": 359.9574, + "rotY": 269.977051, + "rotZ": 357.952332, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Song of the Magah Bird", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275244, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "da130c" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.601114, + "posY": 1.82774377, + "posZ": 31.1552677, + "rotX": 359.9396, + "rotY": 269.72702, + "rotZ": 356.6766, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Zoog Burrow", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275934, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8b08a8" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.51770973, + "posY": 1.710178, + "posZ": 31.68852, + "rotX": 0.8261434, + "rotY": 270.239044, + "rotZ": 355.267151, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers of Hypnos", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275915, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ce95a3" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.12121534, + "posY": 1.68012333, + "posZ": 31.1778, + "rotX": 359.866577, + "rotY": 270.012543, + "rotZ": 354.3614, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Law of 'Ygiroth (Discord)", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275913, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "48601c" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.29006863, + "posY": 1.77508748, + "posZ": 31.6659145, + "rotX": 0.04985804, + "rotY": 270.120728, + "rotZ": 356.119568, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dreamlands Eclipse", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275921, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9df5fa" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.1733017, + "posY": 1.56984, + "posZ": 22.9708328, + "rotX": 359.9215, + "rotY": 269.982056, + "rotZ": 0.00721275574, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Song of the Magah Bird", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275244, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "81d1a4" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.241075, + "posY": 1.76712751, + "posZ": 31.5813789, + "rotX": 0.313825518, + "rotY": 270.16687, + "rotZ": 355.37915, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dreamlands Eclipse", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275921, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c942d4" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.687539, + "posY": 1.857332, + "posZ": 22.0311432, + "rotX": 0.133902177, + "rotY": 270.010681, + "rotZ": 0.476255745, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nightriders", + "Description": "Creature. Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275243, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f3bc7d" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.118088, + "posY": 3.12496376, + "posZ": 30.7177525, + "rotX": 359.958679, + "rotY": 270.011841, + "rotZ": 0.008831963, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hunted by Corsairs", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275929, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d30166" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.30569649, + "posY": 1.74557066, + "posZ": 31.7424488, + "rotX": 0.0877673253, + "rotY": 270.11792, + "rotZ": 355.527863, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers of Hypnos", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275915, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6476cc" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.316199, + "posY": 1.82182014, + "posZ": 31.6502972, + "rotX": 359.841431, + "rotY": 269.8029, + "rotZ": 356.4663, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Stealthy Zoog", + "Description": "Creature. Zoog.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275932, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "db8153" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.172232, + "posY": 1.94074166, + "posZ": 31.5613937, + "rotX": 359.7404, + "rotY": 269.707947, + "rotZ": 356.947235, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Stealthy Zoog", + "Description": "Creature. Zoog.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275932, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "27dc33" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.29805, + "posY": 1.84863257, + "posZ": 31.5060158, + "rotX": 359.871979, + "rotY": 269.793152, + "rotZ": 356.9523, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Law of 'Ygiroth (Chaos)", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275912, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fc58cb" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.19534, + "posY": 1.7781316, + "posZ": 31.6812077, + "rotX": 359.9493, + "rotY": 270.1191, + "rotZ": 356.545166, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hunted by Corsairs", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275929, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4f56f1" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.577619, + "posY": 1.79761493, + "posZ": 32.03079, + "rotX": 359.902771, + "rotY": 269.943176, + "rotZ": 357.5296, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Inconspicuous Zoog", + "Description": "Creature. Zoog.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275933, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d1c795" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.341299, + "posY": 1.76366591, + "posZ": 32.1722832, + "rotX": 359.099731, + "rotY": 269.9903, + "rotZ": 359.105042, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Furtive Zoog", + "Description": "Creature. Zoog.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275931, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fb76f8" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.105017, + "posY": 1.76853013, + "posZ": 31.95703, + "rotX": 359.90802, + "rotY": 269.7754, + "rotZ": 356.3118, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Prismatic Phenomenon", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275922, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c9cb0f" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.597225, + "posY": 1.99104929, + "posZ": 21.85384, + "rotX": 359.8399, + "rotY": 270.006683, + "rotZ": 357.425751, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wondrous Lands", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275245, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5ad5e0" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.43821573, + "posY": 1.7685262, + "posZ": 31.8188763, + "rotX": 359.941, + "rotY": 269.647675, + "rotZ": 356.452148, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers of Hypnos", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275915, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a3ada0" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.20290136, + "posY": 1.83644211, + "posZ": 31.8489876, + "rotX": 359.920715, + "rotY": 269.767731, + "rotZ": 357.605316, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Law of 'Ygiroth (Pandemonium)", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275914, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bf7d6b" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.07092571, + "posY": 1.79056633, + "posZ": 31.77091, + "rotX": 359.9197, + "rotY": 270.0309, + "rotZ": 0.0158037879, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Furtive Zoog", + "Description": "Creature. Zoog.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275931, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4a2c73" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.08372736, + "posY": 1.80981278, + "posZ": 31.771904, + "rotX": 359.922119, + "rotY": 269.89624, + "rotZ": 357.844055, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Prismatic Phenomenon", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275922, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4b23ff" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.59687662, + "posY": 1.85007334, + "posZ": 21.9502544, + "rotX": 359.934662, + "rotY": 269.976685, + "rotZ": 358.089417, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wondrous Lands", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275245, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ee06eb" + } + ], + "GUID": "269d43" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.7248, + "posY": 1.66397738, + "posZ": 0.373300433, + "rotX": 0.01683533, + "rotY": 179.999741, + "rotZ": 0.0802579448, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agenda Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 275312, + 275311 + ], + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -3.74359059, + "posY": 1.57216394, + "posZ": 46.6948051, + "rotX": 0.0174726825, + "rotY": 179.998779, + "rotZ": 0.0782274157, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agents of Outer Gods", + "Description": "Agenda 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275312, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a6ecc6" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.60695219, + "posY": 1.71743131, + "posZ": 46.6658745, + "rotX": 0.0156136546, + "rotY": 179.9985, + "rotZ": 0.06568816, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Journey Across the Dreamlands", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275311, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "cbc59e" + } + ], + "GUID": "7c8ea4" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.68859982, + "posY": 1.65432537, + "posZ": -5.04850054, + "rotX": 0.0168349724, + "rotY": 180.000168, + "rotZ": 0.08025766, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 275317, + 275316, + 275315, + 275314, + 275313 + ], + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -13.11061, + "posY": 1.58402824, + "posZ": 42.85089, + "rotX": 0.0178025123, + "rotY": 179.999786, + "rotZ": 0.0741316751, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The King's Decree", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275317, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7d8966" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.65023, + "posY": 1.72878861, + "posZ": 42.7050934, + "rotX": 0.0175244045, + "rotY": 180.000031, + "rotZ": 0.064095445, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Seek Out the Night", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275316, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d78fdd" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.9636154, + "posY": 1.74668288, + "posZ": 42.86624, + "rotX": 0.0148617644, + "rotY": 180.0009, + "rotZ": 0.08124309, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Doom That Came Before", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275315, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c65b29" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.7072363, + "posY": 1.73268008, + "posZ": 43.0748558, + "rotX": 0.0136243543, + "rotY": 180.001038, + "rotZ": 0.0829606, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Isle of Oriab", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275314, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "20f212" + }, + { + "Name": "Card", + "Transform": { + "posX": -13.3660841, + "posY": 1.73149014, + "posZ": 42.6055, + "rotX": 0.0154368114, + "rotY": 180.000336, + "rotZ": 0.07339504, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Kingdom of the Skai", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275313, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "cbc59e" + } + ], + "GUID": "d87cb2" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.956, + "posY": 1.65564811, + "posZ": -10.4413013, + "rotX": 359.919739, + "rotY": 269.999634, + "rotZ": 0.0168415941, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "The Search for Kadath", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275525, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "04c6b1" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.67655945, + "posY": 1.58225548, + "posZ": -14.8239346, + "rotX": 359.919739, + "rotY": 270.030518, + "rotZ": 0.0167951863, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "The Search For Kadath", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'The Search For Kadath'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bbb70a" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.3268976, + "posY": 1.67370689, + "posZ": 11.2203989, + "rotX": 359.9201, + "rotY": 270.002563, + "rotZ": 0.0168726575, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Pack of Vooniths", + "Description": "Creature. Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275242, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "83569f" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.262, + "posY": 1.67290413, + "posZ": 8.801399, + "rotX": 359.9201, + "rotY": 270.000061, + "rotZ": 0.0168763548, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Virgil Gray", + "Description": "Writer of Strange Tales", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275235, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e93f00" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765, + "posY": 1.68622041, + "posZ": -0.03000035, + "rotX": 359.9201, + "rotY": 269.9958, + "rotZ": 0.0168822147, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ulthar", + "Description": "Skai. City.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275526, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d74877" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -27.1175, + "posY": 1.61933243, + "posZ": 0.06329975, + "rotX": 359.9201, + "rotY": 270.0033, + "rotZ": 0.016895365, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7234af", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2207, + "posY": 1.6960696, + "posZ": 2.42799973, + "rotX": 359.9201, + "rotY": 270.000427, + "rotZ": 0.0168756526, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Pack of Vooniths", + "Description": "Creature. Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": false, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275242, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "02da4e" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2242, + "posY": 1.69535065, + "posZ": -0.03000038, + "rotX": 359.9201, + "rotY": 269.984955, + "rotZ": 0.0168971121, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Skai River", + "Description": "Skai. City.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275527, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "247820" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.2382, + "posY": 1.62253785, + "posZ": -3.82929969, + "rotX": 0.0174597874, + "rotY": 179.578064, + "rotZ": 0.07980933, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "175627", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2243, + "posY": 1.69309235, + "posZ": -7.70000124, + "rotX": 359.9201, + "rotY": 270.001526, + "rotZ": 0.0168739017, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dylath-Leen", + "Description": "Skai. City. Port.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275528, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "972cb1" + } + ], + "GUID": "7b07ca", + "AttachedDecals": [ + { + "Transform": { + "posX": -0.0021877822, + "posY": -0.08963572, + "posZ": -0.00288731651, + "rotX": 270.0, + "rotY": 359.869568, + "rotZ": 0.0, + "scaleX": 2.00000215, + "scaleY": 2.00000238, + "scaleZ": 2.00000262 + }, + "CustomDecal": { + "Name": "dunwich_back", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", + "Size": 7.4 + } + } + ] + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 12.2503014, + "posY": 1.47267234, + "posZ": 27.9864044, + "rotX": 359.920135, + "rotY": 270.0053, + "rotZ": 0.0168671012, + "scaleX": 2.21, + "scaleY": 0.46, + "scaleZ": 2.42 + }, + "Nickname": "1-A: Beyond the Gates of Sleep", + "Description": "The Dream-Eaters", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/775107869055713524/616B6512BE4D795AE4FFC1D76DAC23B88F623B48/", + "NormalURL": "", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CustomShader": { + "SpecularColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "SpecularIntensity": 0.0, + "SpecularSharpness": 2.0, + "FresnelStrength": 0.0 + }, + "CastShadows": true + }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", + "LuaScriptState": "{\"ml\":{\"075016\":{\"lock\":false,\"pos\":{\"x\":-3.7237,\"y\":1.5823,\"z\":-14.9545},\"rot\":{\"x\":359.9197,\"y\":270.0308,\"z\":0.0168}},\"1b07cc\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6862,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"2cd5d4\":{\"lock\":false,\"pos\":{\"x\":-2.7245,\"y\":1.6571,\"z\":0.3734},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"42b4ff\":{\"lock\":false,\"pos\":{\"x\":-2.6888,\"y\":1.6535,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":180.0017,\"z\":0.0803}},\"54a280\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":-0.0038,\"z\":359.9201}},\"7ba884\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9979,\"z\":0.0687}},\"f07e08\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 1.69660068, + "posY": 1.55831647, + "posZ": 14.2787027, + "rotX": 359.955139, + "rotY": 224.99791, + "rotZ": 0.06867224, + "scaleX": 2.0, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "Nickname": "Set-aside", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.02148666, + "g": 0.00100758043, + "b": 0.02148666 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", + "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 1, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 39.0742722, + "posY": 3.42804384, + "posZ": 74.08097, + "rotX": 0.0177708846, + "rotY": 270.000183, + "rotZ": 0.0162155423, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Laboring Gug", + "Description": "Monster. Gug.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274101, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "974c44" + }, + { + "Name": "Card", + "Transform": { + "posX": 39.3514366, + "posY": 3.4098, + "posZ": 77.37932, + "rotX": 0.0208066069, + "rotY": 270.00946, + "rotZ": 0.01677401, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Randolph Carter", + "Description": "Expert Dreamer", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274200, + "SidewaysCard": false, + "CustomDeck": { + "2742": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "2cf22b" + }, + { + "Name": "Card", + "Transform": { + "posX": 43.96482, + "posY": 3.41234827, + "posZ": 80.36105, + "rotX": 0.0208074041, + "rotY": 270.000031, + "rotZ": 0.0167699456, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Kaman-Thah", + "Description": "Priest of the Dreamlands", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274413, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6ebabc" + }, + { + "Name": "Card", + "Transform": { + "posX": 38.74365, + "posY": 3.41053915, + "posZ": 80.65822, + "rotX": 0.0208071955, + "rotY": 270.000031, + "rotZ": 0.0167701822, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nasht", + "Description": "Priest of the Dreamlands", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274414, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "33f2ec" + }, + { + "Name": "Deck", + "Transform": { + "posX": 1.98281264, + "posY": 2.75759, + "posZ": 2.93342638, + "rotX": 359.955048, + "rotY": 270.004883, + "rotZ": 180.068741, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 274134, + 274122, + 274113, + 233721, + 274118, + 274132, + 274122, + 274103, + 274120, + 274132, + 274119, + 274131, + 274118, + 233720, + 274102, + 274111, + 274133, + 274120, + 274112, + 274103, + 274121, + 274114, + 233721, + 274131, + 274121, + 274119, + 233720 + ], + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2337": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 10.4340258, + "posY": 1.347994, + "posZ": 77.2828445, + "rotX": 0.0208079051, + "rotY": 270.0003, + "rotZ": 0.0167690869, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Zoog Burrow", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274134, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6aaec7" + }, + { + "Name": "Card", + "Transform": { + "posX": 19.31351, + "posY": 1.35409915, + "posZ": 87.16512, + "rotX": 0.0194639154, + "rotY": 270.016052, + "rotZ": 0.0158865564, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Prismatic Phenomenon", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274122, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b3f13e" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.704878, + "posY": 1.34584463, + "posZ": 80.7701645, + "rotX": 0.0208076891, + "rotY": 270.000183, + "rotZ": 0.016768489, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Law of 'Ygiroth (Discord)", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274113, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9a84de" + }, + { + "Name": "Card", + "Transform": { + "posX": 36.22917, + "posY": 1.51124179, + "posZ": 88.3929443, + "rotX": 0.0165650453, + "rotY": 269.916962, + "rotZ": 0.06150928, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Obscuring Fog", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 233721, + "SidewaysCard": false, + "CustomDeck": { + "2337": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "50e716" + }, + { + "Name": "Card", + "Transform": { + "posX": 22.2842884, + "posY": 1.43405008, + "posZ": 80.80763, + "rotX": 0.0192378685, + "rotY": 270.023163, + "rotZ": 355.773743, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dreamer's Curse", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274118, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "76859e" + }, + { + "Name": "Card", + "Transform": { + "posX": 10.8953857, + "posY": 1.35096252, + "posZ": 86.85204, + "rotX": 0.0208022948, + "rotY": 270.000153, + "rotZ": 0.016769195, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Stealthy Zoog", + "Description": "Creature. Zoog.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274132, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6a71eb" + }, + { + "Name": "Card", + "Transform": { + "posX": 18.1364231, + "posY": 1.35241461, + "posZ": 82.82968, + "rotX": 0.02080732, + "rotY": 270.006775, + "rotZ": 0.0167727135, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Prismatic Phenomenon", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274122, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4a7876" + }, + { + "Name": "Card", + "Transform": { + "posX": 7.09294271, + "posY": 1.34948814, + "posZ": 86.5327454, + "rotX": 0.0208071768, + "rotY": 270.0001, + "rotZ": 0.016768394, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lost in the Woods", + "Description": "Blunder.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274103, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "37b4cd" + }, + { + "Name": "Card", + "Transform": { + "posX": 14.3647461, + "posY": 1.35111558, + "posZ": 83.07091, + "rotX": 0.02080731, + "rotY": 270.000122, + "rotZ": 0.016768286, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Deeper Slumber", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274120, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "841cfc" + }, + { + "Name": "Card", + "Transform": { + "posX": 10.9278841, + "posY": 1.34991217, + "posZ": 83.22328, + "rotX": 0.02080437, + "rotY": 270.000061, + "rotZ": 0.0167663489, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Stealthy Zoog", + "Description": "Creature. Zoog.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274132, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b50e33" + }, + { + "Name": "Card", + "Transform": { + "posX": 18.2608337, + "posY": 1.35082424, + "posZ": 77.24169, + "rotX": 0.0208078679, + "rotY": 270.000061, + "rotZ": 0.0167684387, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Somniphobia", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274119, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c34a3e" + }, + { + "Name": "Card", + "Transform": { + "posX": 14.3287363, + "posY": 1.34936082, + "posZ": 77.12063, + "rotX": 0.020807771, + "rotY": 270.000122, + "rotZ": 0.0167682488, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Furtive Zoog", + "Description": "Creature. Zoog.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274131, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "578fce" + }, + { + "Name": "Card", + "Transform": { + "posX": 22.4578781, + "posY": 1.35281169, + "posZ": 78.8279, + "rotX": 0.0213993136, + "rotY": 270.003021, + "rotZ": 0.0169224273, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dreamer's Curse", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274118, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4259c3" + }, + { + "Name": "Card", + "Transform": { + "posX": 36.32401, + "posY": 1.360664, + "posZ": 88.7352448, + "rotX": 0.0216661077, + "rotY": 269.999268, + "rotZ": 0.0116391722, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Crypt Chill", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 233720, + "SidewaysCard": false, + "CustomDeck": { + "2337": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "16d6d6" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.390212, + "posY": 1.34718919, + "posZ": 79.55042, + "rotX": 0.0208074842, + "rotY": 270.000824, + "rotZ": 0.016768869, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Zoog", + "Description": "Creature. Zoog. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274102, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "30a8fd" + }, + { + "Name": "Card", + "Transform": { + "posX": 5.9762125, + "posY": 1.34604812, + "posZ": 76.1658249, + "rotX": 0.02080772, + "rotY": 270.000122, + "rotZ": 0.0167688653, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Crawling Mist", + "Description": "Monster. Avatar.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274111, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5404ff" + }, + { + "Name": "Card", + "Transform": { + "posX": 11.1632357, + "posY": 1.34905612, + "posZ": 80.00709, + "rotX": 0.0208133273, + "rotY": 270.000183, + "rotZ": 0.0167741217, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Inconspicuous Zoog", + "Description": "Creature. Zoog.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274133, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "be06bc" + }, + { + "Name": "Card", + "Transform": { + "posX": 14.8478355, + "posY": 1.35229611, + "posZ": 86.504715, + "rotX": 0.02080748, + "rotY": 270.000122, + "rotZ": 0.0167685673, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Deeper Slumber", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274120, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a13b33" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.68461835, + "posY": 1.344847, + "posZ": 77.38719, + "rotX": 0.0208076648, + "rotY": 270.000122, + "rotZ": 0.0167682879, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Law of 'Ygiroth (Chaos)", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274112, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8205b1" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.78721857, + "posY": 1.3482188, + "posZ": 82.57534, + "rotX": 0.0208076388, + "rotY": 270.000031, + "rotZ": 0.0167690162, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lost in the Woods", + "Description": "Blunder.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274103, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5220fb" + }, + { + "Name": "Card", + "Transform": { + "posX": 21.73517, + "posY": 1.44899857, + "posZ": 86.50061, + "rotX": 356.55896, + "rotY": 269.9948, + "rotZ": 0.01701287, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dreamlands Eclipse", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274121, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "427a1d" + }, + { + "Name": "Card", + "Transform": { + "posX": 2.68838215, + "posY": 1.347185, + "posZ": 84.1291962, + "rotX": 0.0208078176, + "rotY": 270.000122, + "rotZ": 0.0167686474, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Law of 'Ygiroth (Pandemonium)", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274114, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c1a0c1" + }, + { + "Name": "Card", + "Transform": { + "posX": 36.3306465, + "posY": 1.52371442, + "posZ": 87.96211, + "rotX": 0.02788579, + "rotY": 270.030975, + "rotZ": 0.149886414, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Obscuring Fog", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 233721, + "SidewaysCard": false, + "CustomDeck": { + "2337": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c4ce76" + }, + { + "Name": "Card", + "Transform": { + "posX": 14.8493814, + "posY": 1.35047209, + "posZ": 80.27121, + "rotX": 0.0208077654, + "rotY": 270.000122, + "rotZ": 0.01676835, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Furtive Zoog", + "Description": "Creature. Zoog.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274131, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f2aca5" + }, + { + "Name": "Card", + "Transform": { + "posX": 21.8291836, + "posY": 1.35398853, + "posZ": 83.62457, + "rotX": 0.0208105836, + "rotY": 269.988464, + "rotZ": 0.0167643335, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dreamlands Eclipse", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274121, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6a8971" + }, + { + "Name": "Card", + "Transform": { + "posX": 18.28582, + "posY": 1.35154665, + "posZ": 79.67875, + "rotX": 0.0208072942, + "rotY": 270.000061, + "rotZ": 0.0167683177, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Somniphobia", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274119, + "SidewaysCard": false, + "CustomDeck": { + "2741": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "34827b" + }, + { + "Name": "Card", + "Transform": { + "posX": 36.4160576, + "posY": 1.50560057, + "posZ": 88.4538, + "rotX": 0.0300157573, + "rotY": 269.9982, + "rotZ": 0.00885154, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Crypt Chill", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 233720, + "SidewaysCard": false, + "CustomDeck": { + "2337": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ab3719" + } + ], + "GUID": "cbf3fa" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.69642472, + "posY": 3.728411, + "posZ": 14.2788372, + "rotX": 359.94812, + "rotY": 224.998062, + "rotZ": 0.0583290569, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Enchanted Path", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274405, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "2828b6" + }, + { + "Name": "Deck", + "Transform": { + "posX": 1.6964252, + "posY": 3.73143768, + "posZ": 14.278841, + "rotX": 359.948151, + "rotY": 224.998062, + "rotZ": 0.05831738, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Enchanted Woods", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 274409, + 274411, + 274406, + 274412, + 274410, + 274408, + 274407 + ], + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -23.6763439, + "posY": 1.68731368, + "posZ": 3.8599546, + "rotX": 359.920532, + "rotY": 269.9999, + "rotZ": 0.0134935183, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Enchanted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274409, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "2273ef" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765442, + "posY": 1.83725619, + "posZ": 3.860009, + "rotX": 359.931, + "rotY": 270.000153, + "rotZ": 0.00307039218, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Enchanted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274411, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c9a005" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765213, + "posY": 1.854765, + "posZ": 3.85998821, + "rotX": 359.917938, + "rotY": 270.000061, + "rotZ": 0.0161052831, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Enchanted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274406, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b3fcf5" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6741543, + "posY": 1.80802608, + "posZ": 3.858933, + "rotX": 358.098724, + "rotY": 269.975342, + "rotZ": 0.89489615, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Enchanted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274412, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "2157cc" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765232, + "posY": 1.83922446, + "posZ": 3.86001039, + "rotX": 359.9195, + "rotY": 270.0002, + "rotZ": 0.0153193688, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Enchanted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274410, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8c287b" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765232, + "posY": 1.84176338, + "posZ": 3.86001015, + "rotX": 359.9195, + "rotY": 270.0003, + "rotZ": 0.0153638385, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Enchanted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274408, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "92e96b" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765232, + "posY": 1.84671867, + "posZ": 3.86001, + "rotX": 359.919525, + "rotY": 270.000366, + "rotZ": 0.0154158389, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Enchanted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274407, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "14f2fe" + } + ], + "GUID": "9cc8dc" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.69648647, + "posY": 3.71471977, + "posZ": 14.2788353, + "rotX": 359.9621, + "rotY": 224.991257, + "rotZ": 0.05468249, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Base of the Steps", + "Description": "Steps. Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274404, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "2fb629" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.69651234, + "posY": 3.69915676, + "posZ": 14.2788219, + "rotX": 359.954742, + "rotY": 225.0013, + "rotZ": 0.0689351261, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Seven Hundred Steps", + "Description": "Of Deeper Slumber", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274403, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "062996" + } + ], + "PhysicsMaterial": { + "StaticFriction": 0.6, + "DynamicFriction": 0.6, + "Bounciness": 0.0, + "FrictionCombine": 0, + "BounceCombine": 0 + }, + "Rigidbody": { + "Mass": 1.375, + "Drag": 5.0, + "AngularDrag": 5.0, + "UseGravity": true + }, + "GUID": "7ba884" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.7245, + "posY": 1.65710115, + "posZ": 0.3734003, + "rotX": 0.0168349538, + "rotY": 180.000031, + "rotZ": 0.08025775, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Journey through the Gates", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274600, + "SidewaysCard": true, + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "2cd5d4" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.6888, + "posY": 1.65349483, + "posZ": -5.0486, + "rotX": 0.0168324523, + "rotY": 180.001709, + "rotZ": 0.0802580044, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 274604, + 274603, + 274602, + 274601 + ], + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -0.553955, + "posY": 3.438215, + "posZ": -13.9903574, + "rotX": 0.0168324672, + "rotY": 180.001724, + "rotZ": 0.0802589357, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Path", + "Description": "Act 4", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274604, + "SidewaysCard": true, + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f3dd39" + }, + { + "Name": "Card", + "Transform": { + "posX": -1.10321772, + "posY": 3.43646979, + "posZ": -15.6497784, + "rotX": 0.0168323759, + "rotY": 180.00174, + "rotZ": 0.0802591443, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Final Descent", + "Description": "Act 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274603, + "SidewaysCard": true, + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5cee0d" + }, + { + "Name": "Card", + "Transform": { + "posX": -0.84218967, + "posY": 2.76301241, + "posZ": -16.8501968, + "rotX": 0.0168323554, + "rotY": 180.00174, + "rotZ": 0.08025898, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Trial of Nasht and Kaman-Thah", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274602, + "SidewaysCard": true, + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "de502b" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.68853378, + "posY": 1.809068, + "posZ": -5.04852247, + "rotX": 0.0192188546, + "rotY": 180.000076, + "rotZ": 0.07795308, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Entering the Dreamlands", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274601, + "SidewaysCard": true, + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3f6848" + } + ], + "GUID": "42b4ff" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.95593119, + "posY": 1.65564811, + "posZ": -10.4413157, + "rotX": 359.919739, + "rotY": 270.000122, + "rotZ": 0.0168443527, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "Beyond the Gates of Sleep", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274400, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f07e08" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.72370052, + "posY": 1.582283, + "posZ": -14.954504, + "rotX": 359.919739, + "rotY": 270.030823, + "rotZ": 0.0167948, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "Campaign A Setup", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'TDE_A'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "075016" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -23.6765, + "posY": 1.613388, + "posZ": -3.83, + "rotX": 359.983124, + "rotY": -0.00375659, + "rotZ": 359.920074, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7234af", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6763, + "posY": 1.68622, + "posZ": -0.0301003847, + "rotX": 359.9201, + "rotY": 270.0, + "rotZ": 0.0168764759, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Seventy Steps", + "Description": "Of Lighter Slumber", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274401, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1b07cc" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6763973, + "posY": 1.68396175, + "posZ": -7.70000029, + "rotX": 359.9201, + "rotY": 269.999939, + "rotZ": 0.0168766957, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Cavern of Flame", + "Description": "Cave. Steps.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274402, + "SidewaysCard": false, + "CustomDeck": { + "2744": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "54a280" + } + ], + "GUID": "7f5828", + "AttachedDecals": [ + { + "Transform": { + "posX": -0.0021877822, + "posY": -0.08963572, + "posZ": -0.00288731651, + "rotX": 270.0, + "rotY": 359.869568, + "rotZ": 0.0, + "scaleX": 2.00000215, + "scaleY": 2.00000238, + "scaleZ": 2.00000262 + }, + "CustomDecal": { + "Name": "dunwich_back", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", + "Size": 7.4 + } + } + ] + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 12.2496033, "posY": 1.4561832, - "posZ": -28.0136566, + "posZ": -28.0137043, "rotX": 359.920135, "rotY": 269.999939, - "rotZ": 0.0168744214, + "rotZ": 0.0168738347, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 @@ -1054210,6 +1069805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054238,9 +1069835,9 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"01500b\":{\"lock\":false,\"pos\":{\"x\":-2.916,\"y\":1.5679,\"z\":-37.5365},\"rot\":{\"x\":-0.0001,\"y\":269.9963,\"z\":179.8165}},\"376a06\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2784},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"387d55\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.7074,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"43f634\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"6a8547\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0022,\"z\":0.0803}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.332,\"y\":1.628,\"z\":-0.0464},\"rot\":{\"x\":359.9201,\"y\":270.0099,\"z\":0.0169}},\"7b90b5\":{\"lock\":false,\"pos\":{\"x\":-20.4623,\"y\":1.61,\"z\":-0.0761},\"rot\":{\"x\":359.9201,\"y\":270.0098,\"z\":0.0169}},\"8d0101\":{\"lock\":false,\"pos\":{\"x\":0.3316,\"y\":1.6179,\"z\":-37.5895},\"rot\":{\"x\":0,\"y\":270.0088,\"z\":180.1835}},\"98f205\":{\"lock\":false,\"pos\":{\"x\":-27.014,\"y\":1.6192,\"z\":0.0078},\"rot\":{\"x\":359.9201,\"y\":270.0098,\"z\":0.0169}},\"aec151\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7504,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9893,\"z\":180.0168}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.8113,\"y\":1.5824,\"z\":-15.0053},\"rot\":{\"x\":359.9197,\"y\":269.9971,\"z\":0.0168}},\"f7f920\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":179.9958,\"z\":0.0803}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1054267,6 +1069864,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054282,12 +1069881,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01500b", "States": { "2": { @@ -1054315,6 +1069915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054330,12 +1069932,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c9ca2" } } @@ -1054365,6 +1069968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054383,9 +1069988,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", @@ -1054412,6 +1070017,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054420,9 +1070027,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -1054449,6 +1070056,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054467,9 +1070076,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81a1d7" }, { @@ -1054497,6 +1070106,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054515,9 +1070126,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7a9cb" }, { @@ -1054545,6 +1070156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054563,9 +1070176,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "984eec" }, { @@ -1054593,6 +1070206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054611,9 +1070226,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1df0a5" } ], @@ -1054644,6 +1070259,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054662,12 +1070279,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1054694,6 +1070312,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054709,12 +1070329,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f44cc4" }, { @@ -1054742,6 +1070363,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054757,12 +1070380,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f27bf" } ], @@ -1054793,6 +1070417,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054801,9 +1070427,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n--- position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"13f1f9\":{\"lock\":false,\"pos\":{\"x\":-33.5533,\"y\":1.626,\"z\":-7.7173},\"rot\":{\"x\":359.9201,\"y\":270.0078,\"z\":0.0169}},\"1b6f2a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}},\"34d21c\":{\"lock\":false,\"pos\":{\"x\":-28.4995,\"y\":1.6923,\"z\":-2.2968},\"rot\":{\"x\":359.9201,\"y\":270.0027,\"z\":0.0169}},\"4d1c37\":{\"lock\":false,\"pos\":{\"x\":-27.0057,\"y\":1.6214,\"z\":7.6653},\"rot\":{\"x\":359.9201,\"y\":270.0078,\"z\":0.0169}},\"5391d4\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"6af4f4\":{\"lock\":false,\"pos\":{\"x\":-31.6761,\"y\":1.6967,\"z\":-2.2562},\"rot\":{\"x\":359.9201,\"y\":270.0027,\"z\":0.0169}},\"719afa\":{\"lock\":false,\"pos\":{\"x\":-27.0473,\"y\":1.617,\"z\":-7.6666},\"rot\":{\"x\":359.9201,\"y\":270.0079,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7729,\"y\":1.6317,\"z\":-3.8299},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"8b17a1\":{\"lock\":false,\"pos\":{\"x\":-28.5389,\"y\":1.6937,\"z\":2.2039},\"rot\":{\"x\":359.9201,\"y\":270.0027,\"z\":0.0169}},\"90ff22\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}},\"a2f955\":{\"lock\":false,\"pos\":{\"x\":-30.1169,\"y\":1.6952,\"z\":-0.0254},\"rot\":{\"x\":359.9201,\"y\":270.0026,\"z\":0.0169}},\"bef50d\":{\"lock\":false,\"pos\":{\"x\":-33.4851,\"y\":1.6304,\"z\":7.5392},\"rot\":{\"x\":359.9201,\"y\":270.0078,\"z\":0.0169}},\"f4d669\":{\"lock\":false,\"pos\":{\"x\":-31.697,\"y\":1.6981,\"z\":2.1938},\"rot\":{\"x\":359.9201,\"y\":270.0027,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1054830,6 +1070456,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054845,12 +1070473,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2f955" }, { @@ -1054878,6 +1070507,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054893,12 +1070524,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8b17a1" }, { @@ -1054926,6 +1070558,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054941,12 +1070575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f4d669" }, { @@ -1054974,6 +1070609,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1054989,12 +1070626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6af4f4" }, { @@ -1055022,6 +1070660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055040,9 +1070680,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b6f2a", "States": { "2": { @@ -1055070,6 +1070710,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055088,9 +1070730,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1055118,6 +1070760,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055136,9 +1070780,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1055168,6 +1070812,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055186,9 +1070832,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "719afa", "States": { "2": { @@ -1055216,6 +1070862,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055234,9 +1070882,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1055264,6 +1070912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055282,9 +1070932,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1055314,6 +1070964,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055332,9 +1070984,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13f1f9", "States": { "2": { @@ -1055362,6 +1071014,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055380,9 +1071034,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1055410,6 +1071064,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055428,9 +1071084,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1055460,6 +1071116,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055478,9 +1071136,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -1055508,6 +1071166,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055526,9 +1071186,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1055556,6 +1071216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055574,9 +1071236,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1055606,6 +1071268,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055624,9 +1071288,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5391d4", "States": { "2": { @@ -1055654,6 +1071318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055672,9 +1071338,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1055702,6 +1071368,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055720,9 +1071388,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1055752,6 +1071420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055770,9 +1071440,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bef50d", "States": { "2": { @@ -1055800,6 +1071470,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055818,9 +1071490,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1055848,6 +1071520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055866,9 +1071540,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1055898,6 +1071572,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055916,9 +1071592,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4d1c37", "States": { "2": { @@ -1055946,6 +1071622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1055964,9 +1071642,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1055994,6 +1071672,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056012,9 +1071692,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1056044,6 +1071724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056062,9 +1071744,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "90ff22", "States": { "2": { @@ -1056092,6 +1071774,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056110,9 +1071794,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1056140,6 +1071824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056158,9 +1071844,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1056190,6 +1071876,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056205,12 +1071893,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "34d21c" } ], @@ -1056257,6 +1071946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056288,12 +1071979,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1056320,6 +1072012,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056335,12 +1072029,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ed1c11" }, { @@ -1056368,6 +1072063,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056383,12 +1072080,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfdc8c" }, { @@ -1056416,6 +1072114,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056431,12 +1072131,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8ed03a" }, { @@ -1056464,6 +1072165,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056479,12 +1072182,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "73088a" }, { @@ -1056512,6 +1072216,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056527,12 +1072233,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b3251" }, { @@ -1056560,6 +1072267,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056575,12 +1072284,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "39ace3" }, { @@ -1056608,6 +1072318,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056623,12 +1072335,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "08a091" }, { @@ -1056656,6 +1072369,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056671,12 +1072386,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c5ec4" }, { @@ -1056704,6 +1072420,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056719,12 +1072437,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "727790" }, { @@ -1056752,6 +1072471,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056767,12 +1072488,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "02caab" }, { @@ -1056800,6 +1072522,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056815,12 +1072539,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9fa834" }, { @@ -1056848,6 +1072573,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056863,12 +1072590,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "361fd7" }, { @@ -1056896,6 +1072624,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056911,12 +1072641,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9aed9c" }, { @@ -1056944,6 +1072675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1056959,12 +1072692,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c63cd6" }, { @@ -1056992,6 +1072726,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057007,12 +1072743,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "823065" } ], @@ -1057043,6 +1072780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057058,12 +1072797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "43f634" }, { @@ -1057091,6 +1072831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057110,12 +1072852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1057142,6 +1072885,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057157,12 +1072902,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "49d1a4" }, { @@ -1057190,6 +1072936,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057205,12 +1072953,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "86b4a8" }, { @@ -1057238,6 +1072987,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057253,12 +1073004,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75881e" } ], @@ -1057289,6 +1073041,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057307,9 +1073061,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7234af", "States": { "2": { @@ -1057337,6 +1073091,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057355,9 +1073111,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1057385,6 +1073141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057403,9 +1073161,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1057435,6 +1073193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057453,9 +1073213,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7b90b5", "States": { "2": { @@ -1057483,6 +1073243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057501,9 +1073263,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1057531,6 +1073293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057549,9 +1073313,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1057581,6 +1073345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057596,12 +1073362,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d0101", "States": { "4": { @@ -1057629,6 +1073396,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057644,12 +1073413,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de1d70" }, "3": { @@ -1057677,6 +1073447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057692,12 +1073464,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b24d07" }, "2": { @@ -1057725,6 +1073498,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057740,12 +1073515,13 @@ "NumWidth": 3, "NumHeight": 2, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96c6cb" } } @@ -1057775,6 +1073551,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057793,9 +1073571,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98f205", "States": { "2": { @@ -1057823,6 +1073601,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057841,9 +1073621,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1057871,6 +1073651,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057889,9 +1073671,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1057921,6 +1073703,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1057963,7 +1073747,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2346": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/", @@ -1057971,7 +1073756,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2741": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/", @@ -1057979,12 +1073765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1058011,6 +1073798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058026,12 +1073815,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -1058059,6 +1073849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058074,12 +1073866,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2b60" }, { @@ -1058107,6 +1073900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058122,12 +1073917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785613" }, { @@ -1058155,6 +1073951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058170,12 +1073968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -1058203,6 +1074002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058218,12 +1074019,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f9c1e" }, { @@ -1058251,6 +1074053,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058266,12 +1074070,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "127543" }, { @@ -1058299,6 +1074104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058314,12 +1074121,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -1058347,6 +1074155,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058362,12 +1074172,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1058395,6 +1074206,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058410,12 +1074223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "09c755" }, { @@ -1058443,6 +1074257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058458,12 +1074274,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -1058491,6 +1074308,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058506,12 +1074325,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785613" }, { @@ -1058539,6 +1074359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058554,12 +1074376,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "924656" }, { @@ -1058587,6 +1074410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058602,12 +1074427,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef8a41" }, { @@ -1058635,6 +1074461,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058650,12 +1074478,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" }, { @@ -1058683,6 +1074512,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058698,12 +1074529,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eb88d3" }, { @@ -1058731,6 +1074563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058746,12 +1074580,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e634db" }, { @@ -1058779,6 +1074614,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058794,12 +1074631,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9386a" }, { @@ -1058827,6 +1074665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058842,12 +1074682,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b126fb" }, { @@ -1058875,6 +1074716,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058890,12 +1074733,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -1058923,6 +1074767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058938,12 +1074784,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e06a" }, { @@ -1058971,6 +1074818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1058986,12 +1074835,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ef8a41" }, { @@ -1059019,6 +1074869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059034,12 +1074886,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea2b60" }, { @@ -1059067,6 +1074920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059082,12 +1074937,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "133060" }, { @@ -1059115,6 +1074971,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059130,12 +1074988,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "621de5" }, { @@ -1059163,6 +1075022,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059178,12 +1075039,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "785613" }, { @@ -1059211,6 +1075073,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059226,12 +1075090,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23fc06" } ], @@ -1059262,6 +1075127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059280,9 +1075147,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Weaver of the Cosmos'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbb70a" }, { @@ -1059310,6 +1075177,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059329,12 +1075198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1059361,6 +1075231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059376,12 +1075248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6215ed" }, { @@ -1059409,6 +1075282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059424,12 +1075299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "525296" }, { @@ -1059457,6 +1075333,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059472,12 +1075350,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "75881e" } ], @@ -1059509,12 +1075388,12 @@ { "Name": "Custom_Tile", "Transform": { - "posX": -1.21970236, - "posY": 1.47529864, - "posZ": -26.8667, + "posX": -1.21970332, + "posY": 1.47529888, + "posZ": -26.8667011, "rotX": 359.9201, - "rotY": 270.0728, - "rotZ": 0.0167700779, + "rotY": 270.073181, + "rotZ": 0.0167693477, "scaleX": 6.5, "scaleY": 1.0, "scaleZ": 6.5 @@ -1059531,6 +1075410,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059549,9 +1075430,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {0.902,0.886,0.788}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --1 checkbox\r\n {\r\n pos = {0.306,0.1,0.051},\r\n size = 250,\r\n state = false\r\n },\r\n --2 checkbox\r\n {\r\n pos = {0.35,0.1,0.114},\r\n size = 250,\r\n state = false\r\n },\r\n --3 checkbox\r\n {\r\n pos = {0.399,0.1,0.169},\r\n size = 250,\r\n state = false\r\n },\r\n --4 checkbox\r\n {\r\n pos = {0.455,0.1,0.221},\r\n size = 250,\r\n state = false\r\n },\r\n --5 checkbox\r\n {\r\n pos = {0.5,0.1,0.279},\r\n size = 250,\r\n state = false\r\n },\r\n --6 checkbox\r\n {\r\n pos = {0.54,0.1,0.334},\r\n size = 250,\r\n state = false\r\n },\r\n --7 checkbox\r\n {\r\n pos = {0.568,0.1,0.392},\r\n size = 250,\r\n state = false\r\n },\r\n --8 checkbox\r\n {\r\n pos = {0.604,0.1,0.457},\r\n size = 250,\r\n state = false\r\n },\r\n --9 checkbox\r\n {\r\n pos = {0.229,0.1,-0.007},\r\n size = 250,\r\n state = false\r\n },\r\n --10 checkbox\r\n {\r\n pos = {-0.816,0.1,0.02},\r\n size = 250,\r\n state = false\r\n },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n {\r\n pos = {-0.7,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one counter 2\r\n {\r\n pos = {-0.50,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one xp 1\r\n {\r\n pos = {-0.517,0.1,-0.55},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 1\r\n {\r\n pos = {-0.274,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 2\r\n {\r\n pos = {-0.06,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two xp 1\r\n {\r\n pos = {-0.061,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 1\r\n {\r\n pos = {0.153,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 2\r\n {\r\n pos = {0.379,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three xp 1\r\n {\r\n pos = {0.38,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 1\r\n {\r\n pos = {0.614,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 2\r\n {\r\n pos = {0.82,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four xp 1\r\n {\r\n pos = {0.827,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --Slot one player\r\n {\r\n pos = {-0.637,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one investigator\r\n {\r\n pos = {-0.637,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one story\r\n {\r\n pos = {-0.637,0.1,-0.27},\r\n rows = 9,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two player\r\n {\r\n pos = {-0.2,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two investigator\r\n {\r\n pos = {-0.2,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two story\r\n {\r\n pos = {-0.2,0.1,-0.27},\r\n rows = 9,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three player\r\n {\r\n pos = {0.241,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three investigator\r\n {\r\n pos = {0.237,0.1,-0.62},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three story\r\n {\r\n pos = {0.24,0.1,-0.268},\r\n rows = 9,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four player\r\n {\r\n pos = {0.671,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four investigator\r\n {\r\n pos = {0.671,0.1,-0.62},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four story\r\n {\r\n pos = {0.671,0.1,-0.265},\r\n rows = 9,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes\r\n {\r\n pos = {-0.393,0.1,0.265},\r\n rows =10,\r\n width = 3200,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Killed Investigators\r\n {\r\n pos = {-0.417,0.1,0.881},\r\n rows = 4,\r\n width = 3500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Evidence of Kadath\r\n {\r\n pos = {-0.388,0.1,0.676},\r\n rows = 2,\r\n width = 3500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Chaos Bag\r\n {\r\n pos = {0.782,0.1,0.8},\r\n rows = 10,\r\n width = 1500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend", "LuaScriptState": "{\"checkbox\":[{\"pos\":[0.306,0.1,0.051],\"size\":250,\"state\":false},{\"pos\":[0.35,0.1,0.114],\"size\":250,\"state\":false},{\"pos\":[0.399,0.1,0.169],\"size\":250,\"state\":false},{\"pos\":[0.455,0.1,0.221],\"size\":250,\"state\":false},{\"pos\":[0.5,0.1,0.279],\"size\":250,\"state\":false},{\"pos\":[0.54,0.1,0.334],\"size\":250,\"state\":false},{\"pos\":[0.568,0.1,0.392],\"size\":250,\"state\":false},{\"pos\":[0.604,0.1,0.457],\"size\":250,\"state\":false},{\"pos\":[0.229,0.1,-0.007],\"size\":250,\"state\":false},{\"pos\":[-0.816,0.1,0.02],\"size\":250,\"state\":false}],\"counter\":[{\"hideBG\":true,\"pos\":[-0.7,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.5,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.517,0.1,-0.55],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[-0.274,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.06,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.061,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.153,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.379,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.38,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.614,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.82,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.827,0.1,-0.54],\"size\":300,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.27],\"rows\":9,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.27],\"rows\":9,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.241,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.237,0.1,-0.62],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[0.24,0.1,-0.268],\"rows\":9,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.62],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.265],\"rows\":9,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[-0.393,0.1,0.265],\"rows\":10,\"value\":\"\",\"width\":3200},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.417,0.1,0.881],\"rows\":4,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.388,0.1,0.676],\"rows\":2,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.782,0.1,0.8],\"rows\":10,\"value\":\"\",\"width\":1500}]}", + "XmlUI": "", "GUID": "f40183", "States": { "2": { @@ -1059579,6 +1075460,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059597,9 +1075480,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {0.902,0.886,0.788}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --1 checkbox\r\n {\r\n pos = {-0.931,0.1,-0.006},\r\n size = 250,\r\n state = false\r\n },\r\n --2 checkbox\r\n {\r\n pos = {-0.928,0.1,0.076},\r\n size = 250,\r\n state = false\r\n },\r\n --3 checkbox\r\n {\r\n pos = {-0.924,0.1,0.154},\r\n size = 250,\r\n state = false\r\n },\r\n --4 checkbox\r\n {\r\n pos = {-0.919,0.1,0.232},\r\n size = 250,\r\n state = false\r\n },\r\n --5 checkbox\r\n {\r\n pos = {-0.919,0.1,0.313},\r\n size = 250,\r\n state = false\r\n },\r\n --6 checkbox\r\n {\r\n pos = {-0.914,0.1,0.388},\r\n size = 250,\r\n state = false\r\n },\r\n --7 checkbox\r\n {\r\n pos = {-0.914,0.1,0.471},\r\n size = 250,\r\n state = false\r\n },\r\n --8 checkbox\r\n {\r\n pos = {-0.915,0.1,0.548},\r\n size = 250,\r\n state = false\r\n },\r\n --9 checkbox\r\n {\r\n pos = {-0.915,0.1,0.624},\r\n size = 250,\r\n state = false\r\n },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n {\r\n pos = {-0.74,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one counter 2\r\n {\r\n pos = {-0.54,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one xp 1\r\n {\r\n pos = {-0.54,0.1,-0.55},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 1\r\n {\r\n pos = {-0.3,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 2\r\n {\r\n pos = {-0.09,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two xp 1\r\n {\r\n pos = {-0.09,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 1\r\n {\r\n pos = {0.13,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 2\r\n {\r\n pos = {0.34,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three xp 1\r\n {\r\n pos = {0.35,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 1\r\n {\r\n pos = {0.58,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 2\r\n {\r\n pos = {0.78,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four xp 1\r\n {\r\n pos = {0.78,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --Slot one player\r\n {\r\n pos = {-0.677,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one investigator\r\n {\r\n pos = {-0.677,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one story\r\n {\r\n pos = {-0.677,0.1,-0.27},\r\n rows = 9,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two player\r\n {\r\n pos = {-0.24,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two investigator\r\n {\r\n pos = {-0.24,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two story\r\n {\r\n pos = {-0.24,0.1,-0.27},\r\n rows = 9,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three player\r\n {\r\n pos = {0.21,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three investigator\r\n {\r\n pos = {0.21,0.1,-0.62},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three story\r\n {\r\n pos = {0.21,0.1,-0.268},\r\n rows = 9,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four player\r\n {\r\n pos = {0.65,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four investigator\r\n {\r\n pos = {0.65,0.1,-0.62},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four story\r\n {\r\n pos = {0.65,0.1,-0.265},\r\n rows = 9,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes 1\r\n {\r\n pos = {0.33,0.1,0.273},\r\n rows = 10,\r\n width = 2500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes 2\r\n {\r\n pos = {0.48,0.1,0.632},\r\n rows = 8,\r\n width = 4000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Killed Investigators\r\n {\r\n pos = {-0.542,0.1,0.867},\r\n rows = 4,\r\n width = 3500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Steps of the Bridge\r\n {\r\n pos = {0.415,0.1,0.94},\r\n rows = 2,\r\n width = 3500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Chaos Bag\r\n {\r\n pos = {0.797,0.1,0.26},\r\n rows = 10,\r\n width = 1500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", "LuaScriptState": "{\"checkbox\":[{\"pos\":[-0.931,0.1,-0.006],\"size\":250,\"state\":false},{\"pos\":[-0.928,0.1,0.076],\"size\":250,\"state\":false},{\"pos\":[-0.924,0.1,0.154],\"size\":250,\"state\":false},{\"pos\":[-0.919,0.1,0.232],\"size\":250,\"state\":false},{\"pos\":[-0.919,0.1,0.313],\"size\":250,\"state\":false},{\"pos\":[-0.914,0.1,0.388],\"size\":250,\"state\":false},{\"pos\":[-0.914,0.1,0.471],\"size\":250,\"state\":false},{\"pos\":[-0.915,0.1,0.548],\"size\":250,\"state\":false},{\"pos\":[-0.915,0.1,0.624],\"size\":250,\"state\":false}],\"counter\":[{\"hideBG\":true,\"pos\":[-0.74,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.54,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.54,0.1,-0.55],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[-0.3,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.09,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.09,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.13,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.34,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.35,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.58,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.78,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.78,0.1,-0.54],\"size\":300,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.677,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.677,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[-0.677,0.1,-0.27],\"rows\":9,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.24,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.24,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[-0.24,0.1,-0.27],\"rows\":9,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.21,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.21,0.1,-0.62],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[0.21,0.1,-0.268],\"rows\":9,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.65,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.65,0.1,-0.62],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[0.65,0.1,-0.265],\"rows\":9,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.33,0.1,0.273],\"rows\":10,\"value\":\"\",\"width\":2500},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.48,0.1,0.632],\"rows\":8,\"value\":\"\",\"width\":4000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.542,0.1,0.867],\"rows\":4,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.415,0.1,0.94],\"rows\":2,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.797,0.1,0.26],\"rows\":10,\"value\":\"\",\"width\":1500}]}", + "XmlUI": "", "GUID": "4e2191" } } @@ -1059612,9 +1075495,9 @@ "Transform": { "posX": -17.7868061, "posY": 1.57197785, - "posZ": 19.2607918, + "posZ": 19.2607956, "rotX": 359.9831, - "rotY": 359.9678, + "rotY": 359.968018, "rotZ": 359.920135, "scaleX": 0.45, "scaleY": 0.6, @@ -1059632,6 +1075515,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059648,9 +1075533,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "99d430", "States": { "1": { @@ -1059678,6 +1075563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059694,9 +1075581,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11508f" }, "2": { @@ -1059724,6 +1075611,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059740,9 +1075629,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8888ff" }, "3": { @@ -1059770,6 +1075659,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059786,9 +1075677,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f001b" }, "4": { @@ -1059816,6 +1075707,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059832,9 +1075725,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd479" }, "5": { @@ -1059862,6 +1075755,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059878,9 +1075773,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c9182" } } @@ -1059890,9 +1075785,9 @@ "Transform": { "posX": -19.0252037, "posY": 1.57370424, - "posZ": 19.26083, + "posZ": 19.2608376, "rotX": 359.9831, - "rotY": 359.96463, + "rotY": 359.9645, "rotZ": 359.920135, "scaleX": 0.45, "scaleY": 0.6, @@ -1059910,6 +1075805,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059926,9 +1075823,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b79001", "States": { "1": { @@ -1059956,6 +1075853,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1059972,9 +1075871,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11508f" }, "2": { @@ -1060002,6 +1075901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060018,9 +1075919,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8888ff" }, "3": { @@ -1060048,6 +1075949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060064,9 +1075967,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f001b" }, "4": { @@ -1060094,6 +1075997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060110,9 +1076015,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd479" }, "5": { @@ -1060140,6 +1076045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060156,9 +1076063,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c9182" } } @@ -1060166,11 +1076073,11 @@ { "Name": "Custom_Model", "Transform": { - "posX": -20.2555275, - "posY": 1.57541943, - "posZ": 19.2607784, + "posX": -20.25553, + "posY": 1.57541931, + "posZ": 19.2607841, "rotX": 359.9831, - "rotY": 359.9672, + "rotY": 359.9674, "rotZ": 359.920135, "scaleX": 0.45, "scaleY": 0.6, @@ -1060188,6 +1076095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060204,9 +1076113,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fb83a7", "States": { "1": { @@ -1060234,6 +1076143,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060250,9 +1076161,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11508f" }, "2": { @@ -1060280,6 +1076191,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060296,9 +1076209,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8888ff" }, "3": { @@ -1060326,6 +1076239,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060342,9 +1076257,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f001b" }, "4": { @@ -1060372,6 +1076287,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060388,9 +1076305,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd479" }, "5": { @@ -1060418,6 +1076335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060434,9 +1076353,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c9182" } } @@ -1060445,11 +1076364,11 @@ "Name": "Custom_Model", "Transform": { "posX": -47.7645073, - "posY": 1.61465478, - "posZ": 22.2657776, + "posY": 1.61465466, + "posZ": 22.2657814, "rotX": 359.9201, - "rotY": 269.999084, - "rotZ": 0.0168951955, + "rotY": 269.998657, + "rotZ": 0.0168973356, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -1060466,6 +1076385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060482,9 +1076403,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62e061", "States": { "1": { @@ -1060512,6 +1076433,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060528,9 +1076451,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11508f" }, "2": { @@ -1060558,6 +1076481,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060574,9 +1076499,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8888ff" }, "3": { @@ -1060604,6 +1076529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060620,9 +1076547,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f001b" }, "4": { @@ -1060650,6 +1076577,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060666,9 +1076595,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd479" }, "5": { @@ -1060696,6 +1076625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060712,9 +1076643,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c9182" } } @@ -1060723,11 +1076654,11 @@ "Name": "Custom_Model", "Transform": { "posX": -47.76499, - "posY": 1.61429274, + "posY": 1.61429286, "posZ": 21.0344219, "rotX": 359.9201, - "rotY": 270.0021, - "rotZ": 0.0168882925, + "rotY": 270.002258, + "rotZ": 0.0168862212, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -1060744,6 +1076675,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060760,9 +1076693,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "07c325", "States": { "1": { @@ -1060790,6 +1076723,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060806,9 +1076741,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11508f" }, "2": { @@ -1060836,6 +1076771,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060852,9 +1076789,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8888ff" }, "3": { @@ -1060882,6 +1076819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060898,9 +1076837,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f001b" }, "4": { @@ -1060928,6 +1076867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060944,9 +1076885,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd479" }, "5": { @@ -1060974,6 +1076915,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1060990,9 +1076933,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c9182" } } @@ -1061000,12 +1076943,12 @@ { "Name": "Custom_Model", "Transform": { - "posX": -47.7659874, + "posX": -47.765995, "posY": 1.61502087, - "posZ": 23.5025158, + "posZ": 23.5025234, "rotX": 359.9201, - "rotY": 269.9997, - "rotZ": 0.01688882, + "rotY": 269.9995, + "rotZ": 0.0168875922, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -1061022,6 +1076965,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061038,9 +1076983,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "eec4ca", "States": { "1": { @@ -1061068,6 +1077013,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061084,9 +1077031,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11508f" }, "2": { @@ -1061114,6 +1077061,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061130,9 +1077079,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8888ff" }, "3": { @@ -1061160,6 +1077109,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061176,9 +1077127,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f001b" }, "4": { @@ -1061206,6 +1077157,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061222,9 +1077175,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd479" }, "5": { @@ -1061252,6 +1077205,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061268,9 +1077223,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c9182" } } @@ -1061278,12 +1077233,12 @@ { "Name": "Custom_Model", "Transform": { - "posX": -47.76418, + "posX": -47.7641945, "posY": 1.60188389, - "posZ": -21.102459, + "posZ": -21.1024666, "rotX": 359.9201, - "rotY": 269.998749, - "rotZ": 0.0168952066, + "rotY": 269.9986, + "rotZ": 0.0168928653, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -1061300,6 +1077255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061316,9 +1077273,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5954d0", "States": { "1": { @@ -1061346,6 +1077303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061362,9 +1077321,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11508f" }, "2": { @@ -1061392,6 +1077351,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061408,9 +1077369,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8888ff" }, "3": { @@ -1061438,6 +1077399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061454,9 +1077417,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f001b" }, "4": { @@ -1061484,6 +1077447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061500,9 +1077465,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd479" }, "5": { @@ -1061530,6 +1077495,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061546,9 +1077513,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c9182" } } @@ -1061556,12 +1077523,12 @@ { "Name": "Custom_Model", "Transform": { - "posX": -47.76417, + "posX": -47.7641869, "posY": 1.60151911, - "posZ": -22.34086, + "posZ": -22.340868, "rotX": 359.9201, - "rotY": 270.003235, - "rotZ": 0.0168848336, + "rotY": 270.003479, + "rotZ": 0.0168882236, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -1061578,6 +1077545,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061594,9 +1077563,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa6bf1", "States": { "1": { @@ -1061624,6 +1077593,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061640,9 +1077611,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11508f" }, "2": { @@ -1061670,6 +1077641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061686,9 +1077659,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8888ff" }, "3": { @@ -1061716,6 +1077689,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061732,9 +1077707,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f001b" }, "4": { @@ -1061762,6 +1077737,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061778,9 +1077755,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd479" }, "5": { @@ -1061808,6 +1077785,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061824,9 +1077803,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c9182" } } @@ -1061834,12 +1077813,12 @@ { "Name": "Custom_Model", "Transform": { - "posX": -47.76409, - "posY": 1.60115683, - "posZ": -23.5711727, + "posX": -47.7641, + "posY": 1.60115671, + "posZ": -23.57118, "rotX": 359.9201, - "rotY": 269.99823, - "rotZ": 0.0168894958, + "rotY": 269.997864, + "rotZ": 0.01689893, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -1061856,6 +1077835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061872,9 +1077853,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "29fae0", "States": { "1": { @@ -1061902,6 +1077883,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061918,9 +1077901,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11508f" }, "2": { @@ -1061948,6 +1077931,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1061964,9 +1077949,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8888ff" }, "3": { @@ -1061994,6 +1077979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062010,9 +1077997,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f001b" }, "4": { @@ -1062040,6 +1078027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062056,9 +1078045,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd479" }, "5": { @@ -1062086,6 +1078075,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062102,9 +1078093,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c9182" } } @@ -1062113,11 +1078104,11 @@ "Name": "Custom_Model", "Transform": { "posX": -18.9032936, - "posY": 1.5621618, - "posZ": -19.3595047, - "rotX": 0.0168798231, - "rotY": 179.989258, - "rotZ": 0.07988013, + "posY": 1.56216192, + "posZ": -19.3595085, + "rotX": 0.01688047, + "rotY": 179.989441, + "rotZ": 0.07988442, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -1062134,6 +1078125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062150,9 +1078143,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9c3361", "States": { "1": { @@ -1062180,6 +1078173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062196,9 +1078191,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11508f" }, "2": { @@ -1062226,6 +1078221,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062242,9 +1078239,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8888ff" }, "3": { @@ -1062272,6 +1078269,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062288,9 +1078287,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f001b" }, "4": { @@ -1062318,6 +1078317,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062334,9 +1078335,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd479" }, "5": { @@ -1062364,6 +1078365,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062380,9 +1078383,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c9182" } } @@ -1062392,10 +1078395,10 @@ "Transform": { "posX": -17.6732578, "posY": 1.560447, - "posZ": -19.35929, - "rotX": 0.0168715771, - "rotY": 179.993546, - "rotZ": 0.07987842, + "posZ": -19.359293, + "rotX": 0.0168719869, + "rotY": 179.994141, + "rotZ": 0.07988107, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -1062412,6 +1078415,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062428,9 +1078433,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b28feb", "States": { "1": { @@ -1062458,6 +1078463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062474,9 +1078481,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11508f" }, "2": { @@ -1062504,6 +1078511,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062520,9 +1078529,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8888ff" }, "3": { @@ -1062550,6 +1078559,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062566,9 +1078577,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f001b" }, "4": { @@ -1062596,6 +1078607,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062612,9 +1078625,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd479" }, "5": { @@ -1062642,6 +1078655,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062658,9 +1078673,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c9182" } } @@ -1062668,12 +1078683,12 @@ { "Name": "Custom_Model", "Transform": { - "posX": -20.1420021, + "posX": -20.1420059, "posY": 1.56388879, - "posZ": -19.35934, - "rotX": 0.0168770887, - "rotY": 179.992249, - "rotZ": 0.0798800662, + "posZ": -19.3593483, + "rotX": 0.0168761723, + "rotY": 179.992691, + "rotZ": 0.07988045, "scaleX": 0.45, "scaleY": 0.6, "scaleZ": 0.45 @@ -1062690,6 +1078705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062706,9 +1078723,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6ed29f", "States": { "1": { @@ -1062736,6 +1078753,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062752,9 +1078771,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11508f" }, "2": { @@ -1062782,6 +1078801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062798,9 +1078819,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8888ff" }, "3": { @@ -1062828,6 +1078849,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062844,9 +1078867,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7f001b" }, "4": { @@ -1062874,6 +1078897,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062890,9 +1078915,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bd479" }, "5": { @@ -1062920,6 +1078945,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1062936,9 +1078963,9 @@ "TypeIndex": 4, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0c9182" } } @@ -1062946,18 +1078973,18 @@ { "Name": "Notecard", "Transform": { - "posX": 23.7533665, - "posY": 1.51452863, - "posZ": -13.12853, - "rotX": 0.0798838958, - "rotY": 90.0211258, + "posX": 23.7534084, + "posY": 1.51452875, + "posZ": -13.1285467, + "rotX": 0.07988373, + "rotY": 90.0210953, "rotZ": 359.983154, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, - "Nickname": "SCE v1.4067 - 5/12/2020", - "Description": "Daisy's Challenge Scenario: Read or Die has been moved into the Side Missions box.\n\nAdded Fan-Campaign: Ordo Templis Orientis\n\nAdded New Preview Cards for Harvey Walters and Nathaniel Cho, in Leaked Items box.", + "Nickname": "SCE v1.4068 - 5/29/2020", + "Description": "Fixed placement conflict issues with Ordo Templi Orientis \r\n\nFixed some cards that didn't spawn tokens when they should have.\r\n\nAdded a missing connector on a scenario autosetup.", "GMNotes": "", "ColorDiffuse": { "r": 1.0, @@ -1062968,26 +1078995,75 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbb010" }, + { + "Name": "3DText", + "Transform": { + "posX": 39.3933372, + "posY": 1.423262, + "posZ": -13.271203, + "rotX": 90.0, + "rotY": 90.0, + "rotZ": 0.0, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": true, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "Text": { + "Text": "Featured Fan Campaign", + "colorstate": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "fontSize": 56 + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "134348" + }, { "Name": "Custom_Model_Bag", "Transform": { - "posX": 32.4523163, - "posY": 1.43240285, - "posZ": -13.1238737, - "rotX": 359.9201, - "rotY": 270.046448, - "rotZ": 0.0168094449, + "posX": 32.4524078, + "posY": 1.43240261, + "posZ": -13.1238346, + "rotX": 359.920135, + "rotY": 270.008, + "rotZ": 0.01686269, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 @@ -1063004,6 +1079080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063032,18 +1079110,18 @@ }, "CastShadows": true }, - "XmlUI": "", "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"286579\":{\"lock\":false,\"pos\":{\"x\":12.2487,\"y\":1.2782,\"z\":-4.0135},\"rot\":{\"x\":0.08,\"y\":90.0003,\"z\":359.9831}},\"7b28eb\":{\"lock\":false,\"pos\":{\"x\":12.2495,\"y\":1.2806,\"z\":3.9864},\"rot\":{\"x\":0.08,\"y\":89.9949,\"z\":359.9831}},\"7cda3f\":{\"lock\":false,\"pos\":{\"x\":12.2512,\"y\":1.2829,\"z\":11.9866},\"rot\":{\"x\":0.08,\"y\":89.9997,\"z\":359.9831}},\"b3bfc4\":{\"lock\":false,\"pos\":{\"x\":-1.4651,\"y\":1.4756,\"z\":-26.9305},\"rot\":{\"x\":359.9201,\"y\":270.0049,\"z\":0.0169}},\"ba2ded\":{\"lock\":false,\"pos\":{\"x\":12.2492,\"y\":1.2759,\"z\":-12.0135},\"rot\":{\"x\":0.08,\"y\":89.9973,\"z\":359.9831}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4585,\"z\":-20.0136},\"rot\":{\"x\":359.9201,\"y\":270.0311,\"z\":0.0168}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Bag", "Transform": { - "posX": 12.2487011, - "posY": 1.27821779, - "posZ": -4.013501, - "rotX": 0.079958275, - "rotY": 89.9999, + "posX": 12.248702, + "posY": 1.278218, + "posZ": -4.013502, + "rotX": 0.07995958, + "rotY": 90.0000153, "rotZ": 359.9831, "scaleX": 1.0, "scaleY": 1.0, @@ -1063054,13 +1079132,15 @@ "GMNotes": "", "ColorDiffuse": { "r": 0.7019608, - "g": 0.3647049, + "g": 0.364704967, "b": 0.0 }, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063069,9 +1079149,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n print(\"updating memory with moves\")\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n print(guid)\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n print(_)\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0,0.3,-3.6}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0,0.3,-4.4}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0,0.3,-5.2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n position={-2.8,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"111103\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.61790001392365,\"z\":11.460000038147},\"rot\":{\"x\":0.0169000010937452,\"y\":179.999206542969,\"z\":0.0799999982118607}},\"160117\":{\"lock\":false,\"pos\":{\"x\":-30.2238006591797,\"y\":1.70039999485016,\"z\":7.56990003585815},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":180.016906738281}},\"23fa2a\":{\"lock\":false,\"pos\":{\"x\":-3.92757320404053,\"y\":1.75039184093475,\"z\":5.7570538520813},\"rot\":{\"x\":359.919738769531,\"y\":270.000030517578,\"z\":180.016815185547}},\"276f0a\":{\"lock\":false,\"pos\":{\"x\":-20.672399520874,\"y\":1.61370003223419,\"z\":11.309100151062},\"rot\":{\"x\":359.955413818359,\"y\":224.999801635742,\"z\":0.0683999955654144}},\"3b5cff\":{\"lock\":false,\"pos\":{\"x\":-17.119800567627,\"y\":1.67990005016327,\"z\":-0.0299999993294477},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":180.016906738281}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-17.1200008392334,\"y\":1.60870003700256,\"z\":11.460000038147},\"rot\":{\"x\":359.983093261719,\"y\":0.000299999985145405,\"z\":359.920104980469}},\"7a389d\":{\"lock\":false,\"pos\":{\"x\":-23.676399230957,\"y\":1.69130003452301,\"z\":7.56990003585815},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":180.016906738281}},\"846ace\":{\"lock\":false,\"pos\":{\"x\":-2.68930006027222,\"y\":1.65499997138977,\"z\":-5.04930019378662},\"rot\":{\"x\":0.0167000014334917,\"y\":180.067901611328,\"z\":0.0803000032901764}},\"8bb179\":{\"lock\":false,\"pos\":{\"x\":-17.1196002960205,\"y\":1.68210005760193,\"z\":7.56990003585815},\"rot\":{\"x\":359.920104980469,\"y\":270.000366210938,\"z\":180.016906738281}},\"8d1203\":{\"lock\":false,\"pos\":{\"x\":-17.1201000213623,\"y\":1.60420000553131,\"z\":-3.82999992370605},\"rot\":{\"x\":359.983093261719,\"y\":8.14222007958915E-13,\"z\":359.920013427734}},\"918259\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.62479996681213,\"z\":3.85999989509583},\"rot\":{\"x\":359.983093261719,\"y\":9.99999974737875E-05,\"z\":359.920104980469}},\"98cd24\":{\"lock\":false,\"pos\":{\"x\":-20.3724994659424,\"y\":1.60759997367859,\"z\":-7.73890018463135},\"rot\":{\"x\":0.0798999965190887,\"y\":89.9996948242188,\"z\":359.983093261719}},\"a1af36\":{\"lock\":false,\"pos\":{\"x\":-2.72519993782043,\"y\":1.66400003433228,\"z\":0.372000008821487},\"rot\":{\"x\":0.0167999994009733,\"y\":180.03059387207,\"z\":0.0802999958395958}},\"a7b9c0\":{\"lock\":false,\"pos\":{\"x\":-17.1198997497559,\"y\":1.68439996242523,\"z\":15.1899995803833},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":180.016906738281}},\"bdf41b\":{\"lock\":false,\"pos\":{\"x\":-17.1200008392334,\"y\":1.67760002613068,\"z\":-7.70009994506836},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":180.016906738281}},\"c52e6d\":{\"lock\":false,\"pos\":{\"x\":-3.80800008773804,\"y\":1.76890003681183,\"z\":14.7655000686646},\"rot\":{\"x\":359.919708251953,\"y\":270,\"z\":180.016799926758}},\"c9df6a\":{\"lock\":false,\"pos\":{\"x\":-20.3157005310059,\"y\":1.61440002918243,\"z\":15.411600112915},\"rot\":{\"x\":0.0798999965190887,\"y\":89.9998931884766,\"z\":359.983093261719}},\"d5fc2f\":{\"lock\":false,\"pos\":{\"x\":1.69640004634857,\"y\":1.55830001831055,\"z\":14.2789001464844},\"rot\":{\"x\":359.955108642578,\"y\":225,\"z\":0.0686999931931496}},\"deb62b\":{\"lock\":false,\"pos\":{\"x\":-20.5849990844727,\"y\":1.6114000082016,\"z\":3.91059994697571},\"rot\":{\"x\":359.931610107422,\"y\":315.000091552734,\"z\":359.955413818359}},\"e0245d\":{\"lock\":false,\"pos\":{\"x\":-27.0818004608154,\"y\":1.62150001525879,\"z\":7.50820016860962},\"rot\":{\"x\":0.0798999965190887,\"y\":89.9996948242188,\"z\":359.983093261719}},\"e71fc6\":{\"lock\":false,\"pos\":{\"x\":-23.676399230957,\"y\":1.68680000305176,\"z\":-7.69999980926514},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":180.016906738281}},\"e8c305\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.69350004196167,\"z\":15.1899003982544},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":180.016906738281}},\"e94e6c\":{\"lock\":false,\"pos\":{\"x\":-17.1200008392334,\"y\":1.6065000295639,\"z\":3.85999989509583},\"rot\":{\"x\":359.983093261719,\"y\":0.000199999994947575,\"z\":359.920104980469}},\"e9aa03\":{\"lock\":false,\"pos\":{\"x\":-3.95589995384216,\"y\":1.65559995174408,\"z\":-10.4412002563477},\"rot\":{\"x\":359.919708251953,\"y\":269.999908447266,\"z\":0.0168000031262636}},\"f343cb\":{\"lock\":false,\"pos\":{\"x\":-30.2238998413086,\"y\":1.6981999874115,\"z\":-0.0296000000089407},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":180.016906738281}},\"f5482e\":{\"lock\":false,\"pos\":{\"x\":-20.4097003936768,\"y\":1.61220002174377,\"z\":7.62150001525879},\"rot\":{\"x\":0.0798999965190887,\"y\":89.9998931884766,\"z\":359.983093261719}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -1063098,6 +1079178,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063116,9 +1079198,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "111103", "States": { "2": { @@ -1063146,6 +1079228,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063164,9 +1079248,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1063194,6 +1079278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063212,9 +1079298,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1063244,6 +1079330,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063259,12 +1079347,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "160117" }, { @@ -1063292,6 +1079381,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063334,7 +1079425,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -1063342,12 +1079434,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1063374,6 +1079467,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063389,12 +1079484,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b0543" }, { @@ -1063422,6 +1079518,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063437,12 +1079535,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7ed50f" }, { @@ -1063470,6 +1079569,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063485,12 +1079586,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a0d5f" }, { @@ -1063518,6 +1079620,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063533,12 +1079637,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dc5d40" }, { @@ -1063566,6 +1079671,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063581,12 +1079688,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd5865" }, { @@ -1063614,6 +1079722,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063629,12 +1079739,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d184ad" }, { @@ -1063662,6 +1079773,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063677,12 +1079790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b852f" }, { @@ -1063710,6 +1079824,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063725,12 +1079841,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "939ae2" }, { @@ -1063758,6 +1079875,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063773,12 +1079892,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42b130" }, { @@ -1063806,6 +1079926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063821,12 +1079943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cb4c1" }, { @@ -1063854,6 +1079977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063869,12 +1079994,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f253a" }, { @@ -1063902,6 +1080028,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063917,12 +1080045,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a99099" }, { @@ -1063950,6 +1080079,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1063965,12 +1080096,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87be39" }, { @@ -1063998,6 +1080130,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064013,12 +1080147,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "814af7" }, { @@ -1064046,6 +1080181,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064061,12 +1080198,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19e492" }, { @@ -1064094,6 +1080232,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064109,12 +1080249,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -1064142,6 +1080283,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064157,12 +1080300,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -1064190,6 +1080334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064205,12 +1080351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1064238,6 +1080385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064253,12 +1080402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" }, { @@ -1064286,6 +1080436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064301,12 +1080453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfaf" }, { @@ -1064334,6 +1080487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064349,12 +1080504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8fcf" }, { @@ -1064382,6 +1080538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064397,12 +1080555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1064430,6 +1080589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064445,12 +1080606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ceae2" }, { @@ -1064478,6 +1080640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064493,12 +1080657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "057d5f" }, { @@ -1064526,6 +1080691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064541,12 +1080708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1064574,6 +1080742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064589,12 +1080759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4904d0" } ], @@ -1064625,6 +1080796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064643,9 +1080816,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "276f0a", "States": { "2": { @@ -1064673,6 +1080846,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064691,9 +1080866,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1064721,6 +1080896,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064739,9 +1080916,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1064771,6 +1080948,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064786,12 +1080965,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3b5cff" }, { @@ -1064819,6 +1080999,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064837,9 +1081019,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -1064867,6 +1081049,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064885,9 +1081069,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -1064915,6 +1081099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064933,9 +1081119,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d11a8e" } } @@ -1064965,6 +1081151,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1064980,12 +1081168,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7a389d" }, { @@ -1065013,6 +1081202,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065032,12 +1081223,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1065064,6 +1081256,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065079,12 +1081273,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "673fbe" }, { @@ -1065112,6 +1081307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065127,12 +1081324,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69f34b" }, { @@ -1065160,6 +1081358,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065175,12 +1081375,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98eb58" } ], @@ -1065211,6 +1081412,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065226,12 +1081429,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bb179" }, { @@ -1065259,6 +1081463,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065277,9 +1081483,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d1203", "States": { "2": { @@ -1065307,6 +1081513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065325,9 +1081533,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1065355,6 +1081563,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065373,9 +1081583,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1065405,6 +1081615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065423,9 +1081635,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "918259", "States": { "2": { @@ -1065453,6 +1081665,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065471,9 +1081685,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1065501,6 +1081715,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065519,9 +1081735,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1065551,6 +1081767,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065569,9 +1081787,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "98cd24", "States": { "2": { @@ -1065599,6 +1081817,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065617,9 +1081837,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1065647,6 +1081867,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065665,9 +1081887,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1065697,6 +1081919,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065715,12 +1081939,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1065747,6 +1081972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065762,12 +1081989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab92a3" }, { @@ -1065795,6 +1082023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065810,12 +1082040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "524ddc" } ], @@ -1065846,6 +1082077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065861,12 +1082094,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7b9c0" }, { @@ -1065894,6 +1082128,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065909,12 +1082145,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdf41b" }, { @@ -1065942,6 +1082179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1065987,7 +1082226,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1020573153366157990/4659D8D72797E17EC7D2043CB48534A6D4BCA645/", @@ -1065995,7 +1082235,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 }, "2662": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1020573153366313407/5C731858C6139610DF06DA93F8683688DBFE79F7/", @@ -1066003,7 +1082244,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1020573153366296328/609C86272516E3FE4EDAFC80B8DBA405EDD709D1/", @@ -1066011,12 +1082253,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1066043,6 +1082286,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066058,12 +1082303,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e04da" }, { @@ -1066091,6 +1082337,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066106,12 +1082354,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d0c1c" }, { @@ -1066139,6 +1082388,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066154,12 +1082405,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1066187,6 +1082439,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066202,12 +1082456,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b75b70" }, { @@ -1066235,6 +1082490,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066250,12 +1082507,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "85396c" }, { @@ -1066283,6 +1082541,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066298,12 +1082558,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a36de7" }, { @@ -1066331,6 +1082592,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066346,12 +1082609,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4bfce" }, { @@ -1066379,6 +1082643,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066394,12 +1082660,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "302bb7" }, { @@ -1066427,6 +1082694,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066442,12 +1082711,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0dc537" }, { @@ -1066475,6 +1082745,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066490,12 +1082762,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f227e9" }, { @@ -1066523,6 +1082796,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066538,12 +1082813,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "21e37e" }, { @@ -1066571,6 +1082847,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066586,12 +1082864,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d955e" }, { @@ -1066619,6 +1082898,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066634,12 +1082915,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a38695" }, { @@ -1066667,6 +1082949,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066682,12 +1082966,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "63a8af" }, { @@ -1066715,6 +1083000,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066730,12 +1083017,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "82c7af" }, { @@ -1066763,6 +1083051,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066778,12 +1083068,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dfb2f1" }, { @@ -1066811,6 +1083102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066826,12 +1083119,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e5485" }, { @@ -1066859,6 +1083153,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066874,12 +1083170,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b6b6c8" }, { @@ -1066907,6 +1083204,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066922,12 +1083221,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8874ab" }, { @@ -1066955,6 +1083255,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1066970,12 +1083272,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97fa8d" }, { @@ -1067003,6 +1083306,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067018,12 +1083323,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3a49c2" }, { @@ -1067051,6 +1083357,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067066,12 +1083374,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22b46f" }, { @@ -1067099,6 +1083408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067114,12 +1083425,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f642e" }, { @@ -1067147,6 +1083459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067162,12 +1083476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6612e1" }, { @@ -1067195,6 +1083510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067210,12 +1083527,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "dd4d60" }, { @@ -1067243,6 +1083561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067258,12 +1083578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2d5275" }, { @@ -1067291,6 +1083612,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067306,12 +1083629,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c482b6" }, { @@ -1067339,6 +1083663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067354,12 +1083680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b6c71" }, { @@ -1067387,6 +1083714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067402,12 +1083731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76fcbb" } ], @@ -1067438,6 +1083768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067456,9 +1083788,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9df6a", "States": { "2": { @@ -1067486,6 +1083818,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067504,9 +1083838,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1067534,6 +1083868,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067552,9 +1083888,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1067584,6 +1083920,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067602,9 +1083940,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1067631,6 +1083969,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067646,12 +1083986,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce263e" }, { @@ -1067679,6 +1084020,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067694,12 +1084037,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1c44af" }, { @@ -1067727,6 +1084071,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067742,12 +1084088,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6ee90" }, { @@ -1067775,6 +1084122,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067790,12 +1084139,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b7d81" }, { @@ -1067823,6 +1084173,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067838,12 +1084190,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c8e70f" }, { @@ -1067871,6 +1084224,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067886,12 +1084241,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4b17d4" }, { @@ -1067919,6 +1084275,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1067934,12 +1084292,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b0543" } ], @@ -1067983,6 +1084342,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068001,9 +1084362,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "deb62b", "States": { "2": { @@ -1068031,6 +1084392,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068049,9 +1084412,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1068079,6 +1084442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068097,9 +1084462,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1068129,6 +1084494,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068147,9 +1084514,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e0245d", "States": { "2": { @@ -1068177,6 +1084544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068195,9 +1084564,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1068225,6 +1084594,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068243,9 +1084614,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1068275,6 +1084646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068290,12 +1084663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e71fc6" }, { @@ -1068323,6 +1084697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068338,12 +1084714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e8c305" }, { @@ -1068371,6 +1084748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068389,9 +1084768,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e94e6c", "States": { "2": { @@ -1068419,6 +1084798,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068437,9 +1084818,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1068467,6 +1084848,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068485,9 +1084868,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1068517,6 +1084900,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068532,12 +1084917,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e9aa03" }, { @@ -1068565,6 +1084951,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068580,12 +1084968,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f343cb" }, { @@ -1068613,6 +1085002,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068631,9 +1085022,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5482e", "States": { "2": { @@ -1068661,6 +1085052,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068679,9 +1085072,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1068709,6 +1085102,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068727,9 +1085122,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1068741,10 +1085136,10 @@ "Name": "Bag", "Transform": { "posX": 12.2495031, - "posY": 1.28057134, - "posZ": 3.98639965, - "rotX": 0.079965055, - "rotY": 89.99539, + "posY": 1.28057122, + "posZ": 3.98639941, + "rotX": 0.07996489, + "rotY": 89.99543, "rotZ": 359.9831, "scaleX": 1.0, "scaleY": 1.0, @@ -1068755,13 +1085150,15 @@ "GMNotes": "", "ColorDiffuse": { "r": 0.7019608, - "g": 0.3647049, + "g": 0.364704967, "b": 0.0 }, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068770,9 +1085167,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n print(\"updating memory with moves\")\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n print(guid)\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n print(_)\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0,0.3,-3.6}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0,0.3,-4.4}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0,0.3,-5.2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n position={-2.8,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0ef63c\":{\"lock\":false,\"pos\":{\"x\":-29.7229,\"y\":1.6196,\"z\":-11.5096},\"rot\":{\"x\":359.9201,\"y\":269.9769,\"z\":0.0169}},\"12fd65\":{\"lock\":false,\"pos\":{\"x\":1.6962,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":224.9884,\"z\":0.0687}},\"30def0\":{\"lock\":false,\"pos\":{\"x\":-11.7731,\"y\":1.6989,\"z\":10.8073},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"3507f0\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7611,\"z\":5.7573},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-14.3421,\"y\":1.6012,\"z\":-1.1204},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"472747\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6844,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"47c89a\":{\"lock\":false,\"pos\":{\"x\":-38.1666,\"y\":1.6399,\"z\":17.659},\"rot\":{\"x\":359.9831,\"y\":0.0005,\"z\":359.92}},\"48473d\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"4d41f2\":{\"lock\":false,\"pos\":{\"x\":-3.8682,\"y\":1.6571,\"z\":15.0082},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"56663e\":{\"lock\":false,\"pos\":{\"x\":-39.6703,\"y\":1.6365,\"z\":-0.9861},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"57220c\":{\"lock\":false,\"pos\":{\"x\":-39.7476,\"y\":1.6371,\"z\":0.5546},\"rot\":{\"x\":359.9201,\"y\":269.9806,\"z\":0.0169}},\"5ec77e\":{\"lock\":false,\"pos\":{\"x\":-36.2165,\"y\":1.6287,\"z\":-11.2867},\"rot\":{\"x\":359.9201,\"y\":270.0018,\"z\":0.0169}},\"62a171\":{\"lock\":false,\"pos\":{\"x\":-31.6028,\"y\":1.6222,\"z\":-11.5671},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.08}},\"69bc22\":{\"lock\":false,\"pos\":{\"x\":-36.4586,\"y\":1.6376,\"z\":17.6997},\"rot\":{\"x\":359.9201,\"y\":269.9766,\"z\":0.0169}},\"7258e7\":{\"lock\":false,\"pos\":{\"x\":-38.0041,\"y\":1.6312,\"z\":-11.2885},\"rot\":{\"x\":0.0169,\"y\":179.9995,\"z\":0.0799}},\"76f938\":{\"lock\":false,\"pos\":{\"x\":-14.2173,\"y\":1.5988,\"z\":-8.693},\"rot\":{\"x\":0.0799,\"y\":90.0002,\"z\":359.9831}},\"87ab9a\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.655,\"z\":-5.0484},\"rot\":{\"x\":0.0168,\"y\":179.9952,\"z\":0.0803}},\"9c7f8f\":{\"lock\":false,\"pos\":{\"x\":-2.7241,\"y\":1.6566,\"z\":0.3735},\"rot\":{\"x\":0.0168,\"y\":180.0268,\"z\":0.0803}},\"ae6269\":{\"lock\":false,\"pos\":{\"x\":-29.6443,\"y\":1.6281,\"z\":17.7834},\"rot\":{\"x\":359.9201,\"y\":269.9829,\"z\":0.0169}},\"b2778b\":{\"lock\":false,\"pos\":{\"x\":-11.7201,\"y\":1.6848,\"z\":6.8648},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"b60629\":{\"lock\":false,\"pos\":{\"x\":-40.0045,\"y\":1.6347,\"z\":-8.835},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"b94a80\":{\"lock\":false,\"pos\":{\"x\":-14.1899,\"y\":1.6014,\"z\":0.5452},\"rot\":{\"x\":359.9201,\"y\":269.9779,\"z\":0.0169}},\"bd944d\":{\"lock\":false,\"pos\":{\"x\":-14.0437,\"y\":1.599,\"z\":-7.0529},\"rot\":{\"x\":359.9201,\"y\":269.9814,\"z\":0.0169}},\"ee1a2d\":{\"lock\":false,\"pos\":{\"x\":-31.3768,\"y\":1.6305,\"z\":17.6624},\"rot\":{\"x\":359.9831,\"y\":-0.0002,\"z\":359.92}},\"ee28de\":{\"lock\":false,\"pos\":{\"x\":-39.7775,\"y\":1.6349,\"z\":-6.9619},\"rot\":{\"x\":359.9201,\"y\":269.9802,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Custom_Tile", @@ -1068799,6 +1085196,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068817,9 +1085216,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0ef63c" }, { @@ -1068847,6 +1085246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068865,9 +1085266,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1068894,6 +1085295,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068909,12 +1085312,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8289ab" }, { @@ -1068942,6 +1085346,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1068957,12 +1085363,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6b1db" }, { @@ -1068990,6 +1085397,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069005,12 +1085414,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b0543" } ], @@ -1069054,6 +1085464,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069084,12 +1085496,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1069116,6 +1085529,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069131,12 +1085546,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "294b03" }, { @@ -1069164,6 +1085580,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069179,12 +1085597,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "96798d" }, { @@ -1069212,6 +1085631,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069227,12 +1085648,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd3dc6" }, { @@ -1069260,6 +1085682,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069275,12 +1085699,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f58ff" }, { @@ -1069308,6 +1085733,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069323,12 +1085750,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b415fe" }, { @@ -1069356,6 +1085784,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069371,12 +1085801,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2e6432" }, { @@ -1069404,6 +1085835,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069419,12 +1085852,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8abf0" }, { @@ -1069452,6 +1085886,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069467,12 +1085903,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "561311" }, { @@ -1069500,6 +1085937,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069515,12 +1085954,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e07e08" }, { @@ -1069548,6 +1085988,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069563,12 +1086005,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ad0f72" }, { @@ -1069596,6 +1086039,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069611,12 +1086056,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "04a984" }, { @@ -1069644,6 +1086090,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069659,12 +1086107,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "23cec4" }, { @@ -1069692,6 +1086141,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069707,12 +1086158,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "473340" }, { @@ -1069740,6 +1086192,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069755,12 +1086209,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8c58a6" } ], @@ -1069791,6 +1086246,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069835,7 +1086292,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -1069843,12 +1086301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1069875,6 +1086334,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069890,12 +1086351,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5d8225" }, { @@ -1069923,6 +1086385,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069938,12 +1086402,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8d8ae" }, { @@ -1069971,6 +1086436,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1069986,12 +1086453,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "92ad3b" }, { @@ -1070019,6 +1086487,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070034,12 +1086504,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b12e3b" }, { @@ -1070067,6 +1086538,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070082,12 +1086555,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d08016" }, { @@ -1070115,6 +1086589,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070130,12 +1086606,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee28b6" }, { @@ -1070163,6 +1086640,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070178,12 +1086657,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e80e4" }, { @@ -1070211,6 +1086691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070226,12 +1086708,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4a68a" }, { @@ -1070259,6 +1086742,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070274,12 +1086759,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13e208" }, { @@ -1070307,6 +1086793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070322,12 +1086810,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb5d1" }, { @@ -1070355,6 +1086844,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070370,12 +1086861,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b0543" }, { @@ -1070403,6 +1086895,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070418,12 +1086912,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -1070451,6 +1086946,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070466,12 +1086963,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -1070499,6 +1086997,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070514,12 +1087014,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1070547,6 +1087048,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070562,12 +1087065,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" }, { @@ -1070595,6 +1087099,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070610,12 +1087116,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f5c831" }, { @@ -1070643,6 +1087150,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070658,12 +1087167,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "97416f" }, { @@ -1070691,6 +1087201,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070706,12 +1087218,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f4202" }, { @@ -1070739,6 +1087252,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070754,12 +1087269,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c70601" }, { @@ -1070787,6 +1087303,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070802,12 +1087320,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1070835,6 +1087354,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070850,12 +1087371,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "435a47" }, { @@ -1070883,6 +1087405,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070898,12 +1087422,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1070931,6 +1087456,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070946,12 +1087473,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d63054" }, { @@ -1070979,6 +1087507,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1070994,12 +1087524,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b347d1" }, { @@ -1071027,6 +1087558,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071042,12 +1087575,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d36612" }, { @@ -1071075,6 +1087609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071090,12 +1087626,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50fdc5" }, { @@ -1071123,6 +1087660,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071138,12 +1087677,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4911f2" }, { @@ -1071171,6 +1087711,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071186,12 +1087728,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" } ], @@ -1071222,6 +1087765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071240,9 +1087785,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -1071270,6 +1087815,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071288,9 +1087835,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -1071318,6 +1087865,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071336,9 +1087885,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7cd54" } } @@ -1071368,6 +1087917,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071383,12 +1087934,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "472747" }, { @@ -1071416,6 +1087968,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071434,9 +1087988,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "47c89a", "States": { "3": { @@ -1071464,6 +1088018,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071482,9 +1088038,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -1071512,6 +1088068,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071530,9 +1088088,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7cd54" } } @@ -1071562,6 +1088120,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071577,12 +1088137,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48473d" }, { @@ -1071610,6 +1088171,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071634,12 +1088197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1071666,6 +1088230,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071681,12 +1088247,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "59051d" }, { @@ -1071714,6 +1088281,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071729,12 +1088298,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "00b403" }, { @@ -1071762,6 +1088332,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071777,12 +1088349,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6b601d" }, { @@ -1071810,6 +1088383,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071825,12 +1088400,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ee24f" }, { @@ -1071858,6 +1088434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071873,12 +1088451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "722544" }, { @@ -1071906,6 +1088485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071921,12 +1088502,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b0543" }, { @@ -1071954,6 +1088536,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1071969,12 +1088553,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fe730e" }, { @@ -1072002,6 +1088587,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072017,12 +1088604,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6d6b51" } ], @@ -1072053,6 +1088641,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072071,9 +1088661,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "56663e", "States": { "3": { @@ -1072101,6 +1088691,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072119,9 +1088711,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -1072149,6 +1088741,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072167,9 +1088761,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7cd54" } } @@ -1072199,6 +1088793,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072217,9 +1088813,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "57220c" }, { @@ -1072247,6 +1088843,8 @@ "Grid": true, "Snap": false, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072265,9 +1088863,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5ec77e" }, { @@ -1072295,6 +1088893,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072313,9 +1088913,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "62a171", "States": { "3": { @@ -1072343,6 +1088943,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072361,9 +1088963,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -1072391,6 +1088993,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072409,9 +1089013,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7cd54" } } @@ -1072441,6 +1089045,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072459,9 +1089065,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "69bc22" }, { @@ -1072489,6 +1089095,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072507,9 +1089115,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7258e7", "States": { "3": { @@ -1072537,6 +1089145,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072555,9 +1089165,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -1072585,6 +1089195,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072603,9 +1089215,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7cd54" } } @@ -1072635,6 +1089247,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072653,9 +1089267,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76f938", "States": { "3": { @@ -1072683,6 +1089297,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072701,9 +1089317,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -1072731,6 +1089347,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072749,9 +1089367,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7cd54" } } @@ -1072781,6 +1089399,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072800,12 +1089420,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1072832,6 +1089453,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072847,12 +1089470,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae4e05" }, { @@ -1072880,6 +1089504,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072895,12 +1089521,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bdebf4" }, { @@ -1072928,6 +1089555,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072943,12 +1089572,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "247ab6" } ], @@ -1072979,6 +1089609,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1072998,12 +1089630,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1073030,6 +1089663,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073045,12 +1089680,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c49ecc" }, { @@ -1073078,6 +1089714,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073093,12 +1089731,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5c8513" }, { @@ -1073126,6 +1089765,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073141,12 +1089782,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f23546" } ], @@ -1073177,6 +1089819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073195,9 +1089839,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ae6269" }, { @@ -1073225,6 +1089869,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073243,12 +1089889,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1073275,6 +1089922,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073290,12 +1089939,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fdd4e5" }, { @@ -1073323,6 +1089973,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073338,12 +1089990,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fdb6d7" } ], @@ -1073374,6 +1090027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073392,9 +1090047,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b60629", "States": { "3": { @@ -1073422,6 +1090077,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073440,9 +1090097,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -1073470,6 +1090127,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073488,9 +1090147,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7cd54" } } @@ -1073520,6 +1090179,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073538,9 +1090199,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b94a80" }, { @@ -1073568,6 +1090229,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073586,9 +1090249,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd944d" }, { @@ -1073616,6 +1090279,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073634,9 +1090299,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee1a2d", "States": { "3": { @@ -1073664,6 +1090329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073682,9 +1090349,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -1073712,6 +1090379,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073730,9 +1090399,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d7cd54" } } @@ -1073762,6 +1090431,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073780,9 +1090451,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee28de" } ], @@ -1073791,11 +1090462,11 @@ { "Name": "Bag", "Transform": { - "posX": 12.2512007, - "posY": 1.28292453, - "posZ": 11.9866, - "rotX": 0.07996109, - "rotY": 89.99995, + "posX": 12.2512016, + "posY": 1.28292441, + "posZ": 11.9866009, + "rotX": 0.07997449, + "rotY": 89.99971, "rotZ": 359.9831, "scaleX": 1.0, "scaleY": 1.0, @@ -1073806,13 +1090477,15 @@ "GMNotes": "", "ColorDiffuse": { "r": 0.7019608, - "g": 0.3647049, + "g": 0.364704967, "b": 0.0 }, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073821,9 +1090494,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n print(\"updating memory with moves\")\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n print(guid)\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n print(_)\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0,0.3,-3.6}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0,0.3,-4.4}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0,0.3,-5.2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n position={-2.8,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, \r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"06d203\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"0f80d8\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6982,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"192179\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0157,\"z\":0.0803}},\"1b897a\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7073,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"22ea35\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"35e12f\":{\"lock\":false,\"pos\":{\"x\":-11.9921,\"y\":1.671,\"z\":7.3711},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"3f7732\":{\"lock\":false,\"pos\":{\"x\":-27.1292,\"y\":1.6193,\"z\":-0.057},\"rot\":{\"x\":359.9201,\"y\":269.9963,\"z\":0.0169}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-20.6098,\"y\":1.6113,\"z\":3.7306},\"rot\":{\"x\":359.9316,\"y\":315,\"z\":359.9554}},\"48ac42\":{\"lock\":false,\"pos\":{\"x\":-33.3917,\"y\":1.6303,\"z\":7.6135},\"rot\":{\"x\":0.0799,\"y\":90.0096,\"z\":359.9831}},\"4f4bf1\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"61d9c7\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"7e11b7\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6959,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":180.0169}},\"8bc3db\":{\"lock\":false,\"pos\":{\"x\":-27.0906,\"y\":1.617,\"z\":-7.6667},\"rot\":{\"x\":359.9201,\"y\":269.9963,\"z\":0.0169}},\"8fbe45\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7002},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":180.0169}},\"9055e4\":{\"lock\":false,\"pos\":{\"x\":-26.8363,\"y\":1.6211,\"z\":7.4916},\"rot\":{\"x\":359.9201,\"y\":269.9964,\"z\":0.0169}},\"9e2d42\":{\"lock\":false,\"pos\":{\"x\":1.6962,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9922,\"z\":0.0687}},\"a20b9e\":{\"lock\":false,\"pos\":{\"x\":-33.462,\"y\":1.6282,\"z\":0.0027},\"rot\":{\"x\":359.9201,\"y\":269.9964,\"z\":0.0169}},\"a4a52d\":{\"lock\":false,\"pos\":{\"x\":-17.1191,\"y\":1.6799,\"z\":-0.0281},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"a8fe14\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"b7fb8b\":{\"lock\":false,\"pos\":{\"x\":-30.2237,\"y\":1.7004,\"z\":7.5676},\"rot\":{\"x\":359.9201,\"y\":270.0107,\"z\":180.0168}},\"ba9515\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"c9c721\":{\"lock\":false,\"pos\":{\"x\":-4.1025,\"y\":1.6545,\"z\":-14.8965},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"cbaacc\":{\"lock\":false,\"pos\":{\"x\":-23.6755,\"y\":1.689,\"z\":-0.0328},\"rot\":{\"x\":359.9202,\"y\":269.9784,\"z\":180.0176}},\"e036b7\":{\"lock\":false,\"pos\":{\"x\":-3.9271,\"y\":1.8357,\"z\":5.757},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"e52441\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6555,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"ee08db\":{\"lock\":false,\"pos\":{\"x\":-33.6171,\"y\":1.6273,\"z\":-3.8028},\"rot\":{\"x\":359.9316,\"y\":315.0002,\"z\":359.9554}},\"fa4c47\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7095,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"ff7146\":{\"lock\":false,\"pos\":{\"x\":-20.5149,\"y\":1.6101,\"z\":0.1049},\"rot\":{\"x\":359.9201,\"y\":269.9963,\"z\":0.0169}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1073850,6 +1090523,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073865,12 +1090540,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06d203" }, { @@ -1073898,6 +1090574,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073913,12 +1090591,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "0f80d8" }, { @@ -1073946,6 +1090625,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1073961,12 +1090642,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "192179" }, { @@ -1073994,6 +1090676,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074009,12 +1090693,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b897a" }, { @@ -1074042,6 +1090727,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074060,9 +1090747,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "22ea35", "States": { "2": { @@ -1074090,6 +1090777,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074108,9 +1090797,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1074138,6 +1090827,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074156,9 +1090847,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1074188,6 +1090879,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074209,12 +1090902,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1074241,6 +1090935,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074256,12 +1090952,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4eeff3" }, { @@ -1074289,6 +1090986,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074304,12 +1091003,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "412aac" }, { @@ -1074337,6 +1091037,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074352,12 +1091054,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3041bb" }, { @@ -1074385,6 +1091088,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074400,12 +1091105,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff00bc" }, { @@ -1074433,6 +1091139,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074448,12 +1091156,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "888c29" } ], @@ -1074484,6 +1091193,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074502,9 +1091213,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f7732", "States": { "2": { @@ -1074532,6 +1091243,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074550,9 +1091263,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1074580,6 +1091293,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074598,9 +1091313,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1074630,6 +1091345,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074648,9 +1091365,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5", "States": { "3": { @@ -1074678,6 +1091395,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074696,9 +1091415,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" }, "1": { @@ -1074726,6 +1091445,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074744,9 +1091465,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fc05aa" } } @@ -1074776,6 +1091497,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074794,9 +1091517,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "48ac42", "States": { "2": { @@ -1074824,6 +1091547,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074842,9 +1091567,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1074872,6 +1091597,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074890,9 +1091617,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1074922,6 +1091649,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074940,9 +1091669,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4f4bf1", "States": { "2": { @@ -1074970,6 +1091699,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1074988,9 +1091719,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1075018,6 +1091749,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075036,9 +1091769,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1075068,6 +1091801,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075086,9 +1091821,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "61d9c7", "States": { "2": { @@ -1075116,6 +1091851,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075134,9 +1091871,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1075164,6 +1091901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075182,9 +1091921,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1075214,6 +1091953,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075229,12 +1091970,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7e11b7" }, { @@ -1075262,6 +1092004,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075280,9 +1092024,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8bc3db", "States": { "2": { @@ -1075310,6 +1092054,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075328,9 +1092074,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1075358,6 +1092104,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075376,9 +1092124,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1075408,6 +1092156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075423,12 +1092173,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8fbe45" }, { @@ -1075456,6 +1092207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075474,9 +1092227,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9055e4", "States": { "2": { @@ -1075504,6 +1092257,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075522,9 +1092277,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1075552,6 +1092307,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075570,9 +1092327,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1075602,6 +1092359,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075620,9 +1092379,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1075649,6 +1092408,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075664,12 +1092425,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "bd070f" }, { @@ -1075697,6 +1092459,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075712,12 +1092476,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4e3e5" }, { @@ -1075745,6 +1092510,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075760,12 +1092527,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "91efef" }, { @@ -1075793,6 +1092561,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075808,12 +1092578,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8289ab" } ], @@ -1075857,6 +1092628,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075875,9 +1092648,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a20b9e", "States": { "2": { @@ -1075905,6 +1092678,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075923,9 +1092698,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1075953,6 +1092728,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1075971,9 +1092748,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1076003,6 +1092780,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076018,12 +1092797,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a4a52d" }, { @@ -1076051,6 +1092831,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076066,12 +1092848,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a8fe14" }, { @@ -1076099,6 +1092882,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076114,12 +1092899,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b7fb8b" }, { @@ -1076147,6 +1092933,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076165,9 +1092953,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba9515", "States": { "2": { @@ -1076195,6 +1092983,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076213,9 +1093003,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1076243,6 +1093033,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076261,9 +1093053,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1076293,6 +1093085,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076308,12 +1093102,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c9c721" }, { @@ -1076341,6 +1093136,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076356,12 +1093153,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cbaacc" }, { @@ -1076389,6 +1093187,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076447,7 +1093247,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -1076455,12 +1093256,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1076487,6 +1093289,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076502,12 +1093306,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3ac668" }, { @@ -1076535,6 +1093340,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076550,12 +1093357,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "24987a" }, { @@ -1076583,6 +1093391,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076598,12 +1093408,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ddb988" }, { @@ -1076631,6 +1093442,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076646,12 +1093459,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b1a29e" }, { @@ -1076679,6 +1093493,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076694,12 +1093510,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3f0caa" }, { @@ -1076727,6 +1093544,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076742,12 +1093561,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2f3950" }, { @@ -1076775,6 +1093595,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076790,12 +1093612,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8960c" }, { @@ -1076823,6 +1093646,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076838,12 +1093663,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f13921" }, { @@ -1076871,6 +1093697,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076886,12 +1093714,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "de95f0" }, { @@ -1076919,6 +1093748,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076934,12 +1093765,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ba5fb3" }, { @@ -1076967,6 +1093799,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1076982,12 +1093816,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b0543" }, { @@ -1077015,6 +1093850,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077030,12 +1093867,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd3dea" }, { @@ -1077063,6 +1093901,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077078,12 +1093918,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b0543" }, { @@ -1077111,6 +1093952,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077126,12 +1093969,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42360d" }, { @@ -1077159,6 +1094003,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077174,12 +1094020,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "672c15" }, { @@ -1077207,6 +1094054,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077222,12 +1094071,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42e9d1" }, { @@ -1077255,6 +1094105,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077270,12 +1094122,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cffee9" }, { @@ -1077303,6 +1094156,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077318,12 +1094173,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b0543" }, { @@ -1077351,6 +1094207,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077366,12 +1094224,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b0543" }, { @@ -1077399,6 +1094258,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077414,12 +1094275,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "978af7" }, { @@ -1077447,6 +1094309,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077462,12 +1094326,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd2c9b" }, { @@ -1077495,6 +1094360,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077510,12 +1094377,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b0543" }, { @@ -1077543,6 +1094411,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077558,12 +1094428,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fd4575" }, { @@ -1077591,6 +1094462,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077606,12 +1094479,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "410d7d" }, { @@ -1077639,6 +1094513,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077654,12 +1094530,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8d2f1c" }, { @@ -1077687,6 +1094564,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077702,12 +1094581,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fda0dc" }, { @@ -1077735,6 +1094615,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077750,12 +1094632,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b0543" }, { @@ -1077783,6 +1094666,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077798,12 +1094683,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "14bfaf" }, { @@ -1077831,6 +1094717,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077846,12 +1094734,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ea8fcf" }, { @@ -1077879,6 +1094768,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077894,12 +1094785,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1077927,6 +1094819,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077942,12 +1094836,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2ceae2" }, { @@ -1077975,6 +1094870,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1077990,12 +1094887,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "057d5f" }, { @@ -1078023,6 +1094921,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078038,12 +1094938,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1078071,6 +1094972,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078086,12 +1094989,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a2cf85" }, { @@ -1078119,6 +1095023,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078134,12 +1095040,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1078167,6 +1095074,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078182,12 +1095091,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1e04da" }, { @@ -1078215,6 +1095125,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078230,12 +1095142,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1d0c1c" }, { @@ -1078263,6 +1095176,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078278,12 +1095193,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1078311,6 +1095227,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078326,12 +1095244,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b75b70" }, { @@ -1078359,6 +1095278,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078374,12 +1095295,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" }, { @@ -1078407,6 +1095329,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078422,12 +1095346,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "8af879" }, { @@ -1078455,6 +1095380,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078470,12 +1095397,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6e7cb8" } ], @@ -1078506,6 +1095434,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078521,12 +1095451,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e52441" }, { @@ -1078554,6 +1095485,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078572,9 +1095505,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee08db", "States": { "2": { @@ -1078602,6 +1095535,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078620,9 +1095555,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1078650,6 +1095585,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078668,9 +1095605,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1078700,6 +1095637,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078715,12 +1095654,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "fa4c47" }, { @@ -1078748,6 +1095688,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078766,9 +1095708,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ff7146", "States": { "2": { @@ -1078796,6 +1095738,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078814,9 +1095758,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "44b0c5" }, "3": { @@ -1078844,6 +1095788,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078862,9 +1095808,9 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5b38c6" } } @@ -1078875,12 +1095821,12 @@ { "Name": "Custom_PDF", "Transform": { - "posX": -1.46510029, - "posY": 1.47562194, - "posZ": -26.93051, + "posX": -1.46510088, + "posY": 1.475622, + "posZ": -26.9305077, "rotX": 359.920135, "rotY": 270.0049, - "rotZ": 0.0168651138, + "rotZ": 0.016864853, "scaleX": 3.0, "scaleY": 1.0, "scaleZ": 3.0 @@ -1078897,6 +1095843,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078906,12 +1095854,12 @@ "CustomPDF": { "PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1017195498765335764/7F14DD87E9759B7A1B04F63871D6A1CD2F5984AD/", "PDFPassword": "", - "PDFPage": 0, + "PDFPage": 1, "PDFPageOffset": 0 }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b3bfc4" }, { @@ -1078920,8 +1095868,8 @@ "posX": 12.2492008, "posY": 1.2758615, "posZ": -12.0135031, - "rotX": 0.0799633861, - "rotY": 89.99738, + "rotX": 0.07996276, + "rotY": 89.9973145, "rotZ": 359.9831, "scaleX": 1.0, "scaleY": 1.0, @@ -1078932,13 +1095880,15 @@ "GMNotes": "", "ColorDiffuse": { "r": 0.7019608, - "g": 0.3647049, + "g": 0.364704967, "b": 0.0 }, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078947,9 +1095897,9 @@ "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, - "XmlUI": "", "LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n print(\"updating memory with moves\")\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n print(guid)\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n print(_)\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0,0.3,-3.6}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0,0.3,-4.4}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0,0.3,-5.2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n position={-2.8,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, \r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"5109ce\":{\"lock\":false,\"pos\":{\"x\":-8.62750053405762,\"y\":1.66958892345428,\"z\":14.7531023025513},\"rot\":{\"x\":359.920135498047,\"y\":270.000732421875,\"z\":0.0168706625699997}},\"8b870c\":{\"lock\":false,\"pos\":{\"x\":-2.72480034828186,\"y\":1.66397750377655,\"z\":0.373300284147263},\"rot\":{\"x\":0.0168224517256022,\"y\":180.008895874023,\"z\":0.080260656774044}},\"a7a6d7\":{\"lock\":false,\"pos\":{\"x\":-36.7729949951172,\"y\":1.70730531215668,\"z\":-0.0300390515476465},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":180.016860961914}},\"afac59\":{\"lock\":false,\"pos\":{\"x\":-3.92830014228821,\"y\":1.7130868434906,\"z\":5.75730085372925},\"rot\":{\"x\":359.919738769531,\"y\":270.000091552734,\"z\":180.016815185547}},\"bedac2\":{\"lock\":false,\"pos\":{\"x\":-2.68860006332397,\"y\":1.65499746799469,\"z\":-5.04850006103516},\"rot\":{\"x\":0.0168358907103539,\"y\":179.999496459961,\"z\":0.0802575349807739}},\"e4821e\":{\"lock\":false,\"pos\":{\"x\":1.69620072841644,\"y\":1.55831718444824,\"z\":14.2788028717041},\"rot\":{\"x\":359.955139160156,\"y\":225.003692626953,\"z\":0.0686667785048485}},\"e8d9d3\":{\"lock\":false,\"pos\":{\"x\":-11.6604995727539,\"y\":1.67665433883667,\"z\":8.24590110778809},\"rot\":{\"x\":359.920104980469,\"y\":270.000091552734,\"z\":180.016860961914}},\"f227e9\":{\"lock\":false,\"pos\":{\"x\":-3.9564003944397,\"y\":1.65564513206482,\"z\":-10.4533014297485},\"rot\":{\"x\":359.919738769531,\"y\":269.983581542969,\"z\":0.0168644450604916}}}}", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1078976,6 +1095926,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1078991,12 +1095943,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5109ce" }, { @@ -1079024,6 +1095977,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079042,12 +1095997,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1079074,6 +1096030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079089,12 +1096047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "654e1e" }, { @@ -1079122,6 +1096081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079137,12 +1096098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f1551d" } ], @@ -1079173,6 +1096135,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079188,12 +1096152,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a7a6d7" }, { @@ -1079221,6 +1096186,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079256,7 +1096223,8 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", @@ -1079264,12 +1096232,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1079296,6 +1096265,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079311,12 +1096282,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "11dde0" }, { @@ -1079344,6 +1096316,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079359,12 +1096333,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "6bb6d4" }, { @@ -1079392,6 +1096367,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079407,12 +1096384,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ce0ddd" }, { @@ -1079440,6 +1096418,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079455,12 +1096435,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "39f468" }, { @@ -1079488,6 +1096469,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079503,12 +1096486,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "01f5b6" }, { @@ -1079536,6 +1096520,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079551,12 +1096537,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4fea8d" }, { @@ -1079584,6 +1096571,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079599,12 +1096588,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81782c" }, { @@ -1079632,6 +1096622,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079647,12 +1096639,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cf984b" }, { @@ -1079680,6 +1096673,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079695,12 +1096690,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd325c" }, { @@ -1079728,6 +1096724,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079743,12 +1096741,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d08016" }, { @@ -1079776,6 +1096775,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079791,12 +1096792,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ee28b6" }, { @@ -1079824,6 +1096826,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079839,12 +1096843,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "5e80e4" }, { @@ -1079872,6 +1096877,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079887,12 +1096894,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e4a68a" }, { @@ -1079920,6 +1096928,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079935,12 +1096945,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13e208" }, { @@ -1079968,6 +1096979,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1079983,12 +1096996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9cb5d1" }, { @@ -1080016,6 +1097030,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080031,12 +1097047,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "50e716" }, { @@ -1080064,6 +1097081,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080079,12 +1097098,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c4ce76" }, { @@ -1080112,6 +1097132,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080127,12 +1097149,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ab3719" }, { @@ -1080160,6 +1097183,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080175,12 +1097200,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "16d6d6" } ], @@ -1080211,6 +1097237,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080230,12 +1097258,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1080262,6 +1097291,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080277,12 +1097308,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e727db" }, { @@ -1080310,6 +1097342,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080325,12 +1097359,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "4bc0b0" }, { @@ -1080358,6 +1097393,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080373,12 +1097410,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a406ac" } ], @@ -1080409,6 +1097447,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080427,9 +1097467,9 @@ "TypeIndex": 6, "CastShadows": true }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Deck", @@ -1080456,6 +1097496,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080474,12 +1097516,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1080506,6 +1097549,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080521,12 +1097566,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f6c5cc" }, { @@ -1080554,6 +1097600,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080569,12 +1097617,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d27e4c" } ], @@ -1080605,6 +1097654,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080620,12 +1097671,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "ffff8a" }, { @@ -1080653,6 +1097705,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080668,12 +1097722,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d9cf58" }, { @@ -1080701,6 +1097756,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080720,12 +1097777,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1080752,6 +1097810,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080767,12 +1097827,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "378148" }, { @@ -1080800,6 +1097861,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080815,12 +1097878,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "e1eb87" }, { @@ -1080848,6 +1097912,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080863,12 +1097929,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "13e14c" } ], @@ -1080899,6 +1097966,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080927,12 +1097996,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1080959,6 +1098029,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1080974,12 +1098046,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "cd5865" }, { @@ -1081007,6 +1098080,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081022,12 +1098097,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d184ad" }, { @@ -1081055,6 +1098131,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081070,12 +1098148,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "1b852f" }, { @@ -1081103,6 +1098182,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081118,12 +1098199,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "939ae2" }, { @@ -1081151,6 +1098233,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081166,12 +1098250,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "42b130" }, { @@ -1081199,6 +1098284,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081214,12 +1098301,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3cb4c1" }, { @@ -1081247,6 +1098335,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081262,12 +1098352,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9f253a" }, { @@ -1081295,6 +1098386,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081310,12 +1098403,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "a99099" }, { @@ -1081343,6 +1098437,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081358,12 +1098454,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "87be39" }, { @@ -1081391,6 +1098488,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081406,12 +1098505,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "814af7" }, { @@ -1081439,6 +1098539,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081454,12 +1098556,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "19e492" }, { @@ -1081487,6 +1098590,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081502,12 +1098607,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "d6ee90" } ], @@ -1081538,6 +1098644,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081553,12 +1098661,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "06af5a" }, { @@ -1081586,6 +1098695,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081601,12 +1098712,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "2b0543" } ], @@ -1081650,6 +1098762,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081676,12 +1098790,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "ContainedObjects": [ { "Name": "Card", @@ -1081708,6 +1098823,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081723,12 +1098840,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "17a7f7" }, { @@ -1081756,6 +1098874,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081771,12 +1098891,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "755ffa" }, { @@ -1081804,6 +1098925,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081819,12 +1098942,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "3dccc2" }, { @@ -1081852,6 +1098976,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081867,12 +1098993,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "c0350f" }, { @@ -1081900,6 +1099027,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081915,12 +1099044,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b03eb9" }, { @@ -1081948,6 +1099078,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1081963,12 +1099095,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "b8f127" }, { @@ -1081996,6 +1099129,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1082011,12 +1099146,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "81310d" }, { @@ -1082044,6 +1099180,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1082059,12 +1099197,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "7cd885" }, { @@ -1082092,6 +1099231,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1082107,12 +1099248,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "9d6353" }, { @@ -1082140,6 +1099282,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1082155,12 +1099299,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": false + "UniqueBack": false, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "76795a" } ], @@ -1082191,6 +1099336,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1082206,12 +1099353,13 @@ "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, - "UniqueBack": true + "UniqueBack": true, + "Type": 0 } }, - "XmlUI": "", "LuaScript": "", "LuaScriptState": "", + "XmlUI": "", "GUID": "f227e9" } ], @@ -1082221,11 +1099369,11 @@ "Name": "Custom_Tile", "Transform": { "posX": 12.2503033, - "posY": 1.45853794, + "posY": 1.45853782, "posZ": -20.0136013, "rotX": 359.9201, "rotY": 270.0311, - "rotZ": 0.0168288834, + "rotZ": 0.0168302245, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 @@ -1082242,6 +1099390,8 @@ "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, @@ -1082260,13 +1099410,13 @@ "Stretch": true } }, - "XmlUI": "", "LuaScript": "name = 'Ordis'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", "LuaScriptState": "", + "XmlUI": "", "GUID": "bbb70a" } ], - "GUID": "0fad66", + "GUID": "7cf202", "AttachedDecals": [ { "Transform": { @@ -1082289,19 +1099439,19 @@ ] }, { - "Name": "3DText", + "Name": "Custom_Model_Bag", "Transform": { - "posX": 39.39326, - "posY": 1.42326963, - "posZ": -13.2711258, - "rotX": 90.0, - "rotY": 90.0, - "rotZ": 0.0, + "posX": 51.6522141, + "posY": 1.4053247, + "posZ": -27.8700886, + "rotX": 359.920135, + "rotY": 270.006226, + "rotZ": 0.0168641116, "scaleX": 1.0, - "scaleY": 1.0, + "scaleY": 0.139652729, "scaleZ": 1.0 }, - "Nickname": "", + "Nickname": "The Circle Undone", "Description": "", "GMNotes": "", "ColorDiffuse": { @@ -1082309,29 +1099459,46531 @@ "g": 1.0, "b": 1.0 }, - "Locked": true, + "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, - "Text": { - "Text": "Featured Fan Campaign", - "colorstate": { - "r": 1.0, - "g": 1.0, - "b": 1.0 + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517669843863/DC0750A38111062909FEDA1BC20685895A574A54/", + "NormalURL": "", + "ColliderURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CustomShader": { + "SpecularColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "SpecularIntensity": 0.0, + "SpecularSharpness": 2.0, + "FresnelStrength": 0.0 }, - "fontSize": 56 + "CastShadows": true }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 4\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={1.5,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-1.2,5,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-4,5,6}, rotation={0,0,0}, height=500, width=1000,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1.35,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1.25,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={-6,1,0}, rotation={0,90,0}, height=500, width=1200,\r\n-- font_size=350, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", + "LuaScriptState": "{\"ml\":{\"0fad66\":{\"lock\":false,\"pos\":{\"x\":12.2492,\"y\":1.4562,\"z\":-28.0139},\"rot\":{\"x\":359.9201,\"y\":269.9981,\"z\":0.0169}},\"1e45e8\":{\"lock\":false,\"pos\":{\"x\":12.2498,\"y\":1.4656,\"z\":3.9864},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"1ee775\":{\"lock\":false,\"pos\":{\"x\":12.25,\"y\":1.4586,\"z\":-20.0138},\"rot\":{\"x\":359.9201,\"y\":270.0228,\"z\":0.0168}},\"20f70a\":{\"lock\":false,\"pos\":{\"x\":12.2499,\"y\":1.4609,\"z\":-12.0136},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"2f008a\":{\"lock\":false,\"pos\":{\"x\":12.2493,\"y\":1.475,\"z\":35.9864},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"44a05a\":{\"lock\":false,\"pos\":{\"x\":-1.4402,\"y\":1.4756,\"z\":-27.0401},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":0.0169}},\"5c79d0\":{\"lock\":false,\"pos\":{\"x\":12.2519,\"y\":1.468,\"z\":11.9864},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"67a775\":{\"lock\":false,\"pos\":{\"x\":12.2502,\"y\":1.4727,\"z\":27.9864},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"7388bc\":{\"lock\":false,\"pos\":{\"x\":12.2499,\"y\":1.4703,\"z\":19.9864},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"a61b48\":{\"lock\":false,\"pos\":{\"x\":12.2494,\"y\":1.4633,\"z\":-4.0136},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}}}}", "XmlUI": "", - "LuaScript": "", - "LuaScriptState": "", - "GUID": "134348" + "ContainedObjects": [ + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 12.249301, + "posY": 1.47502887, + "posZ": 35.9864, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.0168746356, + "scaleX": 2.21, + "scaleY": 0.46, + "scaleZ": 2.42 + }, + "Nickname": "Prologue: Disappearance at the Twilight Estate", + "Description": "The Circle Undone", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/829135118401802201/BBA2D56684DEDDE1029593B9CD9C931FAE39348B/", + "NormalURL": "", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CustomShader": { + "SpecularColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0 + }, + "SpecularIntensity": 0.0, + "SpecularSharpness": 2.0, + "FresnelStrength": 0.0 + }, + "CastShadows": true + }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", + "LuaScriptState": "{\"ml\":{\"05f912\":{\"lock\":false,\"pos\":{\"x\":-3.7579,\"y\":1.5825,\"z\":-14.3157},\"rot\":{\"x\":359.9197,\"y\":270.0054,\"z\":0.0168}},\"060886\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"327f3b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"349eb6\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6907,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"3b69ae\":{\"lock\":false,\"pos\":{\"x\":-23.6767,\"y\":1.6817,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"62c1c6\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9996,\"z\":0.0799}},\"6913e9\":{\"lock\":false,\"pos\":{\"x\":-20.4586,\"y\":1.61,\"z\":-0.0349},\"rot\":{\"x\":0.0799,\"y\":89.9997,\"z\":359.9831}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-27.2548,\"y\":1.6194,\"z\":-0.19},\"rot\":{\"x\":359.9201,\"y\":269.9944,\"z\":0.0169}},\"7cb46b\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"8f704c\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7157,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"94ef8e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"9dd605\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9998,\"z\":0.0799}},\"a1eb9b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6965,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"a6d5fb\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9995,\"z\":0.0799}},\"aa1331\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0011,\"z\":0.0803}},\"e4fd93\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6179,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"f2806a\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"f4f8dc\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6555,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"f5616e\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"fa2600\":{\"lock\":false,\"pos\":{\"x\":-12.2948,\"y\":1.4158,\"z\":7.4542},\"rot\":{\"x\":359.9831,\"y\":-0.0002,\"z\":359.92}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Deck", + "Transform": { + "posX": -3.92770076, + "posY": 1.71574712, + "posZ": 5.7571, + "rotX": 359.919739, + "rotY": 270.004883, + "rotZ": 0.0168388188, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 12121, + 12121, + 275023, + 275020, + 12122, + 275016, + 275021, + 275023, + 275022, + 275002, + 275022, + 275022, + 12122, + 275020, + 275018, + 275021, + 275016, + 275015, + 275019, + 275017, + 275017, + 275023, + 275018, + 275002, + 275019 + ], + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2750": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -28.5070229, + "posY": 1.75684988, + "posZ": 9.774932, + "rotX": 354.0092, + "rotY": 269.797241, + "rotZ": 0.05575819, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Crypt Chill", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12121, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fb311c" + }, + { + "Name": "Card", + "Transform": { + "posX": -28.2133236, + "posY": 1.596211, + "posZ": 12.41327, + "rotX": 359.920135, + "rotY": 269.999756, + "rotZ": 0.0168656427, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Crypt Chill", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12121, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b78c3b" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.3964348, + "posY": 1.59983659, + "posZ": 9.659243, + "rotX": 359.919434, + "rotY": 269.9977, + "rotZ": 0.0151809463, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275023, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fbcb9f" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.8700485, + "posY": 1.687739, + "posZ": 1.73515284, + "rotX": 359.920563, + "rotY": 269.9831, + "rotZ": 355.3065, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Realm of Torment", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275020, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "278e46" + }, + { + "Name": "Card", + "Transform": { + "posX": -28.4553566, + "posY": 1.59503615, + "posZ": 7.27901125, + "rotX": 359.920135, + "rotY": 269.993866, + "rotZ": 0.0168785062, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Obscuring Fog", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12122, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "356046" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.6406765, + "posY": 1.59453154, + "posZ": -9.515267, + "rotX": 359.9201, + "rotY": 270.014374, + "rotZ": 0.0168471411, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shadow Hound", + "Description": "Monster. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275016, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c9136e" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.573534, + "posY": 1.59301436, + "posZ": -14.3349619, + "rotX": 359.9199, + "rotY": 269.991882, + "rotZ": 0.0167854447, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shapes in the Mist", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275021, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "47147f" + }, + { + "Name": "Card", + "Transform": { + "posX": -27.9579372, + "posY": 1.5929203, + "posZ": 2.44796968, + "rotX": 359.920135, + "rotY": 269.9995, + "rotZ": 0.0168674216, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275023, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "717c42" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.4375153, + "posY": 1.59565043, + "posZ": -4.75423574, + "rotX": 359.920135, + "rotY": 270.0017, + "rotZ": 0.016865246, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275022, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4f41b0" + }, + { + "Name": "Card", + "Transform": { + "posX": -26.8521061, + "posY": 1.58786321, + "posZ": -9.490302, + "rotX": 359.920135, + "rotY": 269.999969, + "rotZ": 0.0168652888, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Watcher's Grasp", + "Description": "Power. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275002, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f798c8" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.7596, + "posY": 1.67825866, + "posZ": -2.013425, + "rotX": 359.92, + "rotY": 270.000549, + "rotZ": 4.292792, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275022, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "43ba03" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.7052422, + "posY": 1.59740448, + "posZ": -0.0485267043, + "rotX": 359.919922, + "rotY": 270.007019, + "rotZ": 0.0168208443, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275022, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1a350a" + }, + { + "Name": "Card", + "Transform": { + "posX": -28.2566147, + "posY": 1.59406376, + "posZ": 4.91735125, + "rotX": 359.920135, + "rotY": 269.9997, + "rotZ": 0.0168691725, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Obscuring Fog", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12122, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "03a265" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.7993183, + "posY": 1.59880829, + "posZ": 4.25690842, + "rotX": 359.920135, + "rotY": 269.999573, + "rotZ": 0.01687331, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Realm of Torment", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275020, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e49187" + }, + { + "Name": "Card", + "Transform": { + "posX": -27.3012123, + "posY": 1.58601832, + "posZ": -17.8810863, + "rotX": 359.920135, + "rotY": 269.999756, + "rotZ": 0.0168696512, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wraith", + "Description": "Monster. Geist. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275018, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7732b3" + }, + { + "Name": "Card", + "Transform": { + "posX": -32.68019, + "posY": 1.67363954, + "posZ": -12.2995234, + "rotX": 359.920166, + "rotY": 269.988342, + "rotZ": 355.892548, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shapes in the Mist", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275021, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3c04e0" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.2036572, + "posY": 1.59459114, + "posZ": -7.24409771, + "rotX": 359.920135, + "rotY": 270.006256, + "rotZ": 0.01685856, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shadow Hound", + "Description": "Monster. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275016, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9d53c1" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.7644672, + "posY": 1.59955311, + "posZ": 6.95123863, + "rotX": 359.920135, + "rotY": 269.998657, + "rotZ": 0.01686673, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nether Mist.", + "Description": "Monster. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275015, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d32fa0" + }, + { + "Name": "Card", + "Transform": { + "posX": -27.7993889, + "posY": 1.59196377, + "posZ": -0.0492937826, + "rotX": 359.920135, + "rotY": 269.99942, + "rotZ": 0.0168678835, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Trapped Spirits", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275019, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "10c2cb" + }, + { + "Name": "Card", + "Transform": { + "posX": -26.9741821, + "posY": 1.661381, + "posZ": -14.4091225, + "rotX": 359.9201, + "rotY": 270.005066, + "rotZ": 3.94704032, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers in the Dark", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275017, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c4c440" + }, + { + "Name": "Card", + "Transform": { + "posX": -26.918148, + "posY": 1.58713388, + "posZ": -12.2730618, + "rotX": 359.920074, + "rotY": 270.006378, + "rotZ": 0.0167598221, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers in the Dark", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275017, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "aa8c0e" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.396637, + "posY": 1.67693043, + "posZ": 11.7433891, + "rotX": 359.9186, + "rotY": 270.000336, + "rotZ": 356.001038, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275023, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ef132d" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.9720936, + "posY": 1.59132147, + "posZ": -17.2514343, + "rotX": 359.920135, + "rotY": 269.9997, + "rotZ": 0.0168706663, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wraith", + "Description": "Monster. Geist. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275018, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "db1b65" + }, + { + "Name": "Card", + "Transform": { + "posX": -27.6742229, + "posY": 1.58979166, + "posZ": -6.83305073, + "rotX": 359.920135, + "rotY": 269.9995, + "rotZ": 0.01686861, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Watcher's Grasp", + "Description": "Power. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275002, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f92f1e" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.92616558, + "posY": 1.9221096, + "posZ": 5.755823, + "rotX": 358.468964, + "rotY": 269.9793, + "rotZ": 1.27267146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Trapped Spirits", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275019, + "SidewaysCard": false, + "CustomDeck": { + "2750": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4e4752" + } + ], + "GUID": "8f704c" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.68859982, + "posY": 1.65545762, + "posZ": -5.04850054, + "rotX": 0.01683514, + "rotY": 180.000031, + "rotZ": 0.0802575, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Disappearance", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232002, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f4f8dc" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.7248, + "posY": 1.65710151, + "posZ": 0.3733004, + "rotX": 0.0168334637, + "rotY": 180.001144, + "rotZ": 0.08025778, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "JUDGMENT · XX", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232001, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "aa1331" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.9559, + "posY": 1.655648, + "posZ": -10.4412251, + "rotX": 359.919739, + "rotY": 269.999969, + "rotZ": 0.0168405436, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "Disappearance at the Twilight Estate", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231700, + "SidewaysCard": false, + "CustomDeck": { + "2317": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f2806a" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.7579, + "posY": 1.58251858, + "posZ": -14.3157024, + "rotX": 359.919739, + "rotY": 270.005432, + "rotZ": 0.0168303642, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "The Circle Undone", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'The Circle Undone'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "05f912" + }, + { + "Name": "Bag", + "Transform": { + "posX": -12.2948, + "posY": 1.4158051, + "posZ": 7.454201, + "rotX": 359.983124, + "rotY": -0.000205736433, + "rotZ": 359.920044, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Neutral Investigators", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.7058823, + "g": 0.366520882, + "b": 0.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Bag", + "Transform": { + "posX": 26.3065453, + "posY": 3.29357, + "posZ": -9.469313, + "rotX": 1.42241311, + "rotY": 359.957733, + "rotZ": 357.492, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Gavriella Mizrah", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.7058823, + "g": 0.366520882, + "b": 0.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Deck", + "Transform": { + "posX": 34.1210976, + "posY": 3.3517437, + "posZ": -12.8516035, + "rotX": 357.597778, + "rotY": 270.0035, + "rotZ": 359.817932, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Opening Hand", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 226324, + 226326, + 226309, + 226313, + 226337, + 273707, + 273707 + ], + "CustomDeck": { + "2263": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2737": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 4.631482, + "posY": 1.344554, + "posZ": 72.72989, + "rotX": 0.0208172444, + "rotY": 269.969421, + "rotZ": 0.0167602915, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "First Aid", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 226324, + "SidewaysCard": false, + "CustomDeck": { + "2263": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5cd622" + }, + { + "Name": "Card", + "Transform": { + "posX": 4.516396, + "posY": 1.34366512, + "posZ": 69.83648, + "rotX": 0.0208185278, + "rotY": 269.9694, + "rotZ": 0.0167605374, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Guard Dog", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 226326, + "SidewaysCard": false, + "CustomDeck": { + "2263": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "08bdf1" + }, + { + "Name": "Card", + "Transform": { + "posX": 4.567363, + "posY": 1.34280407, + "posZ": 66.83125, + "rotX": 0.020799987, + "rotY": 270.027039, + "rotZ": 0.0167772286, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Evidence!", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 226309, + "SidewaysCard": false, + "CustomDeck": { + "2263": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "2db518" + }, + { + "Name": "Card", + "Transform": { + "posX": 4.3307, + "posY": 1.34025061, + "posZ": 58.4018, + "rotX": 0.0208008438, + "rotY": 270.027039, + "rotZ": 0.01677944, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dodge", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 226313, + "SidewaysCard": false, + "CustomDeck": { + "2263": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e0dff3" + }, + { + "Name": "Card", + "Transform": { + "posX": 4.14204025, + "posY": 1.33948767, + "posZ": 56.0293541, + "rotX": 0.0208072253, + "rotY": 269.999847, + "rotZ": 0.0167742968, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Extra Ammunition (1)", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 226337, + "SidewaysCard": false, + "CustomDeck": { + "2263": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f60263" + }, + { + "Name": "Card", + "Transform": { + "posX": 5.00387335, + "posY": 1.50773728, + "posZ": 72.87777, + "rotX": 0.020830743, + "rotY": 270.027039, + "rotZ": 0.0169054624, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Delay the Inevitable", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 273707, + "SidewaysCard": false, + "CustomDeck": { + "2737": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "83ad4d" + }, + { + "Name": "Card", + "Transform": { + "posX": 5.003854, + "posY": 1.456672, + "posZ": 72.87767, + "rotX": 0.0194944441, + "rotY": 270.026917, + "rotZ": 0.0161545, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Delay the Inevitable", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 273707, + "SidewaysCard": false, + "CustomDeck": { + "2737": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "74788f" + } + ], + "GUID": "281d29" + }, + { + "Name": "Card", + "Transform": { + "posX": 35.6639748, + "posY": 3.32260823, + "posZ": -19.1232128, + "rotX": 359.920135, + "rotY": 269.999756, + "rotZ": 0.0168644935, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Physical Training", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 226323, + "SidewaysCard": false, + "CustomDeck": { + "2263": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1165db" + }, + { + "Name": "Card", + "Transform": { + "posX": 34.7973251, + "posY": 3.324777, + "posZ": -15.8624535, + "rotX": 359.920135, + "rotY": 269.9996, + "rotZ": 0.016867958, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": ".45 Automatic", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 226330, + "SidewaysCard": false, + "CustomDeck": { + "2263": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "12660b" + }, + { + "Name": "Card", + "Transform": { + "posX": 38.7383156, + "posY": 3.31823277, + "posZ": -19.4288616, + "rotX": 359.920135, + "rotY": 269.999847, + "rotZ": 0.0168620888, + "scaleX": 0.452574432, + "scaleY": 1.0, + "scaleZ": 0.452574432 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 281003, + "SidewaysCard": false, + "CustomDeck": { + "2810": { + "FaceURL": "https://i.imgur.com/lGTlFGx.jpg", + "BackURL": "https://i.imgur.com/tHE0Iz1.jpg", + "NumWidth": 2, + "NumHeight": 2, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0feaae" + }, + { + "Name": "Card", + "Transform": { + "posX": 32.6476936, + "posY": 3.5249207, + "posZ": -24.765955, + "rotX": 1.92433882, + "rotY": 180.085037, + "rotZ": 3.40546966, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Gavriella Mizrah", + "Description": "Private Security", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 232003, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8a83e8" + } + ], + "GUID": "0e30b9" + }, + { + "Name": "Bag", + "Transform": { + "posX": 26.7795773, + "posY": 3.2582202, + "posZ": -9.099031, + "rotX": 1.79921126, + "rotY": 359.871857, + "rotZ": 357.5099, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Jerome Davids", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.7058823, + "g": 0.366520882, + "b": 0.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Deck", + "Transform": { + "posX": -11.10893, + "posY": 3.62021971, + "posZ": 0.353564084, + "rotX": 1.02570677, + "rotY": 270.011627, + "rotZ": 1.272254, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Opening Hand", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 230424, + 230408, + 230413, + 230404, + 230402, + 230437, + 273210, + 273209, + 273208, + 273208 + ], + "CustomDeck": { + "2304": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2732": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -11.1692886, + "posY": 1.33912277, + "posZ": 73.77951, + "rotX": 0.0208120961, + "rotY": 269.9788, + "rotZ": 0.0167658757, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hyperawareness", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 230424, + "SidewaysCard": false, + "CustomDeck": { + "2304": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e5dd39" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.3107576, + "posY": 1.47291374, + "posZ": 73.35265, + "rotX": 0.0221921522, + "rotY": 269.9974, + "rotZ": 359.76178, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mind over Matter", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 230408, + "SidewaysCard": false, + "CustomDeck": { + "2304": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8cf335" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.42252, + "posY": 1.501595, + "posZ": 73.46465, + "rotX": 0.021279335, + "rotY": 269.984344, + "rotZ": 0.0184201915, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Working a Hunch", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 230413, + "SidewaysCard": false, + "CustomDeck": { + "2304": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "eb6165" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.3899441, + "posY": 1.48795211, + "posZ": 73.5318451, + "rotX": 0.0215425957, + "rotY": 269.983582, + "rotZ": 0.0192076042, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Barricade", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 230404, + "SidewaysCard": false, + "CustomDeck": { + "2304": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "edb554" + }, + { + "Name": "Card", + "Transform": { + "posX": -10.9712381, + "posY": 1.4861536, + "posZ": 73.77901, + "rotX": 0.0191635229, + "rotY": 269.960022, + "rotZ": 0.0128358416, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Deduction", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 230402, + "SidewaysCard": false, + "CustomDeck": { + "2304": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b265c4" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.1768236, + "posY": 1.4889226, + "posZ": 74.07263, + "rotX": 0.0141705936, + "rotY": 270.000122, + "rotZ": 0.0101296967, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Magnifying Glass (1)", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 230437, + "SidewaysCard": false, + "CustomDeck": { + "2304": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "378e84" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.2189875, + "posY": 1.49380946, + "posZ": 74.10728, + "rotX": 0.02095028, + "rotY": 269.984741, + "rotZ": 0.0163107812, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fingerprint Kit", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 273210, + "SidewaysCard": false, + "CustomDeck": { + "2732": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b9bb2a" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.3964529, + "posY": 1.4997499, + "posZ": 73.34295, + "rotX": 0.02103572, + "rotY": 269.97757, + "rotZ": 0.0182552375, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Connect the Dots", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 273209, + "SidewaysCard": false, + "CustomDeck": { + "2732": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "13413d" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.1932592, + "posY": 1.45179629, + "posZ": 73.80069, + "rotX": 0.0208130423, + "rotY": 269.964661, + "rotZ": 0.0167861488, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Curiosity", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 273208, + "SidewaysCard": false, + "CustomDeck": { + "2732": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c2b986" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.1543875, + "posY": 1.45944822, + "posZ": 73.82197, + "rotX": 0.0194276161, + "rotY": 269.964661, + "rotZ": 0.0194934011, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Curiosity", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 273208, + "SidewaysCard": false, + "CustomDeck": { + "2732": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "50a804" + } + ], + "GUID": "b879b9" + }, + { + "Name": "Card", + "Transform": { + "posX": -10.9994316, + "posY": 3.58587575, + "posZ": 0.729995549, + "rotX": 0.9148791, + "rotY": 269.837, + "rotZ": 349.8496, + "scaleX": 0.452574432, + "scaleY": 1.0, + "scaleZ": 0.452574432 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 281000, + "SidewaysCard": false, + "CustomDeck": { + "2810": { + "FaceURL": "https://i.imgur.com/lGTlFGx.jpg", + "BackURL": "https://i.imgur.com/tHE0Iz1.jpg", + "NumWidth": 2, + "NumHeight": 2, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5d06b4" + }, + { + "Name": "Card", + "Transform": { + "posX": 32.9491234, + "posY": 3.56672716, + "posZ": -20.8460236, + "rotX": 0.5360949, + "rotY": 179.95636, + "rotZ": 0.333235145, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Jerome Davids", + "Description": "Josef's Secretary", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 232004, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d80c14" + } + ], + "GUID": "886e03" + }, + { + "Name": "Bag", + "Transform": { + "posX": 26.3010883, + "posY": 3.2914772, + "posZ": -9.41391, + "rotX": 1.69062531, + "rotY": 359.959747, + "rotZ": 357.6101, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Valentino Rivas", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.7058823, + "g": 0.366520882, + "b": 0.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 32.1356659, + "posY": 3.537645, + "posZ": -9.438395, + "rotX": 357.1436, + "rotY": 270.017761, + "rotZ": 359.418243, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Well Connected", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274208, + "SidewaysCard": false, + "CustomDeck": { + "2742": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "66b7d5" + }, + { + "Name": "Deck", + "Transform": { + "posX": 36.4942055, + "posY": 3.48028517, + "posZ": -9.690706, + "rotX": 359.920135, + "rotY": 269.987671, + "rotZ": 0.01688546, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Opening Hand", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 274206, + 274206, + 277654, + 261702, + 261528, + 274207, + 274207 + ], + "CustomDeck": { + "2742": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2776": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2617": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2615": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 42.0147934, + "posY": 1.49191868, + "posZ": -8.96351051, + "rotX": 359.915619, + "rotY": 269.998535, + "rotZ": 0.015286142, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cunning", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274206, + "SidewaysCard": false, + "CustomDeck": { + "2742": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1f601c" + }, + { + "Name": "Card", + "Transform": { + "posX": 42.1102753, + "posY": 1.63229167, + "posZ": -9.064435, + "rotX": 359.932861, + "rotY": 269.999847, + "rotZ": 0.0226543453, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cunning", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274206, + "SidewaysCard": false, + "CustomDeck": { + "2742": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "03ff2d" + }, + { + "Name": "Card", + "Transform": { + "posX": 42.01537, + "posY": 1.65020156, + "posZ": -8.873732, + "rotX": 359.932343, + "rotY": 270.00058, + "rotZ": 0.0120726945, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Sure Gamble (3)", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 277654, + "SidewaysCard": false, + "CustomDeck": { + "2776": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "308be1" + }, + { + "Name": "Card", + "Transform": { + "posX": 41.97797, + "posY": 1.636614, + "posZ": -9.04462051, + "rotX": 359.935425, + "rotY": 270.003418, + "rotZ": 0.0175489858, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Opportunist", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 261702, + "SidewaysCard": false, + "CustomDeck": { + "2617": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a88392" + }, + { + "Name": "Card", + "Transform": { + "posX": 41.9782, + "posY": 1.63467884, + "posZ": -9.390869, + "rotX": 359.932526, + "rotY": 269.996277, + "rotZ": 0.0225799251, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": ".41 Derringer", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 261528, + "SidewaysCard": false, + "CustomDeck": { + "2615": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fe2db3" + }, + { + "Name": "Card", + "Transform": { + "posX": 42.02679, + "posY": 1.63689828, + "posZ": -9.450618, + "rotX": 359.930267, + "rotY": 270.00058, + "rotZ": 0.0174559243, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Money Talks", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274207, + "SidewaysCard": false, + "CustomDeck": { + "2742": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3712d1" + }, + { + "Name": "Card", + "Transform": { + "posX": 41.81751, + "posY": 1.64222491, + "posZ": -9.19327, + "rotX": 359.920471, + "rotY": 269.9992, + "rotZ": 0.01775414, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Money Talks", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 274207, + "SidewaysCard": false, + "CustomDeck": { + "2742": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "64b423" + } + ], + "GUID": "0c1b64" + }, + { + "Name": "Card", + "Transform": { + "posX": 31.6972256, + "posY": 3.48417282, + "posZ": -7.21520758, + "rotX": 359.9201, + "rotY": 270.0282, + "rotZ": 0.01683228, + "scaleX": 0.452574432, + "scaleY": 1.0, + "scaleZ": 0.452574432 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 281002, + "SidewaysCard": false, + "CustomDeck": { + "2810": { + "FaceURL": "https://i.imgur.com/lGTlFGx.jpg", + "BackURL": "https://i.imgur.com/tHE0Iz1.jpg", + "NumWidth": 2, + "NumHeight": 2, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "cc299a" + }, + { + "Name": "Card", + "Transform": { + "posX": 33.1302948, + "posY": 3.520642, + "posZ": -14.959734, + "rotX": 2.45931625, + "rotY": 180.086182, + "rotZ": 2.66070175, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Valentino Rivas", + "Description": "Wealthy Philanthropist", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 232005, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "41d2da" + } + ], + "GUID": "d4a4b4" + }, + { + "Name": "Bag", + "Transform": { + "posX": -11.8164482, + "posY": 3.49307728, + "posZ": 7.85791874, + "rotX": 359.9391, + "rotY": 314.996979, + "rotZ": 359.1888, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Penny White", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.7058823, + "g": 0.366520882, + "b": 0.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 5.18085051, + "posY": 2.65918827, + "posZ": 0.446127057, + "rotX": 0.0208086427, + "rotY": 269.999969, + "rotZ": 0.0167691186, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dig Deep", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368831, + "SidewaysCard": false, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fc9e1b" + }, + { + "Name": "Card", + "Transform": { + "posX": 32.73767, + "posY": 3.47830081, + "posZ": -14.1185627, + "rotX": 359.920135, + "rotY": 270.000549, + "rotZ": 0.01686701, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Knife", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 209612, + "SidewaysCard": false, + "CustomDeck": { + "2096": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0ab3f1" + }, + { + "Name": "Card", + "Transform": { + "posX": 31.430542, + "posY": 3.48107457, + "posZ": -10.8877916, + "rotX": 359.920135, + "rotY": 269.999847, + "rotZ": 0.0168695319, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Flashlight", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 209615, + "SidewaysCard": false, + "CustomDeck": { + "2096": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1a6a10" + }, + { + "Name": "Deck", + "Transform": { + "posX": 8.684676, + "posY": 2.99370885, + "posZ": -1.173617, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.0168783572, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Opening Hand", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 276006, + 209612, + 276006, + 276007, + 276007, + 209615, + 368824, + 368810 + ], + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2096": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -11.8823442, + "posY": 1.579667, + "posZ": 33.6978073, + "rotX": 359.9206, + "rotY": 270.000336, + "rotZ": 0.0137964133, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Able Bodied", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 276006, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "74ca59" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.04713, + "posY": 1.72501063, + "posZ": 33.97278, + "rotX": 359.9552, + "rotY": 270.000763, + "rotZ": 359.961975, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Knife", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 209612, + "SidewaysCard": false, + "CustomDeck": { + "2096": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3c3398" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.5777493, + "posY": 1.57913435, + "posZ": 33.9234543, + "rotX": 359.922363, + "rotY": 270.002167, + "rotZ": 0.00185142609, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Able Bodied", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 276006, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bbe2c9" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.7172565, + "posY": 1.61746192, + "posZ": 34.4364853, + "rotX": 0.2480991, + "rotY": 270.00116, + "rotZ": 0.1788842, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act of Desperation", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 276007, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6b61d6" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.7584276, + "posY": 1.763603, + "posZ": 34.2776337, + "rotX": 0.252691746, + "rotY": 269.9969, + "rotZ": 359.892365, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act of Desperation", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 276007, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5ccd29" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.9528351, + "posY": 1.90474594, + "posZ": 34.3866234, + "rotX": 0.366804957, + "rotY": 269.994843, + "rotZ": 359.834, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Flashlight", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 209615, + "SidewaysCard": false, + "CustomDeck": { + "2096": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bb1cce" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.3030424, + "posY": 1.748418, + "posZ": 30.3551445, + "rotX": 359.936462, + "rotY": 269.996277, + "rotZ": 0.0131700477, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Stray Cat", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368824, + "SidewaysCard": false, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6f4ab8" + }, + { + "Name": "Card", + "Transform": { + "posX": -11.507946, + "posY": 1.75507188, + "posZ": 30.6507645, + "rotX": 359.936768, + "rotY": 270.003479, + "rotZ": 0.0126198474, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lucky!", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368810, + "SidewaysCard": false, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "17e14e" + } + ], + "GUID": "8b1f19" + }, + { + "Name": "Card", + "Transform": { + "posX": 36.4499664, + "posY": 3.473211, + "posZ": -13.8278351, + "rotX": 359.920135, + "rotY": 270.0102, + "rotZ": 0.0168484319, + "scaleX": 0.452574432, + "scaleY": 1.0, + "scaleZ": 0.452574432 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 281001, + "SidewaysCard": false, + "CustomDeck": { + "2810": { + "FaceURL": "https://i.imgur.com/lGTlFGx.jpg", + "BackURL": "https://i.imgur.com/tHE0Iz1.jpg", + "NumWidth": 2, + "NumHeight": 2, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "077ac6" + }, + { + "Name": "Card", + "Transform": { + "posX": 27.0678978, + "posY": 3.55900526, + "posZ": -22.6408882, + "rotX": 1.36415613, + "rotY": 179.958588, + "rotZ": 357.447632, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Penny White", + "Description": "Josef's Housekeeper", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 232006, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "23b99c" + } + ], + "GUID": "da417c" + } + ], + "GUID": "fa2600" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.1199, + "posY": 1.67707765, + "posZ": -0.0300005451, + "rotX": 359.9201, + "rotY": 269.999756, + "rotZ": 0.0168766826, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Office", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274520, + "SidewaysCard": false, + "CustomDeck": { + "2745": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "060886" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765, + "posY": 1.68845832, + "posZ": 7.56999874, + "rotX": 359.9201, + "rotY": 269.999756, + "rotZ": 0.0168770235, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Trophy Room", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275916, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f5616e" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765, + "posY": 1.68622029, + "posZ": -0.0300003029, + "rotX": 359.9201, + "rotY": 270.0, + "rotZ": 0.0168763548, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Victorian Halls", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275115, + "SidewaysCard": false, + "CustomDeck": { + "2751": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "94ef8e" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6764, + "posY": 1.690702, + "posZ": 15.1900005, + "rotX": 359.9201, + "rotY": 269.999725, + "rotZ": 0.0168762486, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Billiards Room", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274717, + "SidewaysCard": false, + "CustomDeck": { + "2747": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "349eb6" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765, + "posY": 1.68396187, + "posZ": -7.7, + "rotX": 359.9201, + "rotY": 269.999573, + "rotZ": 0.0168769266, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Master Bedroom", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274618, + "SidewaysCard": false, + "CustomDeck": { + "2746": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "327f3b" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -23.6765, + "posY": 1.61112618, + "posZ": -11.5100012, + "rotX": 0.0168721452, + "rotY": 179.999756, + "rotZ": 0.0799345151, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9dd605", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6767, + "posY": 1.68173015, + "posZ": -15.2800007, + "rotX": 359.9201, + "rotY": 269.999481, + "rotZ": 0.0168770626, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Balcony", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274819, + "SidewaysCard": false, + "CustomDeck": { + "2748": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3b69ae" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -23.6765, + "posY": 1.6133877, + "posZ": -3.83000016, + "rotX": 0.01687219, + "rotY": 179.999634, + "rotZ": 0.07993924, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "62c1c6", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -23.6765, + "posY": 1.61789, + "posZ": 11.460001, + "rotX": 0.0168718267, + "rotY": 180.000046, + "rotZ": 0.07993619, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e4fd93", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -23.6765, + "posY": 1.61565208, + "posZ": 3.85999966, + "rotX": 0.0168725941, + "rotY": 179.999481, + "rotZ": 0.07994033, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a6d5fb", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -20.4586, + "posY": 1.61001825, + "posZ": -0.03490027, + "rotX": 0.07989431, + "rotY": 89.99967, + "rotZ": 359.9831, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6913e9", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -27.2548, + "posY": 1.61944926, + "posZ": -0.190000266, + "rotX": 359.9201, + "rotY": 269.994446, + "rotZ": 0.016907258, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7234af", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2242, + "posY": 1.69535065, + "posZ": -0.03000034, + "rotX": 359.9201, + "rotY": 269.999939, + "rotZ": 0.0168762822, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Entry Hall", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 274914, + "SidewaysCard": false, + "CustomDeck": { + "2749": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7cb46b" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2243, + "posY": 1.69649625, + "posZ": 3.86, + "rotX": 359.9201, + "rotY": 269.999664, + "rotZ": 0.01687665, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Spectral Watcher", + "Description": "You Are Its Prey", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275201, + "SidewaysCard": false, + "CustomDeck": { + "2752": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a1eb9b" + } + ], + "GUID": "2f008a" + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 12.2502012, + "posY": 1.47267222, + "posZ": 27.9864044, + "rotX": 359.920135, + "rotY": 270.000366, + "rotZ": 0.0168741979, + "scaleX": 2.21, + "scaleY": 0.46, + "scaleZ": 2.42 + }, + "Nickname": "1: The Witching Hour", + "Description": "The Circle Undone", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/829135118401811143/D4D1F789798EE5B55B10782ACC5D595C4281F074/", + "NormalURL": "", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", + "LuaScriptState": "{\"ml\":{\"0da03e\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"35dcd2\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"8f6174\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6806,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"ad3298\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9998,\"z\":0.0803}},\"c7d2b7\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0168,\"z\":0.0803}},\"e93c2f\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7504,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9992,\"z\":180.0168}},\"f697b0\":{\"lock\":false,\"pos\":{\"x\":-3.6965,\"y\":1.5822,\"z\":-15.0888},\"rot\":{\"x\":359.9197,\"y\":270.0056,\"z\":0.0168}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 1.696601, + "posY": 1.55831683, + "posZ": 14.2787027, + "rotX": 359.955139, + "rotY": 224.998, + "rotZ": 0.06867232, + "scaleX": 2.0, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "Nickname": "Set-aside", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.02148666, + "g": 0.00100758043, + "b": 0.02148666 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", + "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 1, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -6.183633, + "posY": 2.8164773, + "posZ": -11.6198263, + "rotX": 359.920044, + "rotY": 270.005859, + "rotZ": 0.0164405052, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Tower • XVI", + "Description": "Circumstances Beyond Your Control", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 290320, + "SidewaysCard": false, + "CustomDeck": { + "2903": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d5c93d" + }, + { + "Name": "Card", + "Transform": { + "posX": -6.42330551, + "posY": 2.81578183, + "posZ": -15.1154623, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.01687873, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ace of Rods (1)", + "Description": "The Fateful Step", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 292603, + "SidewaysCard": false, + "CustomDeck": { + "2926": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4fb46f" + }, + { + "Name": "Card", + "Transform": { + "posX": 23.7801342, + "posY": 3.56756115, + "posZ": -12.4946537, + "rotX": 359.919678, + "rotY": 269.998474, + "rotZ": 0.0173492152, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Anette Mason", + "Description": "The High Priestess", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231800, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "845563" + }, + { + "Name": "Deck", + "Transform": { + "posX": 23.5791035, + "posY": 3.47389364, + "posZ": -15.9258289, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.01686523, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Arkham Woods", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 3539, + 3540, + 3538, + 3537, + 3536, + 3535 + ], + "CustomDeck": { + "35": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 5.94822025, + "posY": 1.03171337, + "posZ": -11.5008354, + "rotX": 1.42216059E-05, + "rotY": 179.976181, + "rotZ": -1.28611E-06, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Arkham Woods", + "Description": "Woods", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 3539, + "SidewaysCard": false, + "CustomDeck": { + "35": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9fff9f" + }, + { + "Name": "Card", + "Transform": { + "posX": 5.32451725, + "posY": 1.03171325, + "posZ": -11.8748674, + "rotX": 1.36801236E-05, + "rotY": 180.0, + "rotZ": -1.61335913E-06, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Arkham Woods", + "Description": "Woods", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 3540, + "SidewaysCard": false, + "CustomDeck": { + "35": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "deaa6c" + }, + { + "Name": "Card", + "Transform": { + "posX": 5.37175941, + "posY": 1.13171315, + "posZ": -11.9442635, + "rotX": 1.33452786E-05, + "rotY": 180.000824, + "rotZ": -3.98964517E-07, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Arkham Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 3538, + "SidewaysCard": false, + "CustomDeck": { + "35": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3a7f2c" + }, + { + "Name": "Card", + "Transform": { + "posX": 5.523985, + "posY": 1.1817131, + "posZ": -10.9815063, + "rotX": 1.33532585E-05, + "rotY": 179.92868, + "rotZ": -3.776301E-07, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Arkham Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 3537, + "SidewaysCard": false, + "CustomDeck": { + "35": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "701563" + }, + { + "Name": "Card", + "Transform": { + "posX": 4.891869, + "posY": 1.327963, + "posZ": -11.92246, + "rotX": 5.279162E-05, + "rotY": 179.982819, + "rotZ": 4.28566236E-05, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Arkham Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 3536, + "SidewaysCard": false, + "CustomDeck": { + "35": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "add566" + }, + { + "Name": "Card", + "Transform": { + "posX": 4.830782, + "posY": 1.6152488, + "posZ": -12.2257776, + "rotX": 353.9548, + "rotY": 180.018768, + "rotZ": 358.6411, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Arkham Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 3535, + "SidewaysCard": false, + "CustomDeck": { + "35": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3baf39" + } + ], + "GUID": "9d2e72" + }, + { + "Name": "Deck", + "Transform": { + "posX": 23.8367386, + "posY": 3.469521, + "posZ": -19.9506054, + "rotX": 359.920135, + "rotY": 269.996735, + "rotZ": 0.0168742351, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agents of Shub-Niggurath", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 3634, + 3634, + 3634, + 3633 + ], + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 90.65886, + "posY": 1.40921557, + "posZ": -0.233399391, + "rotX": 359.987427, + "rotY": 270.0001, + "rotZ": 359.984528, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Goat Spawn", + "Description": "Humanoid. Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3634, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "19459f" + }, + { + "Name": "Card", + "Transform": { + "posX": 90.53866, + "posY": 1.55464137, + "posZ": -0.678629, + "rotX": 359.990082, + "rotY": 270.000366, + "rotZ": 359.988, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Goat Spawn", + "Description": "Humanoid. Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3634, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "dbcee1" + }, + { + "Name": "Card", + "Transform": { + "posX": 90.78235, + "posY": 1.57190418, + "posZ": -0.8887629, + "rotX": 359.9898, + "rotY": 269.999756, + "rotZ": 359.987976, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Goat Spawn", + "Description": "Humanoid. Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3634, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bda9db" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.028802, + "posY": 1.70160449, + "posZ": -19.1037846, + "rotX": 0.01503002, + "rotY": 180.011887, + "rotZ": 0.06358985, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Relentless Dark Young", + "Description": "Monster. Dark Young.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3633, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "da8001" + } + ], + "GUID": "3175c4" + }, + { + "Name": "Deck", + "Transform": { + "posX": 23.6495457, + "posY": 3.46883488, + "posZ": -23.1690922, + "rotX": 359.920135, + "rotY": 270.006531, + "rotZ": 0.0168636087, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agents of Azathoth", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231803, + 231804, + 231804, + 231804 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 25.1804886, + "posY": 1.50821829, + "posZ": -33.247345, + "rotX": 359.914459, + "rotY": 270.007751, + "rotZ": 0.0151159875, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Piper of Azatoth", + "Description": "Monster. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231803, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "092d86" + }, + { + "Name": "Card", + "Transform": { + "posX": 24.943243, + "posY": 1.64901268, + "posZ": -33.1631355, + "rotX": 359.923157, + "rotY": 270.000244, + "rotZ": 0.0113229118, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Daemonic Piping", + "Description": "Power. Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231804, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f84e0e" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.44798, + "posY": 1.66371691, + "posZ": -33.04016, + "rotX": 359.917969, + "rotY": 270.000061, + "rotZ": 0.0156315826, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Daemonic Piping", + "Description": "Power. Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231804, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f84e0e" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.4479656, + "posY": 1.6527828, + "posZ": -33.0401649, + "rotX": 359.918152, + "rotY": 270.000122, + "rotZ": 0.01566419, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Daemonic Piping", + "Description": "Power. Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231804, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f84e0e" + } + ], + "GUID": "65502d" + } + ], + "PhysicsMaterial": { + "StaticFriction": 0.6, + "DynamicFriction": 0.6, + "Bounciness": 0.0, + "FrictionCombine": 0, + "BounceCombine": 0 + }, + "Rigidbody": { + "Mass": 1.375, + "Drag": 5.0, + "AngularDrag": 5.0, + "UseGravity": true + }, + "GUID": "0da03e" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.956, + "posY": 1.65564811, + "posZ": -10.4412022, + "rotX": 359.919739, + "rotY": 269.9995, + "rotZ": 0.0168414, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "The Witching Hour", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231707, + "SidewaysCard": false, + "CustomDeck": { + "2317": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "35dcd2" + }, + { + "Name": "Deck", + "Transform": { + "posX": -17.12, + "posY": 1.68060648, + "posZ": -0.0300002769, + "rotX": 359.9201, + "rotY": 269.999268, + "rotZ": 0.0168778934, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Witch-Haunted Woods", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231901, + 231902, + 231904, + 231900, + 231903, + 231905, + 231906 + ], + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 3.25838232, + "posY": 1.54423487, + "posZ": -15.0968046, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.016869422, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Witch-Haunted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231901, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "eca18e" + }, + { + "Name": "Card", + "Transform": { + "posX": 3.3670063, + "posY": 1.54326081, + "posZ": -17.8906136, + "rotX": 359.920135, + "rotY": 270.000061, + "rotZ": 0.0168700721, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Witch-Haunted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231902, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "05d5ef" + }, + { + "Name": "Card", + "Transform": { + "posX": 3.26717877, + "posY": 1.54263616, + "posZ": -20.4850121, + "rotX": 359.920135, + "rotY": 269.999969, + "rotZ": 0.01686795, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Witch-Haunted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231904, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0fe9f1" + }, + { + "Name": "Card", + "Transform": { + "posX": -0.0956207737, + "posY": 1.54858446, + "posZ": -16.2046013, + "rotX": 359.920135, + "rotY": 270.0001, + "rotZ": 0.0168696959, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Witch-Haunted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231900, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d7fb9d" + }, + { + "Name": "Card", + "Transform": { + "posX": 0.0298207663, + "posY": 1.54765153, + "posZ": -18.7793159, + "rotX": 359.920135, + "rotY": 270.000061, + "rotZ": 0.016869735, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Witch-Haunted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231903, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d3f8c3" + }, + { + "Name": "Card", + "Transform": { + "posX": 0.0108068641, + "posY": 1.54669714, + "posZ": -22.1110363, + "rotX": 359.920135, + "rotY": 269.999969, + "rotZ": 0.0168679785, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Witch-Haunted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231905, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1539ea" + }, + { + "Name": "Card", + "Transform": { + "posX": 3.79385471, + "posY": 1.5407505, + "posZ": -24.39393, + "rotX": 359.9201, + "rotY": 269.999969, + "rotZ": 0.0168750882, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Witch-Haunted Woods", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231906, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fc78d7" + } + ], + "GUID": "8f6174" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.7247, + "posY": 1.66397727, + "posZ": 0.3733003, + "rotX": 0.0168352686, + "rotY": 179.999817, + "rotZ": 0.08025779, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agenda Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 232009, + 232008 + ], + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -7.297843, + "posY": 1.56667411, + "posZ": 11.3410053, + "rotX": 0.0139629086, + "rotY": 179.999878, + "rotZ": 0.07908345, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Night Howls", + "Description": "Agenda 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232009, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9d5674" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.0022, + "posY": 1.70677054, + "posZ": 11.2190895, + "rotX": 0.00582233956, + "rotY": 179.99968, + "rotZ": 0.09951117, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "TEMPERANCE · XIV", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232008, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "96a76c" + } + ], + "GUID": "ad3298" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.6885, + "posY": 1.65349448, + "posZ": -5.0485, + "rotX": 0.0168115646, + "rotY": 180.016739, + "rotZ": 0.0802623853, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 232013, + 232012, + 232011, + 232010 + ], + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -13.39085, + "posY": 1.573935, + "posZ": 7.543645, + "rotX": 0.008133726, + "rotY": 180.001221, + "rotZ": 0.07553037, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "A Circle Unbroken", + "Description": "Act 4", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232013, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0a0759" + }, + { + "Name": "Card", + "Transform": { + "posX": -10.4994593, + "posY": 1.56992149, + "posZ": 7.226833, + "rotX": 0.0122376485, + "rotY": 180.002289, + "rotZ": 0.07501469, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Paths into Twilight", + "Description": "Act 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232012, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c31146" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.62799454, + "posY": 1.56589842, + "posZ": 7.2519803, + "rotX": 0.0122893164, + "rotY": 179.999939, + "rotZ": 0.0784956142, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Witch Hauntings", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232011, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "68cfea" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.58153057, + "posY": 1.7061789, + "posZ": 7.33736944, + "rotX": 0.0176965259, + "rotY": 180.000427, + "rotZ": 0.08492906, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lost in the Woods", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232010, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b7c7c" + } + ], + "GUID": "c7d2b7" + }, + { + "Name": "Deck", + "Transform": { + "posX": -3.9276, + "posY": 1.750392, + "posZ": 5.75710154, + "rotX": 359.919739, + "rotY": 269.999176, + "rotZ": 180.016815, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231814, + 231814, + 231814, + 231813, + 12119, + 12120, + 12120, + 12119, + 12120, + 231805, + 231808, + 231806, + 231805, + 12118, + 231805, + 12118, + 231813, + 12117, + 231807, + 231809, + 231807, + 12117, + 231808, + 231809, + 231807, + 12117 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -31.1529961, + "posY": 1.60048223, + "posZ": 13.00202, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.01686549, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "81dc7a" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.1531715, + "posY": 1.59978771, + "posZ": 10.6427326, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.0168689042, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0a13d0" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.1533489, + "posY": 1.5990932, + "posZ": 8.283448, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.0168649089, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9cb625" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.1535263, + "posY": 1.5983988, + "posZ": 5.924162, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168659426, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Evil Past", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231813, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ab69b8" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.153698, + "posY": 1.59770441, + "posZ": 3.56487679, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168739818, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dissonant Voices", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12119, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f1a34d" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.1538734, + "posY": 1.5970099, + "posZ": 1.20559013, + "rotX": 359.920135, + "rotY": 269.9999, + "rotZ": 0.0168712325, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "61e841" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.15405, + "posY": 1.59631538, + "posZ": -1.153695, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.016872257, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1921c5" + }, + { + "Name": "Card", + "Transform": { + "posX": -34.4744949, + "posY": 1.60511291, + "posZ": 13.0022678, + "rotX": 359.920135, + "rotY": 269.999847, + "rotZ": 0.016863469, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dissonant Voices", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12119, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "260768" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.1542244, + "posY": 1.595621, + "posZ": -3.51298, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.0168725476, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e0f4c0" + }, + { + "Name": "Card", + "Transform": { + "posX": -34.4750137, + "posY": 1.60302925, + "posZ": 5.92440939, + "rotX": 359.920135, + "rotY": 269.999878, + "rotZ": 0.01687006, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Coven Initiate", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231805, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c35966" + }, + { + "Name": "Card", + "Transform": { + "posX": -34.47484, + "posY": 1.60372376, + "posZ": 8.283695, + "rotX": 359.920135, + "rotY": 269.999878, + "rotZ": 0.01686561, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wracked", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231808, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4949ea" + }, + { + "Name": "Card", + "Transform": { + "posX": -34.6088028, + "posY": 1.6046325, + "posZ": 10.7354145, + "rotX": 359.920135, + "rotY": 270.0028, + "rotZ": 0.0168665145, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Priestess of the Coven", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231806, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "326f11" + }, + { + "Name": "Card", + "Transform": { + "posX": -34.4757233, + "posY": 1.60025144, + "posZ": -3.51273465, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.0168698486, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Coven Initiate", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231805, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6f2c2e" + }, + { + "Name": "Card", + "Transform": { + "posX": -34.4755363, + "posY": 1.600946, + "posZ": -1.15344846, + "rotX": 359.920135, + "rotY": 270.000031, + "rotZ": 0.01686838, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Frozen in Fear", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12118, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c40f57" + }, + { + "Name": "Card", + "Transform": { + "posX": -34.47536, + "posY": 1.60164046, + "posZ": 1.2058363, + "rotX": 359.9201, + "rotY": 269.999847, + "rotZ": 0.0168651938, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Coven Initiate", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231805, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "367d03" + }, + { + "Name": "Card", + "Transform": { + "posX": -34.47519, + "posY": 1.60233474, + "posZ": 3.565123, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.01687042, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Frozen in Fear", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12118, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "27c05d" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.1544037, + "posY": 1.59492648, + "posZ": -5.87226534, + "rotX": 359.920135, + "rotY": 270.000031, + "rotZ": 0.0168683082, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Evil Past", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231813, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "976fd8" + }, + { + "Name": "Card", + "Transform": { + "posX": -34.4759026, + "posY": 1.59955692, + "posZ": -5.872021, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168718528, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Rotting Remains", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12117, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "aa3d47" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.15458, + "posY": 1.59423184, + "posZ": -8.231554, + "rotX": 359.920135, + "rotY": 270.000061, + "rotZ": 0.0168670043, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Diabolic Voices", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231807, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "407e66" + }, + { + "Name": "Card", + "Transform": { + "posX": -34.4760742, + "posY": 1.59886241, + "posZ": -8.231309, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168680027, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Bedeviled", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231809, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f7c676" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.1547565, + "posY": 1.59353733, + "posZ": -10.5908394, + "rotX": 359.920135, + "rotY": 269.9999, + "rotZ": 0.016878726, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Diabolic Voices", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231807, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "64341a" + }, + { + "Name": "Card", + "Transform": { + "posX": -34.47625, + "posY": 1.5981679, + "posZ": -10.5905914, + "rotX": 359.920135, + "rotY": 269.999878, + "rotZ": 0.0168722738, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Rotting Remains", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12117, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "da8001" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.15493, + "posY": 1.59284282, + "posZ": -12.9501247, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.01686631, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wracked", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231808, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c8092b" + }, + { + "Name": "Card", + "Transform": { + "posX": -34.47642, + "posY": 1.59747338, + "posZ": -12.9498787, + "rotX": 359.9201, + "rotY": 269.999939, + "rotZ": 0.0168697, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Bedeviled", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231809, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a558b5" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.1551037, + "posY": 1.59214854, + "posZ": -15.309413, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.016871132, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Diabolic Voices", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231807, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0fa642" + }, + { + "Name": "Card", + "Transform": { + "posX": -34.476593, + "posY": 1.596779, + "posZ": -15.3091669, + "rotX": 359.920135, + "rotY": 269.999817, + "rotZ": 0.0168707632, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Rotting Remains", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12117, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "18e09c" + } + ], + "GUID": "e93c2f" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.6965003, + "posY": 1.58220541, + "posZ": -15.0888014, + "rotX": 359.919739, + "rotY": 270.0055, + "rotZ": 0.0168300048, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "The Witching Hour", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'The Witching Hour'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f697b0" + } + ], + "GUID": "67a775", + "AttachedDecals": [ + { + "Transform": { + "posX": -0.0021877822, + "posY": -0.08963572, + "posZ": -0.00288731651, + "rotX": 270.0, + "rotY": 359.869568, + "rotZ": 0.0, + "scaleX": 2.00000215, + "scaleY": 2.00000238, + "scaleZ": 2.00000262 + }, + "CustomDecal": { + "Name": "dunwich_back", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", + "Size": 7.4 + } + } + ] + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 12.2499027, + "posY": 1.47031689, + "posZ": 19.9864044, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.0168740638, + "scaleX": 2.21, + "scaleY": 0.46, + "scaleZ": 2.42 + }, + "Nickname": "2: At Door's Doorstep", + "Description": "The Circle Undone", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/829135118401812554/E797F70643F70188791F2CA1434295008BBE9D4B/", + "NormalURL": "", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", + "LuaScriptState": "{\"ml\":{\"05cb54\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7451,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":180.0168}},\"0699e7\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"094470\":{\"lock\":false,\"pos\":{\"x\":-20.6487,\"y\":1.6103,\"z\":-0.1206},\"rot\":{\"x\":359.9201,\"y\":269.9937,\"z\":0.0169}},\"0f2a24\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0803}},\"1b5483\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6817,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"33990b\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6907,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"5fa970\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9906,\"z\":0.0803}},\"67acd6\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6179,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":179.9917,\"z\":0.0799}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-27.3935,\"y\":1.6196,\"z\":-0.2795},\"rot\":{\"x\":359.9201,\"y\":269.9935,\"z\":0.0169}},\"a1bd9a\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"a6af88\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9915,\"z\":0.0799}},\"b21125\":{\"lock\":false,\"pos\":{\"x\":-3.7749,\"y\":1.5825,\"z\":-14.6072},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"c24b98\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"c43910\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9916,\"z\":0.0799}},\"d7fb9d\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"de7cf4\":{\"lock\":false,\"pos\":{\"x\":1.6968,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"e0e8c6\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9915,\"z\":0.0799}},\"e0ffe2\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"e9160a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 1.69680083, + "posY": 1.55831671, + "posZ": 14.278801, + "rotX": 359.955139, + "rotY": 224.997986, + "rotZ": 0.06867422, + "scaleX": 2.0, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "Nickname": "Set-aside", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.02148666, + "g": 0.00100758043, + "b": 0.02148666 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", + "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 1, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Deck", + "Transform": { + "posX": 20.8909283, + "posY": 3.57110381, + "posZ": -7.308581, + "rotX": 359.919434, + "rotY": 269.998657, + "rotZ": 0.017221611, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Realm of Death", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231820, + 231820, + 231821, + 231821 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 15.4269018, + "posY": 1.52812648, + "posZ": -11.9266014, + "rotX": 359.915649, + "rotY": 269.999329, + "rotZ": 0.0150207849, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Realm of Torment", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231820, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0f6fce" + }, + { + "Name": "Card", + "Transform": { + "posX": 15.1352577, + "posY": 1.67292893, + "posZ": -11.5751591, + "rotX": 359.9098, + "rotY": 269.998718, + "rotZ": 359.975525, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Realm of Torment", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231820, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c1d60f" + }, + { + "Name": "Card", + "Transform": { + "posX": 15.2996044, + "posY": 1.686471, + "posZ": -12.0028191, + "rotX": 359.9189, + "rotY": 269.999451, + "rotZ": 0.0174130946, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shapes in the Mist", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231821, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "37ebea" + }, + { + "Name": "Card", + "Transform": { + "posX": 15.2108431, + "posY": 1.67701876, + "posZ": -12.2717237, + "rotX": 359.917847, + "rotY": 269.999237, + "rotZ": 0.0208463036, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shapes in the Mist", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231821, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "37ebea" + } + ], + "GUID": "a49224" + }, + { + "Name": "Card", + "Transform": { + "posX": 20.4776115, + "posY": 3.476435, + "posZ": -18.2683067, + "rotX": 359.920135, + "rotY": 270.000854, + "rotZ": 0.0168664455, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Josef Meiger", + "Description": "Lodge Host", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231921, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ffedcd" + }, + { + "Name": "Deck", + "Transform": { + "posX": 20.4051666, + "posY": 3.4812274, + "posZ": -14.3216152, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.01687278, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Spectral Locations", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231917, + 231919, + 231918, + 231916, + 231920, + 231915, + 231914 + ], + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 30.17334, + "posY": 1.66093552, + "posZ": -10.3231525, + "rotX": 359.9202, + "rotY": 269.9976, + "rotZ": 180.017319, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Billiards Room", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231917, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "349eb6" + }, + { + "Name": "Card", + "Transform": { + "posX": -6.635082, + "posY": 1.55915916, + "posZ": -20.84021, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 180.016876, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Balcony", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231919, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3b69ae" + }, + { + "Name": "Card", + "Transform": { + "posX": -6.842271, + "posY": 1.56042325, + "posZ": -17.52801, + "rotX": 359.920135, + "rotY": 269.999969, + "rotZ": 180.016876, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Master Bedroom", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231918, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "327f3b" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.0209713, + "posY": 1.56386793, + "posZ": -6.675879, + "rotX": 359.920135, + "rotY": 270.000061, + "rotZ": 180.016876, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Trophy Room", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231916, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f5616e" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.17894936, + "posY": 1.56330776, + "posZ": -9.326272, + "rotX": 359.920135, + "rotY": 270.000244, + "rotZ": 180.016876, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Office", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231920, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "060886" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.126053, + "posY": 1.56161821, + "posZ": -14.8133183, + "rotX": 359.920135, + "rotY": 270.000061, + "rotZ": 180.016876, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Victorian Halls", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231915, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "94ef8e" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.17377758, + "posY": 1.56240535, + "posZ": -12.3664637, + "rotX": 359.920135, + "rotY": 270.000061, + "rotZ": 180.016876, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Entry Hall", + "Description": "Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231914, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7cb46b" + } + ], + "GUID": "4bb0d9" + }, + { + "Name": "Deck", + "Transform": { + "posX": 20.9123344, + "posY": 3.47740149, + "posZ": -11.3691158, + "rotX": 359.9201, + "rotY": 270.020477, + "rotZ": 0.0168361887, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Watcher", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231802, + 231802, + 231801 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 15.8376656, + "posY": 1.52715087, + "posZ": -13.4530945, + "rotX": 359.9181, + "rotY": 270.020538, + "rotZ": 0.0155973658, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Watcher's Grasp", + "Description": "Power. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231802, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "33e855" + }, + { + "Name": "Card", + "Transform": { + "posX": 15.84392, + "posY": 1.576776, + "posZ": -12.7454138, + "rotX": 0.0287003722, + "rotY": 269.984375, + "rotZ": 359.99295, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Watcher's Grasp", + "Description": "Power. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231802, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e43fdd" + }, + { + "Name": "Card", + "Transform": { + "posX": 15.8923817, + "posY": 1.72291648, + "posZ": -12.6000233, + "rotX": 0.022801578, + "rotY": 270.024963, + "rotZ": -0.00408142665, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Spectral Watcher", + "Description": "You Are Its Prey", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231801, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c97834" + } + ], + "GUID": "f048cc" + } + ], + "PhysicsMaterial": { + "StaticFriction": 0.6, + "DynamicFriction": 0.6, + "Bounciness": 0.0, + "FrictionCombine": 0, + "BounceCombine": 0 + }, + "Rigidbody": { + "Mass": 1.375, + "Drag": 5.0, + "AngularDrag": 5.0, + "UseGravity": true + }, + "GUID": "de7cf4" + }, + { + "Name": "Deck", + "Transform": { + "posX": -3.92760015, + "posY": 1.74506247, + "posZ": 5.757101, + "rotX": 359.919739, + "rotY": 270.000458, + "rotZ": 180.016815, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 12122, + 12121, + 12121, + 12122, + 231815, + 231823, + 231823, + 231823, + 231822, + 231822, + 231822, + 231819, + 231819, + 231818, + 231812, + 231812, + 231818, + 231811, + 231810, + 231810, + 231810, + 231817, + 231817, + 231816, + 231816 + ], + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -32.25675, + "posY": 1.600186, + "posZ": 6.770343, + "rotX": 359.920135, + "rotY": 269.987549, + "rotZ": 0.0168844368, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Obscuring Fog", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12122, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "356046" + }, + { + "Name": "Card", + "Transform": { + "posX": -32.25649, + "posY": 1.60227036, + "posZ": 13.85011, + "rotX": 359.920135, + "rotY": 269.987518, + "rotZ": 0.0168882515, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Crypt Chill", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12121, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fb311c" + }, + { + "Name": "Card", + "Transform": { + "posX": -32.2565727, + "posY": 1.60157561, + "posZ": 11.4901876, + "rotX": 359.920135, + "rotY": 269.987549, + "rotZ": 0.0168857444, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Crypt Chill", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12121, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b78c3b" + }, + { + "Name": "Card", + "Transform": { + "posX": -32.2566643, + "posY": 1.60088074, + "posZ": 9.130263, + "rotX": 359.920135, + "rotY": 269.9875, + "rotZ": 0.016892409, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Obscuring Fog", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12122, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "03a265" + }, + { + "Name": "Card", + "Transform": { + "posX": -28.3051548, + "posY": 1.589776, + "posZ": -9.873041, + "rotX": 359.920135, + "rotY": 269.998749, + "rotZ": 0.0168736149, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nether Mist.", + "Description": "Monster. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231815, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fe13c7" + }, + { + "Name": "Card", + "Transform": { + "posX": -28.270216, + "posY": 1.66379952, + "posZ": -7.165576, + "rotX": 359.921173, + "rotY": 270.0037, + "rotZ": 3.8773396, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4e6119" + }, + { + "Name": "Card", + "Transform": { + "posX": -27.9746227, + "posY": 1.59078109, + "posZ": -4.986663, + "rotX": 359.920837, + "rotY": 270.006042, + "rotZ": 0.011460376, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fbe55a" + }, + { + "Name": "Card", + "Transform": { + "posX": -27.6898975, + "posY": 1.59101355, + "posZ": -2.75788236, + "rotX": 359.920135, + "rotY": 269.999847, + "rotZ": 0.0168683473, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "290ae0" + }, + { + "Name": "Card", + "Transform": { + "posX": -28.4091167, + "posY": 1.59278738, + "posZ": -0.139734685, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168688241, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b781fc" + }, + { + "Name": "Card", + "Transform": { + "posX": -28.1596527, + "posY": 1.66835988, + "posZ": 2.380367, + "rotX": 359.920929, + "rotY": 270.0032, + "rotZ": 3.97807717, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1f6f03" + }, + { + "Name": "Card", + "Transform": { + "posX": -28.75726, + "posY": 1.59466171, + "posZ": 4.50434065, + "rotX": 359.920837, + "rotY": 270.007538, + "rotZ": 0.0112650972, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f26342" + }, + { + "Name": "Card", + "Transform": { + "posX": -38.73299, + "posY": 1.603561, + "posZ": -12.4288139, + "rotX": 359.920135, + "rotY": 270.000061, + "rotZ": 0.0168662835, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Trapped Spirits", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231819, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "407a63" + }, + { + "Name": "Card", + "Transform": { + "posX": -39.0160866, + "posY": 1.60465956, + "posZ": -10.0389481, + "rotX": 359.920135, + "rotY": 269.999847, + "rotZ": 0.0168707352, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Trapped Spirits", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231819, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "829919" + }, + { + "Name": "Card", + "Transform": { + "posX": -39.2292671, + "posY": 1.60635221, + "posZ": -5.29993248, + "rotX": 359.920135, + "rotY": 269.999725, + "rotZ": 0.0168732014, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wraith", + "Description": "Monster. Geist. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231818, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "86598c" + }, + { + "Name": "Card", + "Transform": { + "posX": -38.76867, + "posY": 1.60712111, + "posZ": -0.508546, + "rotX": 359.920135, + "rotY": 270.000854, + "rotZ": 0.0168688912, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysteries of the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231812, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0eb939" + }, + { + "Name": "Card", + "Transform": { + "posX": -38.767128, + "posY": 1.6064266, + "posZ": -2.85914, + "rotX": 359.920135, + "rotY": 270.000732, + "rotZ": 0.0168704186, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysteries of the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231812, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7870f6" + }, + { + "Name": "Card", + "Transform": { + "posX": -39.2138863, + "posY": 1.605613, + "posZ": -7.737663, + "rotX": 359.920135, + "rotY": 269.9997, + "rotZ": 0.0168678444, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wraith", + "Description": "Monster. Geist. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231818, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e299c5" + }, + { + "Name": "Card", + "Transform": { + "posX": -39.216568, + "posY": 1.60848212, + "posZ": 1.9939779, + "rotX": 359.920135, + "rotY": 269.999664, + "rotZ": 0.0168634076, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Keeper of Secrets", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231811, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3761ce" + }, + { + "Name": "Card", + "Transform": { + "posX": -39.0885468, + "posY": 1.700493, + "posZ": 4.62587452, + "rotX": 359.922, + "rotY": 270.006378, + "rotZ": 4.839585, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Neophyte", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231810, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "525275" + }, + { + "Name": "Card", + "Transform": { + "posX": -38.836174, + "posY": 1.609271, + "posZ": 6.373196, + "rotX": 359.920624, + "rotY": 270.007568, + "rotZ": 0.009903546, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Neophyte", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231810, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8dac94" + }, + { + "Name": "Card", + "Transform": { + "posX": -39.04186, + "posY": 1.61026263, + "posZ": 8.867271, + "rotX": 359.920135, + "rotY": 269.999268, + "rotZ": 0.016868528, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Neophyte", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231810, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "408a82" + }, + { + "Name": "Card", + "Transform": { + "posX": -38.81726, + "posY": 1.68460715, + "posZ": 11.4196177, + "rotX": 359.920929, + "rotY": 270.003326, + "rotZ": 3.91074014, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers in the Dark", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231817, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "35270e" + }, + { + "Name": "Card", + "Transform": { + "posX": -39.2929955, + "posY": 1.61202192, + "posZ": 13.5801, + "rotX": 359.9208, + "rotY": 270.0072, + "rotZ": 0.0113463188, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers in the Dark", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231817, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4e1ed6" + }, + { + "Name": "Card", + "Transform": { + "posX": -39.2999344, + "posY": 1.61275434, + "posZ": 16.1082268, + "rotX": 359.9201, + "rotY": 270.00708, + "rotZ": 0.0168633386, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shadow Hound", + "Description": "Monster. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231816, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6f6201" + }, + { + "Name": "Card", + "Transform": { + "posX": -39.5041466, + "posY": 1.6138804, + "posZ": 18.9645443, + "rotX": 359.920135, + "rotY": 269.9995, + "rotZ": 0.01687203, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shadow Hound", + "Description": "Monster. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231816, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "881be9" + } + ], + "GUID": "05cb54" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.7247, + "posY": 1.66397738, + "posZ": 0.3733003, + "rotX": 0.0168355536, + "rotY": 179.999619, + "rotZ": 0.080257915, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agenda Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 232016, + 232015 + ], + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -8.034527, + "posY": 1.56463933, + "posZ": 0.973494232, + "rotX": 0.01332518, + "rotY": 179.999924, + "rotZ": 0.07871701, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Over the Threshold", + "Description": "Agenda 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232016, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6ef9c4" + }, + { + "Name": "Card", + "Transform": { + "posX": -7.961774, + "posY": 1.70493853, + "posZ": 1.22841024, + "rotX": 0.014674738, + "rotY": 180.000473, + "rotZ": 0.08592357, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "JUSTICE · XI", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232015, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6480fa" + } + ], + "GUID": "0f2a24" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.6885, + "posY": 1.65499723, + "posZ": -5.0485, + "rotX": 0.01684831, + "rotY": 179.99057, + "rotZ": 0.08025503, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 232019, + 232018, + 232017 + ], + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -11.4857731, + "posY": 1.56819141, + "posZ": -3.38877225, + "rotX": 0.0138850389, + "rotY": 180.002533, + "rotZ": 0.076025866, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Escape the Cage", + "Description": "Act 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232019, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "46cad7" + }, + { + "Name": "Card", + "Transform": { + "posX": -8.56042, + "posY": 1.56400037, + "posZ": -3.68023252, + "rotX": 0.011601598, + "rotY": 179.996872, + "rotZ": 0.07883525, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Spectral Realm", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232018, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d862a5" + }, + { + "Name": "Card", + "Transform": { + "posX": -8.573303, + "posY": 1.70431888, + "posZ": -3.6430676, + "rotX": 0.0150601817, + "rotY": 179.9911, + "rotZ": 0.06978336, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hidden Agendas", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 232017, + "SidewaysCard": true, + "CustomDeck": { + "2320": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ba8956" + } + ], + "GUID": "5fa970" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.955902, + "posY": 1.655648, + "posZ": -10.4412241, + "rotX": 359.919739, + "rotY": 270.000122, + "rotZ": 0.01684478, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "At Death's Doorstep", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231714, + "SidewaysCard": false, + "CustomDeck": { + "2317": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c24b98" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.7749, + "posY": 1.58245683, + "posZ": -14.6072035, + "rotX": 359.919739, + "rotY": 270.004944, + "rotZ": 0.0168308653, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "At Death's Doorstep", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'The Witching Hour'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b21125" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.12, + "posY": 1.67707777, + "posZ": -0.0300003178, + "rotX": 359.9201, + "rotY": 269.999878, + "rotZ": 0.01687627, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Office", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231913, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a1bd9a" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -20.6487, + "posY": 1.6102581, + "posZ": -0.120600276, + "rotX": 359.9201, + "rotY": 269.993652, + "rotZ": 0.0169091765, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "094470", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765, + "posY": 1.68622029, + "posZ": -0.0300004017, + "rotX": 359.9201, + "rotY": 269.999817, + "rotZ": 0.0168765187, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Victorian Halls", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231908, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0699e7" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2242, + "posY": 1.69535053, + "posZ": -0.0300004743, + "rotX": 359.9201, + "rotY": 269.999817, + "rotZ": 0.0168766081, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Entry Hall", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231907, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d7fb9d" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765, + "posY": 1.6884582, + "posZ": 7.56999969, + "rotX": 359.9201, + "rotY": 269.999878, + "rotZ": 0.0168764479, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Trophy Room", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231909, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e9160a" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765, + "posY": 1.68396187, + "posZ": -7.7, + "rotX": 359.9201, + "rotY": 269.9998, + "rotZ": 0.0168766622, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Master Bedroom", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231911, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e0ffe2" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -23.6765, + "posY": 1.6133877, + "posZ": -3.83, + "rotX": 0.0168834273, + "rotY": 179.991623, + "rotZ": 0.0799373, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c43910", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -23.6765, + "posY": 1.61789, + "posZ": 11.460001, + "rotX": 0.0168833062, + "rotY": 179.9917, + "rotZ": 0.07993786, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "67acd6", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -23.6764984, + "posY": 1.61565208, + "posZ": 3.86, + "rotX": 0.0168836135, + "rotY": 179.991547, + "rotZ": 0.0799476653, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a6af88", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -27.3935, + "posY": 1.61961639, + "posZ": -0.2795003, + "rotX": 359.9201, + "rotY": 269.993469, + "rotZ": 0.0169089288, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7234af", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -23.6765, + "posY": 1.61112618, + "posZ": -11.5100021, + "rotX": 0.01688355, + "rotY": 179.991531, + "rotZ": 0.07993261, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e0e8c6", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6766, + "posY": 1.68172991, + "posZ": -15.2800007, + "rotX": 359.9201, + "rotY": 269.999634, + "rotZ": 0.0168772228, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Balcony", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231912, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1b5483" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6766, + "posY": 1.6907022, + "posZ": 15.1900005, + "rotX": 359.9201, + "rotY": 269.999817, + "rotZ": 0.0168763567, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Billiards Room", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 231910, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "33990b" + } + ], + "GUID": "7388bc", + "AttachedDecals": [ + { + "Transform": { + "posX": -0.0021877822, + "posY": -0.08963572, + "posZ": -0.00288731651, + "rotX": 270.0, + "rotY": 359.869568, + "rotZ": 0.0, + "scaleX": 2.00000215, + "scaleY": 2.00000238, + "scaleZ": 2.00000262 + }, + "CustomDecal": { + "Name": "dunwich_back", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", + "Size": 7.4 + } + } + ] + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 12.2519007, + "posY": 1.46795833, + "posZ": 11.9864006, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.0168746952, + "scaleX": 2.21, + "scaleY": 0.46, + "scaleZ": 2.42 + }, + "Nickname": "3: The Secret Name", + "Description": "The Circle Undone", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/829135524527187179/79FD07A57C67FC9C33BA2108D8324ED4C2D88736/", + "NormalURL": "", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n--w })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", + "LuaScriptState": "{\"ml\":{\"13fc27\":{\"lock\":false,\"pos\":{\"x\":-26.7453,\"y\":1.6188,\"z\":0.0026},\"rot\":{\"x\":359.9201,\"y\":269.9936,\"z\":0.0169}},\"2ebf66\":{\"lock\":false,\"pos\":{\"x\":-17.1198,\"y\":1.6802,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"426c50\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0003,\"z\":0.0803}},\"5c61d9\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.6976,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"6935c1\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9998,\"z\":0.0687}},\"6bb83e\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.6931,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"6c0a90\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6225,\"z\":-3.8283},\"rot\":{\"x\":0.0169,\"y\":179.9809,\"z\":0.08}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.4736,\"y\":1.6282,\"z\":-0.0813},\"rot\":{\"x\":359.9201,\"y\":269.9936,\"z\":0.0169}},\"72ac0c\":{\"lock\":false,\"pos\":{\"x\":-36.773,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"7bea34\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6833,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"8ee597\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7984,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9989,\"z\":180.0168}},\"9f9bb1\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"b21125\":{\"lock\":false,\"pos\":{\"x\":-3.7422,\"y\":1.5821,\"z\":-15.5575},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"b7da8c\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9808,\"z\":0.08}},\"ba1246\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0125,\"z\":0.0803}},\"e281ec\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.6954,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"f087e3\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Custom_Tile", + "Transform": { + "posX": -26.7453, + "posY": 1.61879563, + "posZ": 0.00259972713, + "rotX": 359.9201, + "rotY": 269.993561, + "rotZ": 0.016909115, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "13fc27", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Deck", + "Transform": { + "posX": -17.1198, + "posY": 1.68018031, + "posZ": 7.57, + "rotX": 359.9201, + "rotY": 269.999939, + "rotZ": 0.0168766025, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unknown Places Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 275930, + 275932, + 275934, + 275929, + 275933, + 275928 + ], + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 37.91871, + "posY": 1.50776482, + "posZ": 68.2600555, + "rotX": 0.0200533122, + "rotY": 270.007935, + "rotZ": 180.0183, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unknown Places", + "Description": "Extradimensional.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275930, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "789bfc" + }, + { + "Name": "Card", + "Transform": { + "posX": 37.8498955, + "posY": 1.50504923, + "posZ": 68.35934, + "rotX": 0.02151048, + "rotY": 270.007538, + "rotZ": 180.020416, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unknown Places", + "Description": "Extradimensional.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275932, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9a471d" + }, + { + "Name": "Card", + "Transform": { + "posX": 38.26049, + "posY": 1.50727665, + "posZ": 68.74983, + "rotX": 0.0214149524, + "rotY": 270.0081, + "rotZ": 180.0162, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unknown Places", + "Description": "Extradimensional.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275934, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "13e568" + }, + { + "Name": "Card", + "Transform": { + "posX": 38.2868462, + "posY": 1.51864886, + "posZ": 68.84118, + "rotX": 0.0005201616, + "rotY": 270.0049, + "rotZ": 179.82106, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unknown Places", + "Description": "Extradimensional.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275929, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "300aee" + }, + { + "Name": "Card", + "Transform": { + "posX": 38.3945656, + "posY": 1.50345075, + "posZ": 68.7473, + "rotX": 0.008707138, + "rotY": 270.007446, + "rotZ": 179.992554, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unknown Places", + "Description": "Extradimensional.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275933, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0ac3ea" + }, + { + "Name": "Card", + "Transform": { + "posX": 38.41501, + "posY": 1.35831535, + "posZ": 68.39643, + "rotX": 0.01792046, + "rotY": 270.0082, + "rotZ": 180.017761, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unknown Places", + "Description": "Extradimensional.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275928, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b538f8" + } + ], + "GUID": "2ebf66" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.72459984, + "posY": 1.65513813, + "posZ": 0.373300433, + "rotX": 0.01683458, + "rotY": 180.000259, + "rotZ": 0.08025762, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agenda Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 275324, + 275323, + 275322, + 275321 + ], + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 23.8240452, + "posY": 1.34878731, + "posZ": 64.35853, + "rotX": 0.003070141, + "rotY": 180.001953, + "rotZ": 359.973083, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Marked for Sacrifice", + "Description": "Agenda 4", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275324, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "2c4183" + }, + { + "Name": "Card", + "Transform": { + "posX": 26.8698158, + "posY": 1.34987855, + "posZ": 64.5165558, + "rotX": -0.0006277118, + "rotY": 179.999649, + "rotZ": 359.9728, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Witch Light", + "Description": "Agenda 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275323, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6adc7b" + }, + { + "Name": "Card", + "Transform": { + "posX": 29.811491, + "posY": 1.35134566, + "posZ": 64.73896, + "rotX": 0.01601633, + "rotY": 179.999969, + "rotZ": 359.978851, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Familiar", + "Description": "Agenda 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275322, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4ba381" + }, + { + "Name": "Card", + "Transform": { + "posX": 29.9670486, + "posY": 1.496629, + "posZ": 64.8450851, + "rotX": 0.007878363, + "rotY": 180.0, + "rotZ": 359.980835, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "THE HERMIT · IX", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275321, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f39695" + } + ], + "GUID": "426c50" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.224, + "posY": 1.69758832, + "posZ": 7.56989956, + "rotX": 359.9201, + "rotY": 269.999939, + "rotZ": 0.0168762431, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Decrepit Door", + "Description": "Witch House.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275924, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5c61d9" + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 1.696401, + "posY": 1.55831742, + "posZ": 14.2788019, + "rotX": 359.955139, + "rotY": 224.999847, + "rotZ": 0.06867198, + "scaleX": 2.0, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "Nickname": "Set-aside", + "Description": "The Secret Name", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.02148666, + "g": 0.00100758043, + "b": 0.02148666 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", + "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 1, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Deck", + "Transform": { + "posX": 33.0712128, + "posY": 3.42125034, + "posZ": 66.37825, + "rotX": 0.0183009077, + "rotY": 270.0003, + "rotZ": 180.016724, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ghostly Presence", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 275526, + 275526 + ], + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 20.2544212, + "posY": 1.40155768, + "posZ": 76.95319, + "rotX": 0.020767916, + "rotY": 269.99295, + "rotZ": 0.0164573882, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ghostly Presence", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275526, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5e23b2" + }, + { + "Name": "Card", + "Transform": { + "posX": 20.437912, + "posY": 1.35132825, + "posZ": 76.2654343, + "rotX": 0.0207659211, + "rotY": 269.997681, + "rotZ": 0.01675902, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ghostly Presence", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275526, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7725f0" + } + ], + "GUID": "db34ba" + }, + { + "Name": "Deck", + "Transform": { + "posX": 32.55151, + "posY": 3.42120767, + "posZ": 66.67238, + "rotX": 0.0221417155, + "rotY": 269.995667, + "rotZ": 180.0268, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Strange Geometry", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 275524, + 275524 + ], + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 25.3332462, + "posY": 1.5051235, + "posZ": 80.50106, + "rotX": 0.0361841, + "rotY": 270.0002, + "rotZ": 180.161316, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Strange Geometry", + "Description": "Extradimensional.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275524, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "867256" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.312233, + "posY": 1.35691929, + "posZ": 80.35414, + "rotX": 0.0105671864, + "rotY": 269.999268, + "rotZ": 180.020477, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Strange Geometry", + "Description": "Extradimensional.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275524, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e08f79" + } + ], + "GUID": "1b4a8d" + }, + { + "Name": "Card", + "Transform": { + "posX": 17.0272255, + "posY": 2.52392864, + "posZ": -52.9219, + "rotX": 359.9201, + "rotY": 270.0072, + "rotZ": 0.01685771, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Black Book", + "Description": "Signed in Blood", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275732, + "SidewaysCard": false, + "CustomDeck": { + "2757": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4142d6" + }, + { + "Name": "Card", + "Transform": { + "posX": 32.9715919, + "posY": 3.407806, + "posZ": 65.60865, + "rotX": 0.0212268643, + "rotY": 269.994324, + "rotZ": 0.01663837, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Site of the Sacrifice", + "Description": "Extradimensional. Witch House.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275935, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "09f034" + }, + { + "Name": "Card", + "Transform": { + "posX": 32.6110153, + "posY": 3.40790176, + "posZ": 66.38212, + "rotX": 0.0218372382, + "rotY": 269.994476, + "rotZ": 0.0161013678, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Keziah's Room", + "Description": "Spectral. Witch House.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275927, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e2b8fc" + }, + { + "Name": "Card", + "Transform": { + "posX": 32.9114037, + "posY": 3.407826, + "posZ": 65.75095, + "rotX": 0.0209353622, + "rotY": 270.0, + "rotZ": 0.016872352, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nahab", + "Description": "She Who Signed the Black Book", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275531, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5bd251" + } + ], + "PhysicsMaterial": { + "StaticFriction": 0.6, + "DynamicFriction": 0.6, + "Bounciness": 0.0, + "FrictionCombine": 0, + "BounceCombine": 0 + }, + "Rigidbody": { + "Mass": 1.375, + "Drag": 5.0, + "AngularDrag": 5.0, + "UseGravity": true + }, + "GUID": "6935c1" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.224, + "posY": 1.69309187, + "posZ": -7.70010138, + "rotX": 359.9201, + "rotY": 270.0, + "rotZ": 0.0168762822, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Decrepit Door", + "Description": "Witch House.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275923, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6bb83e" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.2244, + "posY": 1.62251878, + "posZ": -3.82829976, + "rotX": 0.0168984644, + "rotY": 179.980835, + "rotZ": 0.0799336657, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6c0a90", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -33.4736, + "posY": 1.62815309, + "posZ": -0.08130022, + "rotX": 359.9201, + "rotY": 269.993561, + "rotZ": 0.0169092659, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7234af", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -36.773, + "posY": 1.70448256, + "posZ": -0.0300003756, + "rotX": 359.9201, + "rotY": 269.999939, + "rotZ": 0.0168763082, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Decrepit Door", + "Description": "Witch House.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275925, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "72ac0c" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.1199, + "posY": 1.68328393, + "posZ": 11.46, + "rotX": 359.9201, + "rotY": 270.000061, + "rotZ": 180.016861, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unknown Places", + "Description": "Extradimensional.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275931, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7bea34" + }, + { + "Name": "Deck", + "Transform": { + "posX": -3.9277, + "posY": 1.79835725, + "posZ": 5.75720072, + "rotX": 359.919739, + "rotY": 269.9989, + "rotZ": 180.016815, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231807, + 275527, + 231823, + 231808, + 275529, + 231807, + 231807, + 231809, + 275529, + 231809, + 231814, + 275528, + 231814, + 12113, + 12113, + 231814, + 275530, + 231821, + 275525, + 231823, + 231822, + 275527, + 231820, + 231813, + 231821, + 12113, + 231823, + 231822, + 231808, + 231813, + 275525, + 231822, + 275525, + 231820, + 275528 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -17.73656, + "posY": 1.71689022, + "posZ": -33.5350227, + "rotX": 359.918945, + "rotY": 269.979126, + "rotZ": 0.0171701312, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Diabolic Voices", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231807, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "64341a" + }, + { + "Name": "Card", + "Transform": { + "posX": 15.57442, + "posY": 1.34594059, + "posZ": 63.90754, + "rotX": 0.0205667466, + "rotY": 269.982239, + "rotZ": 0.0166774988, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Extradimensional Visions", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275527, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c309da" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.6707478, + "posY": 1.76058781, + "posZ": -33.23441, + "rotX": 359.465271, + "rotY": 269.459351, + "rotZ": 9.029153, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "717c42" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.80855, + "posY": 1.71239948, + "posZ": -33.79921, + "rotX": 359.910339, + "rotY": 269.97876, + "rotZ": 0.03349457, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wracked", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231808, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c8092b" + }, + { + "Name": "Card", + "Transform": { + "posX": 19.32797, + "posY": 1.34728289, + "posZ": 63.819725, + "rotX": 0.0208016783, + "rotY": 270.0232, + "rotZ": 0.01678183, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Disquieting Dreams", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275529, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ecc30a" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.0510273, + "posY": 1.71469259, + "posZ": -33.44395, + "rotX": 359.919128, + "rotY": 269.978668, + "rotZ": 0.0163030848, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Diabolic Voices", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231807, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "407e66" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.055851, + "posY": 1.72234285, + "posZ": -33.4770279, + "rotX": 359.9191, + "rotY": 269.978851, + "rotZ": 0.0164938, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Diabolic Voices", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231807, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0fa642" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.6637516, + "posY": 1.7296617, + "posZ": -33.73086, + "rotX": 359.9201, + "rotY": 269.978882, + "rotZ": 0.0205486864, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Bedeviled", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231809, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a558b5" + }, + { + "Name": "Card", + "Transform": { + "posX": 19.2536545, + "posY": 1.49378228, + "posZ": 63.5150528, + "rotX": 0.0208015256, + "rotY": 270.0232, + "rotZ": 0.0167839061, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Disquieting Dreams", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275529, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4bfb2e" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.1656151, + "posY": 1.716761, + "posZ": -33.74088, + "rotX": 359.918976, + "rotY": 269.9787, + "rotZ": 0.018134892, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Bedeviled", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231809, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f7c676" + }, + { + "Name": "Card", + "Transform": { + "posX": -21.0152721, + "posY": 1.57281208, + "posZ": -32.7783356, + "rotX": 359.9176, + "rotY": 269.977783, + "rotZ": 0.01638736, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "81dc7a" + }, + { + "Name": "Card", + "Transform": { + "posX": 18.958252, + "posY": 1.49464607, + "posZ": 66.83138, + "rotX": 0.0208131149, + "rotY": 269.98288, + "rotZ": 0.0167688485, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Pulled by the Stars", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275528, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "73138b" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.7263336, + "posY": 1.754926, + "posZ": -33.80658, + "rotX": 0.0413828529, + "rotY": 269.9769, + "rotZ": 0.3666429, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9cb625" + }, + { + "Name": "Card", + "Transform": { + "posX": 101.318535, + "posY": 1.758954, + "posZ": 10.703804, + "rotX": 1.86105, + "rotY": 269.999481, + "rotZ": 179.999344, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Swarm of Rats", + "Description": "Creature.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12113, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bbc9d1" + }, + { + "Name": "Card", + "Transform": { + "posX": 101.571495, + "posY": 1.75029993, + "posZ": 10.4105225, + "rotX": 2.26571965, + "rotY": 269.998566, + "rotZ": 180.004791, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Swarm of Rats", + "Description": "Creature.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12113, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7381cd" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.54692, + "posY": 1.60918021, + "posZ": -33.3808479, + "rotX": 359.9352, + "rotY": 269.982361, + "rotZ": 0.376713872, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0a13d0" + }, + { + "Name": "Card", + "Transform": { + "posX": 28.0608063, + "posY": 1.48256147, + "posZ": 70.23769, + "rotX": 0.3963438, + "rotY": 269.9942, + "rotZ": 179.55542, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Brown Jenkin", + "Description": "The Witch's Familiar", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275530, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a5885f" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.974844, + "posY": 1.58076048, + "posZ": -29.1853924, + "rotX": 359.916321, + "rotY": 269.977448, + "rotZ": 0.01572173, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shapes in the Mist", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231821, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "47147f" + }, + { + "Name": "Card", + "Transform": { + "posX": 16.0629826, + "posY": 1.5434624, + "posZ": 69.85437, + "rotX": 0.00353208953, + "rotY": 269.9999, + "rotZ": 0.0103120068, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Meddlesome Familiar", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275525, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "91ea7c" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.46502, + "posY": 2.16774321, + "posZ": -34.8072357, + "rotX": 0.232217044, + "rotY": 270.777466, + "rotZ": 353.199249, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fbcb9f" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.3842, + "posY": 2.1039958, + "posZ": -34.9055138, + "rotX": 359.182831, + "rotY": 270.902466, + "rotZ": 355.1978, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4f41b0" + }, + { + "Name": "Card", + "Transform": { + "posX": 16.288187, + "posY": 1.49218273, + "posZ": 63.2581558, + "rotX": 0.019790573, + "rotY": 269.982269, + "rotZ": 0.01620747, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Extradimensional Visions", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275527, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1a9156" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.5189228, + "posY": 1.92383051, + "posZ": -29.7425785, + "rotX": 359.8803, + "rotY": 269.977753, + "rotZ": 0.07589612, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Realm of Torment", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231820, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e49187" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.7343235, + "posY": 1.86165559, + "posZ": -33.3503036, + "rotX": 359.785339, + "rotY": 269.9796, + "rotZ": 0.07815084, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Evil Past", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231813, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "976fd8" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.9579411, + "posY": 1.72431993, + "posZ": -29.8048172, + "rotX": 359.8922, + "rotY": 269.971619, + "rotZ": 0.06810118, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shapes in the Mist", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231821, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3c04e0" + }, + { + "Name": "Card", + "Transform": { + "posX": 101.9408, + "posY": 1.783524, + "posZ": 10.864604, + "rotX": 2.44426751, + "rotY": 269.9983, + "rotZ": -0.004248401, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Swarm of Rats", + "Description": "Creature.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12113, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "56e5db" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.7152367, + "posY": 1.91512489, + "posZ": -32.59262, + "rotX": 359.910583, + "rotY": 269.364441, + "rotZ": 341.912537, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ef132d" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.27985, + "posY": 1.99979043, + "posZ": -34.2781525, + "rotX": 359.187378, + "rotY": 270.910339, + "rotZ": 355.236023, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "43ba03" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.71135, + "posY": 1.56800044, + "posZ": -33.49924, + "rotX": 359.9177, + "rotY": 269.978638, + "rotZ": 0.0161360279, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wracked", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231808, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4949ea" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.8834572, + "posY": 1.89827907, + "posZ": -33.5683937, + "rotX": 0.110509835, + "rotY": 269.976044, + "rotZ": 0.334469885, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Evil Past", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231813, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ab69b8" + }, + { + "Name": "Card", + "Transform": { + "posX": 15.534421, + "posY": 1.34764123, + "posZ": 69.7729, + "rotX": 0.02023894, + "rotY": 269.999878, + "rotZ": 0.01630637, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Meddlesome Familiar", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275525, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "669016" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6618786, + "posY": 2.18380141, + "posZ": -35.4214439, + "rotX": 359.156219, + "rotY": 270.890381, + "rotZ": 355.0201, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1a350a" + }, + { + "Name": "Card", + "Transform": { + "posX": 16.0629387, + "posY": 1.39727807, + "posZ": 69.8543549, + "rotX": 0.006995492, + "rotY": 269.999939, + "rotZ": 0.0118337628, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Meddlesome Familiar", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275525, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "561923" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.91995, + "posY": 1.77833688, + "posZ": -29.84826, + "rotX": 359.884155, + "rotY": 269.9732, + "rotZ": 0.074736394, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Realm of Torment", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231820, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "278e46" + }, + { + "Name": "Card", + "Transform": { + "posX": 19.4392548, + "posY": 1.34818745, + "posZ": 66.77173, + "rotX": 0.0208143778, + "rotY": 269.982849, + "rotZ": 0.0167647954, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Pulled by the Stars", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275528, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6b521b" + } + ], + "GUID": "8ee597" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6763, + "posY": 1.68622, + "posZ": -0.0300004128, + "rotX": 359.9201, + "rotY": 269.999939, + "rotZ": 0.016876312, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Walter Gilman's Room", + "Description": "Witch House.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275926, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9f9bb1" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.74219966, + "posY": 1.58213162, + "posZ": -15.5575018, + "rotX": 359.919739, + "rotY": 270.004944, + "rotZ": 0.0168308429, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "The Secret Name", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'The Witching Hour'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b21125" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.2242, + "posY": 1.62478244, + "posZ": 3.86000037, + "rotX": 0.01689857, + "rotY": 179.980774, + "rotZ": 0.07993373, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b7da8c", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.6884, + "posY": 1.65499711, + "posZ": -5.04850054, + "rotX": 0.0168175939, + "rotY": 180.012482, + "rotZ": 0.08026119, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 275327, + 275326, + 275325 + ], + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 26.17231, + "posY": 1.348263, + "posZ": 59.550766, + "rotX": 0.0021465125, + "rotY": 179.997375, + "rotZ": 359.97345, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Stopping the Ritual", + "Description": "Act 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275327, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1abfba" + }, + { + "Name": "Card", + "Transform": { + "posX": 29.2456379, + "posY": 1.349643, + "posZ": 59.6061249, + "rotX": 0.01631257, + "rotY": 180.001724, + "rotZ": 359.977448, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Beyond the Witch House", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275326, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1feabc" + }, + { + "Name": "Card", + "Transform": { + "posX": 29.3317261, + "posY": 1.49492872, + "posZ": 59.80226, + "rotX": 0.0080563575, + "rotY": 180.004028, + "rotZ": 359.976, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Investigating the Witch House", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275325, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d01350" + } + ], + "GUID": "ba1246" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.224, + "posY": 1.69535041, + "posZ": -0.0301005151, + "rotX": 359.9201, + "rotY": 269.999969, + "rotZ": 0.01687616, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Moldy Halls", + "Description": "Witch House.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275922, + "SidewaysCard": false, + "CustomDeck": { + "2759": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e281ec" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.95600033, + "posY": 1.65564811, + "posZ": -10.4412012, + "rotX": 359.919739, + "rotY": 270.0001, + "rotZ": 0.01684067, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "The Secret Name", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275420, + "SidewaysCard": false, + "CustomDeck": { + "2754": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f087e3" + } + ], + "GUID": "5c79d0", + "AttachedDecals": [ + { + "Transform": { + "posX": -0.0021877822, + "posY": -0.08963572, + "posZ": -0.00288731651, + "rotX": 270.0, + "rotY": 359.869568, + "rotZ": 0.0, + "scaleX": 2.00000215, + "scaleY": 2.00000238, + "scaleZ": 2.00000262 + }, + "CustomDecal": { + "Name": "dunwich_back", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", + "Size": 7.4 + } + } + ] + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 12.2498035, + "posY": 1.46560574, + "posZ": 3.9864, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.01687354, + "scaleX": 2.21, + "scaleY": 0.46, + "scaleZ": 2.42 + }, + "Nickname": "4: The Wages of Sin", + "Description": "The Circle Undone", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/829135524527188494/F284E83641B5CCF665158F9E45BC8A8FF3B6CA37/", + "NormalURL": "", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", + "LuaScriptState": "{\"ml\":{\"06bdb3\":{\"lock\":false,\"pos\":{\"x\":-28.7473,\"y\":1.7436,\"z\":-15.2642},\"rot\":{\"x\":359.9193,\"y\":270.0026,\"z\":180.0171}},\"1042cb\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":180.017}},\"183001\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7397,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9899,\"z\":180.0168}},\"1f7560\":{\"lock\":false,\"pos\":{\"x\":-2.6882,\"y\":1.6623,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":180.0082,\"z\":0.0803}},\"2009dd\":{\"lock\":false,\"pos\":{\"x\":-33.7293,\"y\":1.6297,\"z\":3.8315},\"rot\":{\"x\":359.9554,\"y\":225.0006,\"z\":0.0684}},\"34b9e9\":{\"lock\":false,\"pos\":{\"x\":-28.7736,\"y\":1.7526,\"z\":15.1216},\"rot\":{\"x\":359.9194,\"y\":270.0193,\"z\":180.0171}},\"3e1d3a\":{\"lock\":false,\"pos\":{\"x\":-30.1891,\"y\":1.6202,\"z\":-11.5052},\"rot\":{\"x\":0.0168,\"y\":180.0183,\"z\":0.0799}},\"42fbac\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"55d8f1\":{\"lock\":false,\"pos\":{\"x\":-22.2549,\"y\":1.7368,\"z\":-7.7064},\"rot\":{\"x\":0.0793,\"y\":270.0031,\"z\":179.9831}},\"58b8c5\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.7004,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":180.0169}},\"5bcc5d\":{\"lock\":false,\"pos\":{\"x\":-30.2184,\"y\":1.7026,\"z\":15.1986},\"rot\":{\"x\":359.9201,\"y\":270.0047,\"z\":180.017}},\"5dab65\":{\"lock\":false,\"pos\":{\"x\":-26.9492,\"y\":1.6168,\"z\":-7.69},\"rot\":{\"x\":0.08,\"y\":90.4419,\"z\":359.9837}},\"60ca46\":{\"lock\":false,\"pos\":{\"x\":-26.6037,\"y\":1.6219,\"z\":11.1799},\"rot\":{\"x\":0.0684,\"y\":135.0088,\"z\":0.0446}},\"62d69d\":{\"lock\":false,\"pos\":{\"x\":-22.1916,\"y\":1.7412,\"z\":7.6069},\"rot\":{\"x\":0.0791,\"y\":270.0016,\"z\":179.983}},\"6d3a3b\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.7073,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.6602,\"y\":1.6273,\"z\":-3.847},\"rot\":{\"x\":0.0684,\"y\":134.9951,\"z\":0.0446}},\"8ee597\":{\"lock\":false,\"pos\":{\"x\":-3.8733,\"y\":1.7211,\"z\":15.1997},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6958,\"y\":1.5583,\"z\":14.2785},\"rot\":{\"x\":359.9551,\"y\":224.9978,\"z\":0.0687}},\"a9af08\":{\"lock\":false,\"pos\":{\"x\":-12.3886,\"y\":1.6747,\"z\":11.2381},\"rot\":{\"x\":359.9201,\"y\":270.0116,\"z\":0.0169}},\"ac274f\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9992,\"z\":0.0168}},\"ad2d6f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6236,\"z\":-0.03},\"rot\":{\"x\":0.0168,\"y\":180.0181,\"z\":0.0799}},\"b21125\":{\"lock\":false,\"pos\":{\"x\":-3.945,\"y\":1.5827,\"z\":-14.7449},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"e2ad21\":{\"lock\":false,\"pos\":{\"x\":-30.2238,\"y\":1.6937,\"z\":-15.2805},\"rot\":{\"x\":359.9201,\"y\":270.0069,\"z\":180.017}},\"e2b8fc\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.998,\"z\":180.017}},\"efc4b5\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9995,\"z\":0.0803}},\"f2e96f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.627,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":180.0032,\"z\":0.0799}},\"f74271\":{\"lock\":false,\"pos\":{\"x\":-26.6267,\"y\":1.6209,\"z\":7.6662},\"rot\":{\"x\":0.08,\"y\":90.2464,\"z\":359.9834}},\"f8c429\":{\"lock\":false,\"pos\":{\"x\":-27.1766,\"y\":1.6161,\"z\":-11.2744},\"rot\":{\"x\":359.9554,\"y\":225.0012,\"z\":0.0684}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 1.69580126, + "posY": 1.55831814, + "posZ": 14.2785034, + "rotX": 359.955139, + "rotY": 224.997849, + "rotZ": 0.06867339, + "scaleX": 2.0, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "Nickname": "Set-aside", + "Description": "The Wages of Sin", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.02148666, + "g": 0.00100758043, + "b": 0.02148666 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", + "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 1, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Deck", + "Transform": { + "posX": 17.0063362, + "posY": 2.58263564, + "posZ": -39.591713, + "rotX": 359.920135, + "rotY": 270.001343, + "rotZ": 0.0168687031, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Spectral Web", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 275733, + 275733, + 275733, + 275733 + ], + "CustomDeck": { + "2757": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 28.41885, + "posY": 1.347801, + "posZ": 54.34455, + "rotX": 0.0202481523, + "rotY": 270.007416, + "rotZ": 0.0163530763, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Spectral Web", + "Description": "Spell.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275733, + "SidewaysCard": false, + "CustomDeck": { + "2757": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "550697" + }, + { + "Name": "Card", + "Transform": { + "posX": 28.0886059, + "posY": 1.3968327, + "posZ": 54.9196, + "rotX": 359.890167, + "rotY": 270.0158, + "rotZ": 0.145918369, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Spectral Web", + "Description": "Spell.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275733, + "SidewaysCard": false, + "CustomDeck": { + "2757": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8fe838" + }, + { + "Name": "Card", + "Transform": { + "posX": 28.1784782, + "posY": 1.51447129, + "posZ": 54.86489, + "rotX": 359.7677, + "rotY": 270.000275, + "rotZ": 0.723122358, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Spectral Web", + "Description": "Spell.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275733, + "SidewaysCard": false, + "CustomDeck": { + "2757": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d6ed28" + }, + { + "Name": "Card", + "Transform": { + "posX": 0.272214681, + "posY": 1.66790545, + "posZ": 28.77715, + "rotX": 358.207977, + "rotY": 270.006134, + "rotZ": 0.0131794261, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Spectral Web", + "Description": "Spell.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275733, + "SidewaysCard": false, + "CustomDeck": { + "2757": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "863f1a" + } + ], + "GUID": "a1811b" + }, + { + "Name": "Deck", + "Transform": { + "posX": 32.8993034, + "posY": 3.40332723, + "posZ": 52.0560722, + "rotX": 0.020968182, + "rotY": 269.9796, + "rotZ": 0.0168605149, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Watcher", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231802, + 231802, + 231801 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -27.8545532, + "posY": 1.58170176, + "posZ": -34.8676262, + "rotX": 359.915649, + "rotY": 269.974121, + "rotZ": 0.01525554, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Watcher's Grasp", + "Description": "Power. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231802, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f798c8" + }, + { + "Name": "Card", + "Transform": { + "posX": -27.9526443, + "posY": 1.72608125, + "posZ": -34.6397629, + "rotX": 359.9233, + "rotY": 269.9745, + "rotZ": 0.00772151956, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Watcher's Grasp", + "Description": "Power. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231802, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f92f1e" + }, + { + "Name": "Card", + "Transform": { + "posX": -27.4475632, + "posY": 1.74305177, + "posZ": -34.8419075, + "rotX": 359.9185, + "rotY": 269.974243, + "rotZ": 0.0167756584, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Spectral Watcher", + "Description": "You Are Its Prey", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231801, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a1eb9b" + } + ], + "GUID": "28374b" + } + ], + "PhysicsMaterial": { + "StaticFriction": 0.6, + "DynamicFriction": 0.6, + "Bounciness": 0.0, + "FrictionCombine": 0, + "BounceCombine": 0 + }, + "Rigidbody": { + "Mass": 1.375, + "Drag": 5.0, + "AngularDrag": 5.0, + "UseGravity": true + }, + "GUID": "a45247" + }, + { + "Name": "Deck", + "Transform": { + "posX": -3.87325621, + "posY": 1.72111368, + "posZ": 15.1996946, + "rotX": 359.919739, + "rotY": 270.0, + "rotZ": 180.016815, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Spectral Encounter Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 275540, + 275535, + 275537, + 275535, + 275540, + 275537, + 231818, + 231821, + 231819, + 231818, + 231820, + 231819, + 231822, + 231823, + 231821, + 231823, + 231822, + 231823, + 231820, + 231822 + ], + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -5.60290337, + "posY": 1.72524989, + "posZ": 23.9985065, + "rotX": 359.922028, + "rotY": 269.989441, + "rotZ": 180.019623, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Bane of the Living", + "Description": "Curse. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275540, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9b05f2" + }, + { + "Name": "Card", + "Transform": { + "posX": -5.60289574, + "posY": 1.72287846, + "posZ": 23.99851, + "rotX": 359.918, + "rotY": 269.990021, + "rotZ": 180.017792, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Malevolent Spirit", + "Description": "Monster. Geist. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275535, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d02d98" + }, + { + "Name": "Card", + "Transform": { + "posX": -5.602903, + "posY": 1.72468817, + "posZ": 23.9984875, + "rotX": 359.919464, + "rotY": 269.9897, + "rotZ": 180.018677, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Burdens of the Past", + "Description": "Curse. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275537, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "199d00" + }, + { + "Name": "Card", + "Transform": { + "posX": -5.602903, + "posY": 1.73853827, + "posZ": 23.9984875, + "rotX": 359.919464, + "rotY": 269.989716, + "rotZ": 180.018723, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Malevolent Spirit", + "Description": "Monster. Geist. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275535, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f65ded" + }, + { + "Name": "Card", + "Transform": { + "posX": -5.60288858, + "posY": 1.7209518, + "posZ": 23.9984589, + "rotX": 359.917633, + "rotY": 269.989624, + "rotZ": 180.03064, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Bane of the Living", + "Description": "Curse. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275540, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d9c83e" + }, + { + "Name": "Card", + "Transform": { + "posX": -5.60292864, + "posY": 1.57090807, + "posZ": 23.99852, + "rotX": 359.9202, + "rotY": 269.989868, + "rotZ": 180.017975, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Burdens of the Past", + "Description": "Curse. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275537, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f3088f" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.14106, + "posY": 1.62496328, + "posZ": -36.8201828, + "rotX": 359.913239, + "rotY": 269.973724, + "rotZ": 0.00411301153, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wraith", + "Description": "Monster. Geist. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231818, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7732b3" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.9579411, + "posY": 1.72431993, + "posZ": -29.8048172, + "rotX": 359.8922, + "rotY": 269.971619, + "rotZ": 0.06810118, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shapes in the Mist", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231821, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3c04e0" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.006403, + "posY": 1.73293757, + "posZ": -36.7171631, + "rotX": 359.904938, + "rotY": 269.972717, + "rotZ": 0.0009751208, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Trapped Spirits", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231819, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "10c2cb" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6921558, + "posY": 1.5753423, + "posZ": -36.98296, + "rotX": 359.918884, + "rotY": 269.973633, + "rotZ": 0.016206529, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wraith", + "Description": "Monster. Geist. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231818, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "db1b65" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.5189228, + "posY": 1.92383051, + "posZ": -29.7425785, + "rotX": 359.8803, + "rotY": 269.977753, + "rotZ": 0.07589612, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Realm of Torment", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231820, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e49187" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.8059444, + "posY": 1.67718458, + "posZ": -36.7148056, + "rotX": 359.913239, + "rotY": 269.9757, + "rotZ": 0.004121993, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Trapped Spirits", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231819, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4e4752" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.27985, + "posY": 1.99979043, + "posZ": -34.2781525, + "rotX": 359.187378, + "rotY": 270.910339, + "rotZ": 355.236023, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "43ba03" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.7152367, + "posY": 1.91512489, + "posZ": -32.59262, + "rotX": 359.910583, + "rotY": 269.364441, + "rotZ": 341.912537, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ef132d" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.974844, + "posY": 1.58076048, + "posZ": -29.1853924, + "rotX": 359.916321, + "rotY": 269.977448, + "rotZ": 0.01572173, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shapes in the Mist", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231821, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "47147f" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.46502, + "posY": 2.16774321, + "posZ": -34.8072357, + "rotX": 0.232217044, + "rotY": 270.777466, + "rotZ": 353.199249, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fbcb9f" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.3842, + "posY": 2.1039958, + "posZ": -34.9055138, + "rotX": 359.182831, + "rotY": 270.902466, + "rotZ": 355.1978, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4f41b0" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.6707478, + "posY": 1.76058781, + "posZ": -33.23441, + "rotX": 359.465271, + "rotY": 269.459351, + "rotZ": 9.029153, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "717c42" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.91995, + "posY": 1.77833688, + "posZ": -29.84826, + "rotX": 359.884155, + "rotY": 269.9732, + "rotZ": 0.074736394, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Realm of Torment", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231820, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "278e46" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6618786, + "posY": 2.18380141, + "posZ": -35.4214439, + "rotX": 359.156219, + "rotY": 270.890381, + "rotZ": 355.0201, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1a350a" + } + ], + "GUID": "8ee597" + }, + { + "Name": "Deck", + "Transform": { + "posX": -3.92741847, + "posY": 1.73973286, + "posZ": 5.757205, + "rotX": 359.919739, + "rotY": 269.989868, + "rotZ": 180.01683, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231805, + 231808, + 275536, + 275539, + 231809, + 275534, + 231809, + 231814, + 231814, + 231807, + 275534, + 231813, + 231808, + 231807, + 231805, + 275538, + 231806, + 275536, + 275538, + 275539, + 231814, + 231807, + 231813, + 231805 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -25.6442871, + "posY": 1.72278082, + "posZ": -36.0347443, + "rotX": 359.911224, + "rotY": 269.974, + "rotZ": 0.0136959022, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Coven Initiate", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231805, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c35966" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.71135, + "posY": 1.56800044, + "posZ": -33.49924, + "rotX": 359.9177, + "rotY": 269.978638, + "rotZ": 0.0161360279, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wracked", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231808, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4949ea" + }, + { + "Name": "Card", + "Transform": { + "posX": 19.40219, + "posY": 1.34403968, + "posZ": 52.6477, + "rotX": 0.0208171587, + "rotY": 269.9707, + "rotZ": 0.0167593136, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Punishment", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275536, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ad69c7" + }, + { + "Name": "Card", + "Transform": { + "posX": 15.4475288, + "posY": 1.34161592, + "posZ": 49.3494568, + "rotX": 0.0195411555, + "rotY": 269.9999, + "rotZ": 0.0161290076, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Grave-Light", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275539, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "716bb1" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.1656151, + "posY": 1.716761, + "posZ": -33.74088, + "rotX": 359.918976, + "rotY": 269.9787, + "rotZ": 0.018134892, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Bedeviled", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231809, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f7c676" + }, + { + "Name": "Card", + "Transform": { + "posX": 11.8467007, + "posY": 1.48010254, + "posZ": 51.81632, + "rotX": 0.0149586685, + "rotY": 269.982483, + "rotZ": 0.0217985548, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Vengeful Witch", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275534, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "801539" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.6637516, + "posY": 1.7296617, + "posZ": -33.73086, + "rotX": 359.9201, + "rotY": 269.978882, + "rotZ": 0.0205486864, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Bedeviled", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231809, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a558b5" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.7263336, + "posY": 1.754926, + "posZ": -33.80658, + "rotX": 0.0413828529, + "rotY": 269.9769, + "rotZ": 0.3666429, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9cb625" + }, + { + "Name": "Card", + "Transform": { + "posX": -21.0152721, + "posY": 1.57281208, + "posZ": -32.7783356, + "rotX": 359.9176, + "rotY": 269.977783, + "rotZ": 0.01638736, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "81dc7a" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.055851, + "posY": 1.72234285, + "posZ": -33.4770279, + "rotX": 359.9191, + "rotY": 269.978851, + "rotZ": 0.0164938, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Diabolic Voices", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231807, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0fa642" + }, + { + "Name": "Card", + "Transform": { + "posX": 11.7847424, + "posY": 1.34110641, + "posZ": 52.07729, + "rotX": 0.0207291655, + "rotY": 269.982758, + "rotZ": 0.01682211, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Vengeful Witch", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275534, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "de0939" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.7343235, + "posY": 1.86165559, + "posZ": -33.3503036, + "rotX": 359.785339, + "rotY": 269.9796, + "rotZ": 0.07815084, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Evil Past", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231813, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "976fd8" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.80855, + "posY": 1.71239948, + "posZ": -33.79921, + "rotX": 359.910339, + "rotY": 269.97876, + "rotZ": 0.03349457, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wracked", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231808, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c8092b" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.0510273, + "posY": 1.71469259, + "posZ": -33.44395, + "rotX": 359.919128, + "rotY": 269.978668, + "rotZ": 0.0163030848, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Diabolic Voices", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231807, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "407e66" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.7267475, + "posY": 1.74028778, + "posZ": -36.1106224, + "rotX": 359.918823, + "rotY": 269.9739, + "rotZ": 0.0168967526, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Coven Initiate", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231805, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6f2c2e" + }, + { + "Name": "Card", + "Transform": { + "posX": 15.5294752, + "posY": 1.34248006, + "posZ": 52.47316, + "rotX": 0.015629, + "rotY": 269.982422, + "rotZ": 0.0147842215, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ominous Portents", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275538, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0fc433" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.8414345, + "posY": 1.57860494, + "posZ": -36.132618, + "rotX": 359.919647, + "rotY": 269.974, + "rotZ": 0.0165877342, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Priestess of the Coven", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231806, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "326f11" + }, + { + "Name": "Card", + "Transform": { + "posX": 19.4425049, + "posY": 1.49075043, + "posZ": 52.53749, + "rotX": 0.0168869942, + "rotY": 269.9707, + "rotZ": 0.01725625, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Punishment", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275536, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "832e11" + }, + { + "Name": "Card", + "Transform": { + "posX": 15.5567713, + "posY": 1.48118174, + "posZ": 52.53753, + "rotX": 0.0234855525, + "rotY": 269.971039, + "rotZ": -0.000177135516, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ominous Portents", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275538, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8767b5" + }, + { + "Name": "Card", + "Transform": { + "posX": 15.3969, + "posY": 1.480602, + "posZ": 49.3430138, + "rotX": 0.009779532, + "rotY": 270.000031, + "rotZ": 0.0111978985, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Grave-Light", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275539, + "SidewaysCard": false, + "CustomDeck": { + "2755": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "84bbd0" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.54692, + "posY": 1.60918021, + "posZ": -33.3808479, + "rotX": 359.9352, + "rotY": 269.982361, + "rotZ": 0.376713872, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0a13d0" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.73656, + "posY": 1.71689022, + "posZ": -33.5350227, + "rotX": 359.918945, + "rotY": 269.979126, + "rotZ": 0.0171701312, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Diabolic Voices", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231807, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "64341a" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.8834572, + "posY": 1.89827907, + "posZ": -33.5683937, + "rotX": 0.110509835, + "rotY": 269.976044, + "rotZ": 0.334469885, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Evil Past", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231813, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ab69b8" + }, + { + "Name": "Card", + "Transform": { + "posX": -26.0635834, + "posY": 1.72707784, + "posZ": -35.83386, + "rotX": 359.920868, + "rotY": 269.973969, + "rotZ": 0.0147350542, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Coven Initiate", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231805, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "367d03" + } + ], + "GUID": "183001" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.68819952, + "posY": 1.662333, + "posZ": -5.0486, + "rotX": 0.0168235619, + "rotY": 180.008179, + "rotZ": 0.08026045, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 275332, + 275331 + ], + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 29.15592, + "posY": 1.34646809, + "posZ": 49.01146, + "rotX": 0.0136854285, + "rotY": 179.9997, + "rotZ": 359.9776, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "In Pursuit of the Living", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275332, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ca12dd" + }, + { + "Name": "Card", + "Transform": { + "posX": 28.7154121, + "posY": 1.4910543, + "posZ": 49.2659225, + "rotX": 0.0129829422, + "rotY": 180.0006, + "rotZ": 359.928925, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "In Pursuit of the Dead", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275331, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "70fcce" + } + ], + "GUID": "1f7560" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.72459984, + "posY": 1.66397715, + "posZ": 0.3733007, + "rotX": 0.016835453, + "rotY": 179.999512, + "rotZ": 0.08025768, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agenda Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 275330, + 275329 + ], + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 29.4476528, + "posY": 1.34756792, + "posZ": 52.4735947, + "rotX": 0.0133047355, + "rotY": 179.9995, + "rotZ": 359.978241, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Death's Approach", + "Description": "Agenda 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275330, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "57bcb8" + }, + { + "Name": "Card", + "Transform": { + "posX": 29.4080963, + "posY": 1.49256372, + "posZ": 52.60277, + "rotX": 0.0171353649, + "rotY": 180.001144, + "rotZ": 359.970551, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "THE HANGED MAN · XII", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275329, + "SidewaysCard": true, + "CustomDeck": { + "2753": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0e45a9" + } + ], + "GUID": "efc4b5" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.9559, + "posY": 1.655648, + "posZ": -10.4412022, + "rotX": 359.919739, + "rotY": 269.9992, + "rotZ": 0.0168424752, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "The Wages of Sin", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 275428, + "SidewaysCard": false, + "CustomDeck": { + "2754": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ac274f" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.94500041, + "posY": 1.58265471, + "posZ": -14.7449055, + "rotX": 359.919739, + "rotY": 270.004883, + "rotZ": 0.0168309528, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "The Wages of Sin", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'The Wages of Sin'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b21125" + }, + { + "Name": "Deck", + "Transform": { + "posX": -12.3885965, + "posY": 1.67466307, + "posZ": 11.2381, + "rotX": 359.9201, + "rotY": 270.011566, + "rotZ": 0.0168606378, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Heretics", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 275435, + 275436, + 275434, + 275438, + 275437, + 275433 + ], + "CustomDeck": { + "2754": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 16.5071, + "posY": 1.34559619, + "posZ": 61.5575562, + "rotX": 0.0208071545, + "rotY": 270.0, + "rotZ": 0.0167729761, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Heretic", + "Description": "Monster. Geist. Witch. Spectral. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275435, + "SidewaysCard": false, + "CustomDeck": { + "2754": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "13d3f3" + }, + { + "Name": "Card", + "Transform": { + "posX": 16.4758682, + "posY": 1.34500444, + "posZ": 58.9735146, + "rotX": 0.027376866, + "rotY": 269.998535, + "rotZ": 0.019387, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Heretic", + "Description": "Monster. Geist. Witch. Spectral. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275436, + "SidewaysCard": false, + "CustomDeck": { + "2754": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "71e37c" + }, + { + "Name": "Card", + "Transform": { + "posX": 16.4763718, + "posY": 1.34412086, + "posZ": 56.5552368, + "rotX": 0.0208079629, + "rotY": 270.0, + "rotZ": 0.0167719, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Heretic", + "Description": "Monster. Geist. Witch. Spectral. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275434, + "SidewaysCard": false, + "CustomDeck": { + "2754": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6f896e" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.2133646, + "posY": 1.34292543, + "posZ": 56.51944, + "rotX": 0.0208042227, + "rotY": 270.000031, + "rotZ": 0.0167716611, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Heretic", + "Description": "Monster. Geist. Witch. Spectral. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275438, + "SidewaysCard": false, + "CustomDeck": { + "2754": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "962a85" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.0830288, + "posY": 1.34435523, + "posZ": 61.5660324, + "rotX": 0.02080735, + "rotY": 270.0, + "rotZ": 0.0167676, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Heretic", + "Description": "Monster. Geist. Witch. Spectral. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275437, + "SidewaysCard": false, + "CustomDeck": { + "2754": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6d6a42" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.3551321, + "posY": 1.34373021, + "posZ": 59.03893, + "rotX": 0.022275405, + "rotY": 270.000916, + "rotZ": 0.0167769566, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Heretic", + "Description": "Monster. Geist. Witch. Spectral. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 275433, + "SidewaysCard": false, + "CustomDeck": { + "2754": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6c0d7e" + } + ], + "GUID": "a9af08" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.67648, + "posY": 1.691279, + "posZ": 7.569963, + "rotX": 359.920135, + "rotY": 269.9987, + "rotZ": 180.017014, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Gallows", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 276040, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1042cb" + }, + { + "Name": "Card", + "Transform": { + "posX": -22.1916351, + "posY": 1.74124277, + "posZ": 7.60687733, + "rotX": 0.0790919662, + "rotY": 270.001617, + "rotZ": 179.983047, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Gallows", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 276039, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "62d69d" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -26.6267, + "posY": 1.62088692, + "posZ": 7.66619968, + "rotX": 0.0799662, + "rotY": 90.24637, + "rotZ": 359.983429, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f74271", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2241821, + "posY": 1.70041144, + "posZ": 7.569985, + "rotX": 359.9201, + "rotY": 270.0002, + "rotZ": 180.016861, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Haunted Fields", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 276037, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "58b8c5" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.2242, + "posY": 1.62702024, + "posZ": 11.4600058, + "rotX": 0.0168672036, + "rotY": 180.003189, + "rotZ": 0.07993552, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f2e96f", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2183952, + "posY": 1.70264828, + "posZ": 15.1986485, + "rotX": 359.9201, + "rotY": 270.0047, + "rotZ": 180.016968, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Heretics' Graves", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 276042, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5bcc5d" + }, + { + "Name": "Card", + "Transform": { + "posX": -28.7736053, + "posY": 1.75261486, + "posZ": 15.1216192, + "rotX": 359.9194, + "rotY": 270.019348, + "rotZ": 180.01712, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Heretics' Graves", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 276041, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "34b9e9" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -26.6037, + "posY": 1.62188947, + "posZ": 11.1799011, + "rotX": 0.0684242, + "rotY": 135.0088, + "rotZ": 0.04457203, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "60ca46", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.2242, + "posY": 1.623637, + "posZ": -0.02999952, + "rotX": 0.0168465637, + "rotY": 180.018127, + "rotZ": 0.07994472, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": false, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ad2d6f", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -33.7293, + "posY": 1.62966168, + "posZ": 3.83150053, + "rotX": 359.955444, + "rotY": 225.000641, + "rotZ": 0.068403706, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "2009dd", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -33.6602, + "posY": 1.62730432, + "posZ": -3.84700012, + "rotX": 0.0684347749, + "rotY": 134.995117, + "rotZ": 0.044556018, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7234af", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -36.7732, + "posY": 1.70730567, + "posZ": -0.0299987774, + "rotX": 359.9201, + "rotY": 270.000061, + "rotZ": 180.016861, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hangman's Brook", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 276036, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6d3a3b" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2243347, + "posY": 1.69591522, + "posZ": -7.699994, + "rotX": 359.9201, + "rotY": 269.999817, + "rotZ": 180.016861, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Abandoned Chapel", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 276038, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "42fbac" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.1891, + "posY": 1.6202091, + "posZ": -11.5052032, + "rotX": 0.0168461744, + "rotY": 180.018326, + "rotZ": 0.07994516, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": false, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3e1d3a", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2238064, + "posY": 1.69368041, + "posZ": -15.2804556, + "rotX": 359.9201, + "rotY": 270.006866, + "rotZ": 180.017, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Chapel Crypt", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 276044, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e2ad21" + }, + { + "Name": "Card", + "Transform": { + "posX": -28.7473469, + "posY": 1.74364579, + "posZ": -15.2642126, + "rotX": 359.919342, + "rotY": 270.0026, + "rotZ": 180.017075, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Chapel Crypt", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 276043, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "06bdb3" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -27.1766, + "posY": 1.61607635, + "posZ": -11.2744007, + "rotX": 359.955444, + "rotY": 225.001221, + "rotZ": 0.06840099, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f8c429", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -26.9492, + "posY": 1.61681485, + "posZ": -7.690002, + "rotX": 0.08002207, + "rotY": 90.441925, + "rotZ": 359.9837, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": false, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5dab65", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6764965, + "posY": 1.68678308, + "posZ": -7.700061, + "rotX": 359.9201, + "rotY": 269.998, + "rotZ": 180.016983, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Chapel Attic", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 276046, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e2b8fc" + }, + { + "Name": "Card", + "Transform": { + "posX": -22.254879, + "posY": 1.73675287, + "posZ": -7.70638561, + "rotX": 0.079266, + "rotY": 270.003052, + "rotZ": 179.983109, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Chapel Attic", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 276045, + "SidewaysCard": false, + "CustomDeck": { + "2760": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "55d8f1" + } + ], + "GUID": "1e45e8", + "AttachedDecals": [ + { + "Transform": { + "posX": -0.0021877822, + "posY": -0.08963572, + "posZ": -0.00288731651, + "rotX": 270.0, + "rotY": 359.869568, + "rotZ": 0.0, + "scaleX": 2.00000215, + "scaleY": 2.00000238, + "scaleZ": 2.00000262 + }, + "CustomDecal": { + "Name": "dunwich_back", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", + "Size": 7.4 + } + } + ] + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 12.2494059, + "posY": 1.4632504, + "posZ": -4.013601, + "rotX": 359.920135, + "rotY": 269.999939, + "rotZ": 0.0168743245, + "scaleX": 2.21, + "scaleY": 0.46, + "scaleZ": 2.42 + }, + "Nickname": "5: For the Greater Good", + "Description": "The Circle Undone", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/786356000879747884/323850845E637466C0DD80E0CA825D57AD6553F0/", + "NormalURL": "", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", + "LuaScriptState": "{\"ml\":{\"021478\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.002,\"z\":0.0169}},\"137468\":{\"lock\":false,\"pos\":{\"x\":-12.0499,\"y\":1.5949,\"z\":-11.6676},\"rot\":{\"x\":359.9201,\"y\":270.0216,\"z\":0.0168}},\"156d55\":{\"lock\":false,\"pos\":{\"x\":-12.05,\"y\":1.6016,\"z\":11.3474},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0169}},\"167691\":{\"lock\":false,\"pos\":{\"x\":-12.05,\"y\":1.596,\"z\":-7.9544},\"rot\":{\"x\":359.9201,\"y\":269.9857,\"z\":0.0169}},\"38a5f7\":{\"lock\":false,\"pos\":{\"x\":-11.9229,\"y\":1.4136,\"z\":1.629},\"rot\":{\"x\":0.0799,\"y\":89.9982,\"z\":359.9831}},\"58eefe\":{\"lock\":false,\"pos\":{\"x\":-20.3545,\"y\":1.6105,\"z\":2.1052},\"rot\":{\"x\":0.0776,\"y\":120.0149,\"z\":0.0253}},\"604398\":{\"lock\":false,\"pos\":{\"x\":-12.05,\"y\":1.6005,\"z\":7.5408},\"rot\":{\"x\":359.9201,\"y\":269.9899,\"z\":0.0169}},\"6276bc\":{\"lock\":false,\"pos\":{\"x\":-26.8667,\"y\":1.6206,\"z\":5.4575},\"rot\":{\"x\":359.9224,\"y\":299.9941,\"z\":359.9747}},\"698fc7\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6145,\"z\":-0.0299},\"rot\":{\"x\":0.0167,\"y\":180.1091,\"z\":0.08}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-26.8742,\"y\":1.6173,\"z\":-5.7185},\"rot\":{\"x\":0.0608,\"y\":60.0126,\"z\":359.9455}},\"abe15f\":{\"lock\":false,\"pos\":{\"x\":-11.9755,\"y\":1.4127,\"z\":-1.5887},\"rot\":{\"x\":0.0799,\"y\":89.9984,\"z\":359.9831}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.7461,\"y\":1.5823,\"z\":-15.0785},\"rot\":{\"x\":359.9197,\"y\":270.0307,\"z\":0.0168}},\"c95e06\":{\"lock\":false,\"pos\":{\"x\":-20.5114,\"y\":1.6094,\"z\":-2.2982},\"rot\":{\"x\":0.0608,\"y\":60.0074,\"z\":359.9455}},\"ccc01a\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"d0f844\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0012,\"z\":0.0803}},\"faa49f\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"ff16db\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.74610066, + "posY": 1.58227813, + "posZ": -15.0785007, + "rotX": 359.919739, + "rotY": 270.029633, + "rotZ": 0.0167962946, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "For the Greater Good", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'For the Greater Good'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bbb70a" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2243, + "posY": 1.6975888, + "posZ": 7.57, + "rotX": 359.9201, + "rotY": 270.0018, + "rotZ": 0.0168736465, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Catacombs", + "Description": "Lodge. Sancturm.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312909, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "021478" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -12.0499, + "posY": 1.59486735, + "posZ": -11.6676, + "rotX": 359.9201, + "rotY": 270.0216, + "rotZ": 0.0168362539, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "Elder Key", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/ttnspKt.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "137468" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -12.0499992, + "posY": 1.60164452, + "posZ": 11.3474007, + "rotX": 359.9201, + "rotY": 269.999329, + "rotZ": 0.0168669969, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "Skull Key", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/stbBxtx.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "156d55" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -12.0500011, + "posY": 1.595961, + "posZ": -7.954401, + "rotX": 359.9201, + "rotY": 269.985535, + "rotZ": 0.0168941543, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "Tablet Key", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/1plY463.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "167691" + }, + { + "Name": "Bag", + "Transform": { + "posX": -11.9228992, + "posY": 1.41357231, + "posZ": 1.62899911, + "rotX": 0.07998585, + "rotY": 89.9981842, + "rotZ": 359.9831, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Member of the Lodge", + "Description": "Press the place button if you are a memebr of the Lodge", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.09943437, + "g": 0.5452962, + "b": 0.06554926 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", + "LuaScriptState": "{\"ml\":{\"397ce4\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"8ea4fd\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6874,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"94fadd\":{\"lock\":false,\"pos\":{\"x\":-2.6893,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0015,\"z\":0.0803}},\"a7a92e\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7664,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"bcd556\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6851,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":270.0008,\"z\":0.0169}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -17.12, + "posY": 1.67707777, + "posZ": -0.03000036, + "rotX": 359.9201, + "rotY": 270.000183, + "rotZ": 0.0168760344, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Gates", + "Description": "Lodge.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312900, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "397ce4" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6766, + "posY": 1.68736589, + "posZ": 3.86, + "rotX": 359.9201, + "rotY": 270.000183, + "rotZ": 0.0168760512, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Cellar", + "Description": "Lodge.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312904, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8ea4fd" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.68929982, + "posY": 1.65499842, + "posZ": -5.04850054, + "rotX": 0.01683298, + "rotY": 180.00148, + "rotZ": 0.08025807, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 312306, + 312305, + 312303 + ], + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -2.68927431, + "posY": 1.6552577, + "posZ": -5.04847956, + "rotX": 0.0183664449, + "rotY": 180.001816, + "rotZ": 0.0660378039, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Four Keys", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312306, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bf8c2e" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.68826079, + "posY": 1.80270958, + "posZ": -5.04899025, + "rotX": 0.339916527, + "rotY": 180.000046, + "rotZ": 0.444971323, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Obtaining the Device", + "Description": "Act 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312305, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "22dea4" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.6885314, + "posY": 1.82276726, + "posZ": -5.04851866, + "rotX": 0.0175138041, + "rotY": 179.9994, + "rotZ": 0.07856168, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Warm Welcome", + "Description": "Act 4", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312303, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0ed938" + } + ], + "GUID": "94fadd" + }, + { + "Name": "Deck", + "Transform": { + "posX": -3.92740035, + "posY": 1.76638019, + "posZ": 5.75720072, + "rotX": 359.919739, + "rotY": 269.999939, + "rotZ": 180.016815, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231812, + 312605, + 312607, + 231810, + 312600, + 231812, + 312604, + 231814, + 312605, + 231810, + 231813, + 231814, + 12120, + 312606, + 312604, + 231814, + 12120, + 12120, + 3628, + 312608, + 3625, + 231811, + 312607, + 3628, + 231810, + 312608, + 3625, + 312606, + 231813 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -18.7109814, + "posY": 1.56981552, + "posZ": -32.18543, + "rotX": 359.91922, + "rotY": 269.979279, + "rotZ": 0.0165627878, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysteries of the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231812, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0eb939" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.92286, + "posY": 1.50916827, + "posZ": 56.0439072, + "rotX": 0.0136107309, + "rotY": 270.046082, + "rotZ": 0.008057649, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Call to Order", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312605, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "38256e" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.68224, + "posY": 1.5169822, + "posZ": 55.38902, + "rotX": 0.0147958156, + "rotY": 270.073822, + "rotZ": 0.009050958, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Beneath the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312607, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "28d66c" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.6574612, + "posY": 1.71596491, + "posZ": -31.9956455, + "rotX": 359.918976, + "rotY": 269.979736, + "rotZ": 0.0163928568, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Neophyte", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231810, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8dac94" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.8018761, + "posY": 1.4921149, + "posZ": 55.66741, + "rotX": 0.01833514, + "rotY": 270.051147, + "rotZ": 0.00700765243, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Jailor", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312600, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "817b5a" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.6118813, + "posY": 1.71404207, + "posZ": -32.3841057, + "rotX": 359.91098, + "rotY": 269.979034, + "rotZ": 0.0195768736, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysteries of the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231812, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7870f6" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.59957, + "posY": 1.5069766, + "posZ": 54.19255, + "rotX": 0.02180111, + "rotY": 269.9969, + "rotZ": 8.087906, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Knight of the Outer Void", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312604, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d43918" + }, + { + "Name": "Card", + "Transform": { + "posX": -21.0152721, + "posY": 1.57281208, + "posZ": -32.7783356, + "rotX": 359.9176, + "rotY": 269.977783, + "rotZ": 0.01638736, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "81dc7a" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.581337, + "posY": 1.51521659, + "posZ": 55.96411, + "rotX": 0.0217962228, + "rotY": 270.018, + "rotZ": 0.00204580254, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Call to Order", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312605, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "024771" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.5851078, + "posY": 1.73144269, + "posZ": -32.35143, + "rotX": 359.919037, + "rotY": 269.979156, + "rotZ": 0.01716643, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Neophyte", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231810, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "408a82" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.8834572, + "posY": 1.89827907, + "posZ": -33.5683937, + "rotX": 0.110509835, + "rotY": 269.976044, + "rotZ": 0.334469885, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Evil Past", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231813, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ab69b8" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.7263336, + "posY": 1.754926, + "posZ": -33.80658, + "rotX": 0.0413828529, + "rotY": 269.9769, + "rotZ": 0.3666429, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9cb625" + }, + { + "Name": "Card", + "Transform": { + "posX": 114.991905, + "posY": 1.59937644, + "posZ": 1.31244183, + "rotX": 1.97711754, + "rotY": 270.070251, + "rotZ": 359.990356, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "61e841" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.9872169, + "posY": 1.50186431, + "posZ": 56.3765068, + "rotX": 0.0126513187, + "rotY": 270.052246, + "rotZ": 359.959534, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Expulsion", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312606, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9aa5ab" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.2589569, + "posY": 1.66137767, + "posZ": 55.45443, + "rotX": 0.0254535563, + "rotY": 270.093658, + "rotZ": 353.280518, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Knight of the Outer Void", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312604, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "57cee5" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.54692, + "posY": 1.60918021, + "posZ": -33.3808479, + "rotX": 359.9352, + "rotY": 269.982361, + "rotZ": 0.376713872, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0a13d0" + }, + { + "Name": "Card", + "Transform": { + "posX": 115.318665, + "posY": 1.5414474, + "posZ": 1.587292, + "rotX": 359.989929, + "rotY": 270.000031, + "rotZ": 359.9876, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1921c5" + }, + { + "Name": "Card", + "Transform": { + "posX": 115.309677, + "posY": 1.40331125, + "posZ": 1.5845021, + "rotX": 359.987427, + "rotY": 270.0, + "rotZ": 359.984558, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e0f4c0" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.5096054, + "posY": 1.40344727, + "posZ": 13.9449472, + "rotX": 359.987427, + "rotY": 269.999969, + "rotZ": 359.984558, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Locked Door", + "Description": "Obstacle.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3628, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9449d7" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.8122177, + "posY": 1.4996053, + "posZ": 55.3112869, + "rotX": 0.013215567, + "rotY": 270.036, + "rotZ": -0.00218945043, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mark of the Order", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312608, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "323982" + }, + { + "Name": "Card", + "Transform": { + "posX": 98.78452, + "posY": 1.40295327, + "posZ": 16.366806, + "rotX": 359.987427, + "rotY": 269.999817, + "rotZ": 359.984558, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysterious Chanting", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3625, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6f5b7b" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.7752514, + "posY": 1.71879411, + "posZ": -32.00056, + "rotX": 359.919342, + "rotY": 269.979553, + "rotZ": 0.0157596618, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Keeper of Secrets", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231811, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3761ce" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.6490021, + "posY": 1.50323951, + "posZ": 55.88405, + "rotX": 0.02039161, + "rotY": 270.062134, + "rotZ": 0.00326434616, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Beneath the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312607, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "abf303" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.57202, + "posY": 1.54880774, + "posZ": 13.6603928, + "rotX": 359.990143, + "rotY": 270.0007, + "rotZ": 359.987, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Locked Door", + "Description": "Obstacle.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3628, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1340ff" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.3490829, + "posY": 1.71755159, + "posZ": -31.918066, + "rotX": 359.918579, + "rotY": 269.9797, + "rotZ": 0.0158215724, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Neophyte", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231810, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "525275" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.8264847, + "posY": 1.35445035, + "posZ": 55.52848, + "rotX": 0.0209392067, + "rotY": 270.0056, + "rotZ": 0.01440078, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mark of the Order", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312608, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8cc16b" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.2046661, + "posY": 1.54923761, + "posZ": 15.9180088, + "rotX": 359.989929, + "rotY": 270.0, + "rotZ": 359.98764, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysterious Chanting", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3625, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "df668b" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.99259, + "posY": 1.5041101, + "posZ": 55.5351257, + "rotX": 0.00386153185, + "rotY": 270.070923, + "rotZ": 0.00110510457, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Expulsion", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312606, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b3da23" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.7343235, + "posY": 1.86165559, + "posZ": -33.3503036, + "rotX": 359.785339, + "rotY": 269.9796, + "rotZ": 0.07815084, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Evil Past", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231813, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "976fd8" + } + ], + "GUID": "a7a92e" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765, + "posY": 1.68510139, + "posZ": -3.83000088, + "rotX": 359.9201, + "rotY": 270.000763, + "rotZ": 0.0168752223, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lobby", + "Description": "Lodge.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312902, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bcd556" + } + ], + "GUID": "38a5f7" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -20.3545, + "posY": 1.6105032, + "posZ": 2.10519981, + "rotX": 0.0776257738, + "rotY": 120.015007, + "rotZ": 0.0253221821, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "58eefe", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -12.0499992, + "posY": 1.60052359, + "posZ": 7.5408, + "rotX": 359.9201, + "rotY": 269.989319, + "rotZ": 0.0168809984, + "scaleX": 0.81, + "scaleY": 1.0, + "scaleZ": 0.81 + }, + "Nickname": "Cultist Key", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/VzhJJaH.png", + "ImageSecondaryURL": "", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 2, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "604398" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -26.8667, + "posY": 1.62057126, + "posZ": 5.4575, + "rotX": 359.922363, + "rotY": 299.994, + "rotZ": 359.9747, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6276bc", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -23.6765, + "posY": 1.6145066, + "posZ": -0.0299000181, + "rotX": 0.0167197026, + "rotY": 180.108963, + "rotZ": 0.07997131, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": false, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "698fc7", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -26.8742, + "posY": 1.61729085, + "posZ": -5.7185, + "rotX": 0.0607671142, + "rotY": 60.0127335, + "rotZ": 359.945465, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7234af", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Bag", + "Transform": { + "posX": -11.9754972, + "posY": 1.412698, + "posZ": -1.58870077, + "rotX": 0.07998205, + "rotY": 89.99784, + "rotZ": 359.9831, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Not a Member of the Lodge", + "Description": "Press the place button if you are NOT a memebr of the Lodge", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 0.0, + "b": 0.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", + "LuaScriptState": "{\"ml\":{\"1c2dfe\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":0.0169}},\"8b8b53\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0009,\"z\":0.0803}},\"8bae65\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7664,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"cdae8b\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9813,\"z\":0.0169}},\"fa6a29\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":0.0169}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -23.6765, + "posY": 1.68396187, + "posZ": -7.70000029, + "rotX": 359.9201, + "rotY": 269.996063, + "rotZ": 0.0168817546, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lobby", + "Description": "Lodge.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312903, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1c2dfe" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.6884, + "posY": 1.65499711, + "posZ": -5.0485, + "rotX": 0.0168338176, + "rotY": 180.000931, + "rotZ": 0.08025811, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 312306, + 312305, + 312304 + ], + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 29.3551464, + "posY": 1.34770918, + "posZ": 53.0110168, + "rotX": 0.01734805, + "rotY": 180.00116, + "rotZ": 359.976349, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Four Keys", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312306, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bf8c2e" + }, + { + "Name": "Card", + "Transform": { + "posX": 29.111536, + "posY": 1.49238145, + "posZ": 52.92199, + "rotX": 0.03450147, + "rotY": 179.999268, + "rotZ": 359.9507, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Obtaining the Device", + "Description": "Act 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312305, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "22dea4" + }, + { + "Name": "Card", + "Transform": { + "posX": 58.805706, + "posY": 3.362703, + "posZ": 32.9439125, + "rotX": 0.0167736318, + "rotY": 180.003647, + "rotZ": 359.9792, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Infiltrating the Lodge", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312304, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0de052" + } + ], + "GUID": "8b8b53" + }, + { + "Name": "Deck", + "Transform": { + "posX": -3.92770028, + "posY": 1.76638055, + "posZ": 5.75720072, + "rotX": 359.919739, + "rotY": 270.0, + "rotZ": 180.016815, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 3628, + 312606, + 312608, + 312605, + 312605, + 231814, + 312607, + 12120, + 312608, + 3625, + 3623, + 3625, + 312603, + 312601, + 312603, + 231812, + 231814, + 231814, + 3623, + 3623, + 231813, + 3628, + 3624, + 231812, + 312607, + 12120, + 231813, + 12120, + 312606 + ], + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 99.57202, + "posY": 1.54880774, + "posZ": 13.6603928, + "rotX": 359.990143, + "rotY": 270.0007, + "rotZ": 359.987, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Locked Door", + "Description": "Obstacle.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3628, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1340ff" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.9872169, + "posY": 1.50186431, + "posZ": 56.3765068, + "rotX": 0.0126513187, + "rotY": 270.052246, + "rotZ": 359.959534, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Expulsion", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312606, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9aa5ab" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.8264847, + "posY": 1.35445035, + "posZ": 55.52848, + "rotX": 0.0209392067, + "rotY": 270.0056, + "rotZ": 0.01440078, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mark of the Order", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312608, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8cc16b" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.581337, + "posY": 1.51521659, + "posZ": 55.96411, + "rotX": 0.0217962228, + "rotY": 270.018, + "rotZ": 0.00204580254, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Call to Order", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312605, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "024771" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.92286, + "posY": 1.50916827, + "posZ": 56.0439072, + "rotX": 0.0136107309, + "rotY": 270.046082, + "rotZ": 0.008057649, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Call to Order", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312605, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "38256e" + }, + { + "Name": "Card", + "Transform": { + "posX": -21.0152721, + "posY": 1.57281208, + "posZ": -32.7783356, + "rotX": 359.9176, + "rotY": 269.977783, + "rotZ": 0.01638736, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "81dc7a" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.68224, + "posY": 1.5169822, + "posZ": 55.38902, + "rotX": 0.0147958156, + "rotY": 270.073822, + "rotZ": 0.009050958, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Beneath the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312607, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "28d66c" + }, + { + "Name": "Card", + "Transform": { + "posX": 115.318665, + "posY": 1.5414474, + "posZ": 1.587292, + "rotX": 359.989929, + "rotY": 270.000031, + "rotZ": 359.9876, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1921c5" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.8122177, + "posY": 1.4996053, + "posZ": 55.3112869, + "rotX": 0.013215567, + "rotY": 270.036, + "rotZ": -0.00218945043, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mark of the Order", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312608, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "323982" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.2046661, + "posY": 1.54923761, + "posZ": 15.9180088, + "rotX": 359.989929, + "rotY": 270.0, + "rotZ": 359.98764, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysterious Chanting", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3625, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "df668b" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.0756, + "posY": 1.55269325, + "posZ": 16.03813, + "rotX": 359.989929, + "rotY": 270.0, + "rotZ": 359.9876, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Acolyte", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3623, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4072d7" + }, + { + "Name": "Card", + "Transform": { + "posX": 98.78452, + "posY": 1.40295327, + "posZ": 16.366806, + "rotX": 359.987427, + "rotY": 269.999817, + "rotZ": 359.984558, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysterious Chanting", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3625, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6f5b7b" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.4807549, + "posY": 1.51138783, + "posZ": 55.3559532, + "rotX": 0.007093775, + "rotY": 270.07132, + "rotZ": 0.00157490221, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Knight of the Inner Circle", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312603, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "51bd26" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.67595, + "posY": 1.50168812, + "posZ": 55.0495148, + "rotX": 0.009487833, + "rotY": 270.060852, + "rotZ": 0.00471286848, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cell Keeper", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312601, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d47a01" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.3978958, + "posY": 1.52107108, + "posZ": 55.82321, + "rotX": 0.0117413532, + "rotY": 270.062164, + "rotZ": 0.00767201, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Knight of the Inner Circle", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312603, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "499347" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.6118813, + "posY": 1.71404207, + "posZ": -32.3841057, + "rotX": 359.91098, + "rotY": 269.979034, + "rotZ": 0.0195768736, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysteries of the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231812, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7870f6" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.54692, + "posY": 1.60918021, + "posZ": -33.3808479, + "rotX": 359.9352, + "rotY": 269.982361, + "rotZ": 0.376713872, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0a13d0" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.7263336, + "posY": 1.754926, + "posZ": -33.80658, + "rotX": 0.0413828529, + "rotY": 269.9769, + "rotZ": 0.3666429, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9cb625" + }, + { + "Name": "Card", + "Transform": { + "posX": 98.97962, + "posY": 1.55247211, + "posZ": 16.3414173, + "rotX": 359.99057, + "rotY": 269.9967, + "rotZ": 359.984833, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Acolyte", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3623, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c70e63" + }, + { + "Name": "Card", + "Transform": { + "posX": 98.93172, + "posY": 1.556378, + "posZ": 15.9665985, + "rotX": 359.989929, + "rotY": 269.999969, + "rotZ": 359.98764, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Acolyte", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3623, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c70e63" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.8834572, + "posY": 1.89827907, + "posZ": -33.5683937, + "rotX": 0.110509835, + "rotY": 269.976044, + "rotZ": 0.334469885, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Evil Past", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231813, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ab69b8" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.5096054, + "posY": 1.40344727, + "posZ": 13.9449472, + "rotX": 359.987427, + "rotY": 269.999969, + "rotZ": 359.984558, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Locked Door", + "Description": "Obstacle.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3628, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9449d7" + }, + { + "Name": "Card", + "Transform": { + "posX": 98.45666, + "posY": 1.55439174, + "posZ": 16.9464512, + "rotX": 1.20685, + "rotY": 269.9761, + "rotZ": 357.846649, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wizard of the Order", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3624, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "159f90" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.7109814, + "posY": 1.56981552, + "posZ": -32.18543, + "rotX": 359.91922, + "rotY": 269.979279, + "rotZ": 0.0165627878, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysteries of the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231812, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0eb939" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.6490021, + "posY": 1.50323951, + "posZ": 55.88405, + "rotX": 0.02039161, + "rotY": 270.062134, + "rotZ": 0.00326434616, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Beneath the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312607, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "abf303" + }, + { + "Name": "Card", + "Transform": { + "posX": 114.991905, + "posY": 1.59937644, + "posZ": 1.31244183, + "rotX": 1.97711754, + "rotY": 270.070251, + "rotZ": 359.990356, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "61e841" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.7343235, + "posY": 1.86165559, + "posZ": -33.3503036, + "rotX": 359.785339, + "rotY": 269.9796, + "rotZ": 0.07815084, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Evil Past", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231813, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "976fd8" + }, + { + "Name": "Card", + "Transform": { + "posX": 115.309677, + "posY": 1.40331125, + "posZ": 1.5845021, + "rotX": 359.987427, + "rotY": 270.0, + "rotZ": 359.984558, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e0f4c0" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.99259, + "posY": 1.5041101, + "posZ": 55.5351257, + "rotX": 0.00386153185, + "rotY": 270.070923, + "rotZ": 0.00110510457, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Expulsion", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312606, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b3da23" + } + ], + "GUID": "8bae65" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6766, + "posY": 1.68845844, + "posZ": 7.569999, + "rotX": 359.9201, + "rotY": 269.981262, + "rotZ": 0.0169023387, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Cellar", + "Description": "Lodge.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312905, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "cdae8b" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.1196938, + "posY": 1.67707729, + "posZ": -0.0300435685, + "rotX": 359.9201, + "rotY": 269.999969, + "rotZ": 0.0168758258, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Gates", + "Description": "Lodge.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312901, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fa6a29" + } + ], + "GUID": "abe15f" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.74609971, + "posY": 1.582278, + "posZ": -15.0785027, + "rotX": 359.919739, + "rotY": 270.0307, + "rotZ": 0.01679451, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "XXX", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'For the Greater Good'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bbb70a" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -20.5114, + "posY": 1.60942543, + "posZ": -2.2982, + "rotX": 0.0607621633, + "rotY": 60.00757, + "rotZ": 359.945465, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c95e06", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2243, + "posY": 1.69309235, + "posZ": -7.70000124, + "rotX": 359.9201, + "rotY": 270.000427, + "rotZ": 0.0168756675, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lounge", + "Description": "Lodge.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312906, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ccc01a" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.7246, + "posY": 1.66397727, + "posZ": 0.3733003, + "rotX": 0.0168331563, + "rotY": 180.001236, + "rotZ": 0.08025831, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agenda deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 312302, + 312301 + ], + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 45.7921066, + "posY": 1.35522616, + "posZ": 57.9124527, + "rotX": 0.00886662, + "rotY": 180.016556, + "rotZ": 359.978271, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ends and Means", + "Description": "Agenda 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312302, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "91d5c3" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.5433846, + "posY": 1.50018764, + "posZ": 58.1528854, + "rotX": 359.983, + "rotY": 180.051559, + "rotZ": 359.9546, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "THE HIEROPHANT · V", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312301, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "25ab0b" + } + ], + "GUID": "d0f844" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.95580029, + "posY": 1.65564787, + "posZ": -10.4412012, + "rotX": 359.919739, + "rotY": 269.999969, + "rotZ": 0.0168410372, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "For the Greater Good", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312400, + "SidewaysCard": false, + "CustomDeck": { + "3124": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "faa49f" + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 1.6960007, + "posY": 1.55831718, + "posZ": 14.2787027, + "rotX": 359.955139, + "rotY": 224.998, + "rotZ": 0.06867098, + "scaleX": 2.0, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "Nickname": "Set-aside", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.02148666, + "g": 0.00100758043, + "b": 0.02148666 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", + "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 1, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 44.1109619, + "posY": 3.41935182, + "posZ": 76.14493, + "rotX": 0.0209766664, + "rotY": 270.0234, + "rotZ": 0.01684997, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Summoned Beast", + "Description": "Monster. Silver Twilight. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312602, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0f6a54" + }, + { + "Name": "Card", + "Transform": { + "posX": 44.60985, + "posY": 3.43086624, + "posZ": 76.83246, + "rotX": 0.02080699, + "rotY": 270.0234, + "rotZ": 0.016770862, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nathan Wick", + "Description": "Master of Indoctrination", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312407, + "SidewaysCard": false, + "CustomDeck": { + "3124": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7e2ff5" + }, + { + "Name": "Card", + "Transform": { + "posX": 45.06623, + "posY": 3.43073, + "posZ": 75.7925339, + "rotX": 0.0207968019, + "rotY": 269.999878, + "rotZ": 0.01679017, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "August Lindquist", + "Description": "Elegant and Elusive", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312509, + "SidewaysCard": false, + "CustomDeck": { + "3125": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d6fa34" + }, + { + "Name": "Card", + "Transform": { + "posX": 44.3272438, + "posY": 3.41513848, + "posZ": 76.60902, + "rotX": 0.0209716149, + "rotY": 269.999939, + "rotZ": 0.0168484487, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Puzzle Box", + "Description": "Mysterious Device", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312510, + "SidewaysCard": false, + "CustomDeck": { + "3125": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e79173" + }, + { + "Name": "Deck", + "Transform": { + "posX": 1.69642651, + "posY": 3.72650981, + "posZ": 14.2788391, + "rotX": 359.948151, + "rotY": 224.998062, + "rotZ": 0.0583182424, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Locations", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 312912, + 312911, + 312910, + 312907, + 312908 + ], + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -36.77313, + "posY": 1.70666313, + "posZ": 7.569972, + "rotX": 359.920624, + "rotY": 269.999847, + "rotZ": 0.0130288182, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Inner Sanctum", + "Description": "Lodge. Sanctum.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312912, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d76c9f" + }, + { + "Name": "Card", + "Transform": { + "posX": -36.7731857, + "posY": 1.85651457, + "posZ": 7.570001, + "rotX": 359.910828, + "rotY": 269.9998, + "rotZ": 0.0123853553, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Sanctum Doorway", + "Description": "Lodge. Sanctum.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312911, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4da6c3" + }, + { + "Name": "Card", + "Transform": { + "posX": -36.7732048, + "posY": 1.8740865, + "posZ": 7.56998873, + "rotX": 359.917938, + "rotY": 269.999756, + "rotZ": 0.0161033664, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Sanctum Doorway", + "Description": "Lodge. Sanctum.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312910, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "112a15" + }, + { + "Name": "Card", + "Transform": { + "posX": -36.77333, + "posY": 1.6999402, + "posZ": -15.2800035, + "rotX": 359.920532, + "rotY": 269.997162, + "rotZ": 0.0134736821, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Vault", + "Description": "Lodge.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312907, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "dcf02a" + }, + { + "Name": "Card", + "Transform": { + "posX": -36.7733269, + "posY": 1.84977758, + "posZ": -15.2799911, + "rotX": 359.9311, + "rotY": 269.9995, + "rotZ": 0.00297404267, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Library", + "Description": "Lodge.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312908, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5e3b52" + } + ], + "GUID": "eba741" + } + ], + "PhysicsMaterial": { + "StaticFriction": 0.6, + "DynamicFriction": 0.6, + "Bounciness": 0.0, + "FrictionCombine": 0, + "BounceCombine": 0 + }, + "Rigidbody": { + "Mass": 1.375, + "Drag": 5.0, + "AngularDrag": 5.0, + "UseGravity": true + }, + "GUID": "ff16db" + } + ], + "GUID": "a61b48", + "AttachedDecals": [ + { + "Transform": { + "posX": -0.0021877822, + "posY": -0.08963572, + "posZ": -0.00288731651, + "rotX": 270.0, + "rotY": 359.869568, + "rotZ": 0.0, + "scaleX": 2.00000215, + "scaleY": 2.00000238, + "scaleZ": 2.00000262 + }, + "CustomDecal": { + "Name": "dunwich_back", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", + "Size": 7.4 + } + } + ] + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 12.2499027, + "posY": 1.46089375, + "posZ": -12.0136013, + "rotX": 359.920135, + "rotY": 270.0, + "rotZ": 0.0168742519, + "scaleX": 2.21, + "scaleY": 0.46, + "scaleZ": 2.42 + }, + "Nickname": "6: Union and Disillusion", + "Description": "The Circle Undone", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/786356000879748596/DA7C8528E79ECD42DF9410CCC3B43692F95B1853/", + "NormalURL": "", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", + "LuaScriptState": "{\"ml\":{\"01b2f4\":{\"lock\":false,\"pos\":{\"x\":-12.3725,\"y\":1.4107,\"z\":-10.0935},\"rot\":{\"x\":359.9825,\"y\":359.5721,\"z\":359.9202}},\"15f544\":{\"lock\":false,\"pos\":{\"x\":0.6017,\"y\":1.3942,\"z\":-4.6511},\"rot\":{\"x\":359.9832,\"y\":-0.0043,\"z\":359.9197}},\"2c3cbf\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7045,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.001,\"z\":0.0169}},\"308386\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.8037,\"z\":5.757},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"3fe126\":{\"lock\":false,\"pos\":{\"x\":-3.9971,\"y\":1.5826,\"z\":-15.0596},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":0.0168}},\"4d8a79\":{\"lock\":false,\"pos\":{\"x\":-12.0414,\"y\":1.4162,\"z\":10.1505},\"rot\":{\"x\":359.9826,\"y\":359.6253,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.7179,\"y\":1.6285,\"z\":0.059},\"rot\":{\"x\":359.9201,\"y\":269.9936,\"z\":0.0169}},\"7cd1b4\":{\"lock\":false,\"pos\":{\"x\":-12.0817,\"y\":1.6749,\"z\":13.617},\"rot\":{\"x\":359.9201,\"y\":270.0193,\"z\":0.0168}},\"976ab3\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6959,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9981,\"z\":0.0687}},\"a92959\":{\"lock\":false,\"pos\":{\"x\":-12.2766,\"y\":1.4116,\"z\":-6.9025},\"rot\":{\"x\":359.9826,\"y\":359.6471,\"z\":359.9201}},\"c9aba5\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0117,\"z\":0.0169}},\"de8bb6\":{\"lock\":false,\"pos\":{\"x\":-5.9501,\"y\":1.6583,\"z\":-4.9413},\"rot\":{\"x\":0.0803,\"y\":89.991,\"z\":359.9832}},\"df4773\":{\"lock\":false,\"pos\":{\"x\":-12.0606,\"y\":1.4153,\"z\":6.9461},\"rot\":{\"x\":359.9826,\"y\":359.6064,\"z\":359.9201}},\"e94e6a\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180.0048,\"z\":0.0799}},\"f919fb\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"ff9ef7\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180.0049,\"z\":0.0799}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Bag", + "Transform": { + "posX": -12.3724995, + "posY": 1.41074646, + "posZ": -10.0935, + "rotX": 359.9825, + "rotY": 359.572144, + "rotZ": 359.920166, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Jerome Davids", + "Description": "Check your campaign log to see which assets are used for this scenario", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.7961671, + "g": 0.6238528, + "b": 0.0485465154 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 16.5156631, + "posY": 3.39582157, + "posZ": 62.1980438, + "rotX": 1.05251372, + "rotY": 270.039734, + "rotZ": 2.95118141, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Jerome Davids", + "Description": "In Way Over His Head", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312512, + "SidewaysCard": false, + "CustomDeck": { + "3125": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d99735" + }, + { + "Name": "Card", + "Transform": { + "posX": 16.59595, + "posY": 3.42349625, + "posZ": 61.9471664, + "rotX": 0.130632967, + "rotY": 270.000671, + "rotZ": 0.860997736, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Jerome Davids", + "Description": "Starved for Answers", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312420, + "SidewaysCard": false, + "CustomDeck": { + "3124": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "03d161" + } + ], + "GUID": "01b2f4" + }, + { + "Name": "Bag", + "Transform": { + "posX": 0.601700842, + "posY": 1.39421773, + "posZ": -4.6511, + "rotX": 359.983154, + "rotY": -0.00436139246, + "rotZ": 359.919678, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Choose the appropiate act deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.0, + "g": 0.0, + "b": 0.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Deck", + "Transform": { + "posX": 0.23602137, + "posY": 3.72991681, + "posZ": -5.026141, + "rotX": 0.331751645, + "rotY": 179.979309, + "rotZ": 359.427246, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act deck 4", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 312318, + 312316, + 312312, + 312311 + ], + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 35.17768, + "posY": 1.35963142, + "posZ": 86.7354, + "rotX": 0.0178930666, + "rotY": 179.993759, + "rotZ": 359.972076, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Broken Rite", + "Description": "Act 4", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312318, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "69cb27" + }, + { + "Name": "Card", + "Transform": { + "posX": 35.54324, + "posY": 1.52220082, + "posZ": 86.34647, + "rotX": 0.0235369857, + "rotY": 179.995529, + "rotZ": 359.978729, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Beyond the Mist (v.iv)", + "Description": "Act 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312316, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "43e32c" + }, + { + "Name": "Card", + "Transform": { + "posX": 42.7906075, + "posY": 1.51721013, + "posZ": 87.14333, + "rotX": 0.01583153, + "rotY": 179.994324, + "rotZ": 359.977234, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fated Souls", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312312, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5a6ee0" + }, + { + "Name": "Card", + "Transform": { + "posX": 42.752037, + "posY": 1.52329528, + "posZ": 86.70215, + "rotX": 0.01787383, + "rotY": 180.017426, + "rotZ": 359.96228, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Unvisited Isle", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312311, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "105a09" + } + ], + "GUID": "46a22b" + }, + { + "Name": "Deck", + "Transform": { + "posX": 0.998252451, + "posY": 3.73006868, + "posZ": -4.334121, + "rotX": 359.6625, + "rotY": 179.99382, + "rotZ": 0.652902544, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act deck 3", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 312318, + 312315, + 312312, + 312311 + ], + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 35.17768, + "posY": 1.35963142, + "posZ": 86.7354, + "rotX": 0.0178930666, + "rotY": 179.993759, + "rotZ": 359.972076, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Broken Rite", + "Description": "Act 4", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312318, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "69cb27" + }, + { + "Name": "Card", + "Transform": { + "posX": 35.1743622, + "posY": 1.50851762, + "posZ": 86.41296, + "rotX": 0.01734771, + "rotY": 180.002411, + "rotZ": 359.974762, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Beyond the Mist (v.iii)", + "Description": "Act 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312315, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7a14df" + }, + { + "Name": "Card", + "Transform": { + "posX": 42.7906075, + "posY": 1.51721013, + "posZ": 87.14333, + "rotX": 0.01583153, + "rotY": 179.994324, + "rotZ": 359.977234, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fated Souls", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312312, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5a6ee0" + }, + { + "Name": "Card", + "Transform": { + "posX": 42.752037, + "posY": 1.52329528, + "posZ": 86.70215, + "rotX": 0.01787383, + "rotY": 180.017426, + "rotZ": 359.96228, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Unvisited Isle", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312311, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "105a09" + } + ], + "GUID": "95e124" + }, + { + "Name": "Deck", + "Transform": { + "posX": 0.998232961, + "posY": 3.71798468, + "posZ": 0.3140087, + "rotX": 0.0168787017, + "rotY": 179.993851, + "rotZ": 0.07989697, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act deck 2", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 312318, + 312314, + 312312, + 312311 + ], + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 35.17768, + "posY": 1.35963142, + "posZ": 86.7354, + "rotX": 0.0178930666, + "rotY": 179.993759, + "rotZ": 359.972076, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Broken Rite", + "Description": "Act 4", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312318, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "69cb27" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.8555021, + "posY": 2.55597639, + "posZ": -52.9200325, + "rotX": 0.0168702248, + "rotY": 180.0, + "rotZ": 0.0798789, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Beyond the Mist (v.ii)", + "Description": "Act 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312314, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e2e22d" + }, + { + "Name": "Card", + "Transform": { + "posX": 42.7906075, + "posY": 1.51721013, + "posZ": 87.14333, + "rotX": 0.01583153, + "rotY": 179.994324, + "rotZ": 359.977234, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fated Souls", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312312, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5a6ee0" + }, + { + "Name": "Card", + "Transform": { + "posX": 42.752037, + "posY": 1.52329528, + "posZ": 86.70215, + "rotX": 0.01787383, + "rotY": 180.017426, + "rotZ": 359.96228, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Unvisited Isle", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312311, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "105a09" + } + ], + "GUID": "4bfab7" + }, + { + "Name": "Deck", + "Transform": { + "posX": 0.336339772, + "posY": 3.73190331, + "posZ": -4.35674524, + "rotX": 359.7062, + "rotY": 180.004379, + "rotZ": 359.528473, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act deck 1", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 312317, + 312313, + 312312, + 312311 + ], + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 35.28919, + "posY": 1.50461233, + "posZ": 86.5776749, + "rotX": 0.03455867, + "rotY": 179.992249, + "rotZ": 359.97522, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Binding Rite", + "Description": "Act 4", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312317, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8be145" + }, + { + "Name": "Card", + "Transform": { + "posX": 43.1273766, + "posY": 1.51220691, + "posZ": 86.5578461, + "rotX": 0.011362901, + "rotY": 180.0067, + "rotZ": 359.972015, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Beyond the Mist (v.i)", + "Description": "Act 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312313, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ea642f" + }, + { + "Name": "Card", + "Transform": { + "posX": 42.7906075, + "posY": 1.51721013, + "posZ": 87.14333, + "rotX": 0.01583153, + "rotY": 179.994324, + "rotZ": 359.977234, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fated Souls", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312312, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5a6ee0" + }, + { + "Name": "Card", + "Transform": { + "posX": 42.752037, + "posY": 1.52329528, + "posZ": 86.70215, + "rotX": 0.01787383, + "rotY": 180.017426, + "rotZ": 359.96228, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Unvisited Isle", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312311, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "105a09" + } + ], + "GUID": "352387" + } + ], + "GUID": "15f544" + }, + { + "Name": "Card", + "Transform": { + "posX": -36.7731, + "posY": 1.70448267, + "posZ": -0.0301005617, + "rotX": 359.9201, + "rotY": 270.001038, + "rotZ": 0.0168748442, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Miskatonic River", + "Description": "River.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312913, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "2c3cbf" + }, + { + "Name": "Deck", + "Transform": { + "posX": -3.927512, + "posY": 1.79835689, + "posZ": 5.75700426, + "rotX": 359.919739, + "rotY": 270.000061, + "rotZ": 180.016815, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231823, + 231816, + 231816, + 231821, + 231820, + 231822, + 312615, + 231823, + 12121, + 312618, + 312619, + 312617, + 231817, + 12120, + 12122, + 231823, + 312616, + 312620, + 231817, + 12122, + 312616, + 231822, + 312619, + 312616, + 231820, + 12120, + 312618, + 231815, + 312617, + 312615, + 12121, + 12120, + 231822, + 231821, + 312620 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -23.46502, + "posY": 2.16774321, + "posZ": -34.8072357, + "rotX": 0.232217044, + "rotY": 270.777466, + "rotZ": 353.199249, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fbcb9f" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.9589443, + "posY": 1.57623374, + "posZ": -40.001133, + "rotX": 359.919617, + "rotY": 269.9781, + "rotZ": 0.0166504774, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shadow Hound", + "Description": "Monster. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231816, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c9136e" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.7281628, + "posY": 1.7203182, + "posZ": -40.06545, + "rotX": 359.911, + "rotY": 269.9779, + "rotZ": 0.0166180339, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shadow Hound", + "Description": "Monster. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231816, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9d53c1" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.9579411, + "posY": 1.72431993, + "posZ": -29.8048172, + "rotX": 359.8922, + "rotY": 269.971619, + "rotZ": 0.06810118, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shapes in the Mist", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231821, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3c04e0" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.91995, + "posY": 1.77833688, + "posZ": -29.84826, + "rotX": 359.884155, + "rotY": 269.9732, + "rotZ": 0.074736394, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Realm of Torment", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231820, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "278e46" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.27985, + "posY": 1.99979043, + "posZ": -34.2781525, + "rotX": 359.187378, + "rotY": 270.910339, + "rotZ": 355.236023, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "43ba03" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.5409679, + "posY": 1.46492875, + "posZ": 66.74556, + "rotX": 0.02031056, + "rotY": 270.011963, + "rotZ": 0.01745984, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Spectral Raven", + "Description": "Creature. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312615, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0f6a54" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.7152367, + "posY": 1.91512489, + "posZ": -32.59262, + "rotX": 359.910583, + "rotY": 269.364441, + "rotZ": 341.912537, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ef132d" + }, + { + "Name": "Card", + "Transform": { + "posX": 114.196693, + "posY": 1.5660888, + "posZ": 0.6905602, + "rotX": 0.678696752, + "rotY": 270.054779, + "rotZ": 1.15300965, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Crypt Chill", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12121, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b78c3b" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.7520781, + "posY": 1.50085175, + "posZ": 66.91246, + "rotX": 0.018156765, + "rotY": 270.0284, + "rotZ": 0.02139155, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Psychopomp's Song", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312618, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "292724" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.6781693, + "posY": 1.34609175, + "posZ": 66.53277, + "rotX": 0.0244889967, + "rotY": 270.024231, + "rotZ": 0.01303638, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Death Approaches", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312619, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d4452d" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.738122, + "posY": 1.49504566, + "posZ": 66.4728546, + "rotX": 0.016593812, + "rotY": 270.0216, + "rotZ": 0.0190968849, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Eager for Death", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312617, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1f2790" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.3439846, + "posY": 1.72281778, + "posZ": -40.31694, + "rotX": 359.918823, + "rotY": 269.9783, + "rotZ": 0.01890598, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers in the Dark", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231817, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c4c440" + }, + { + "Name": "Card", + "Transform": { + "posX": 115.318665, + "posY": 1.5414474, + "posZ": 1.587292, + "rotX": 359.989929, + "rotY": 270.000031, + "rotZ": 359.9876, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1921c5" + }, + { + "Name": "Card", + "Transform": { + "posX": 114.345848, + "posY": 1.40365446, + "posZ": 1.09680057, + "rotX": 359.987427, + "rotY": 270.0, + "rotZ": 359.984558, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Obscuring Fog", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12122, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "356046" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.6707478, + "posY": 1.76058781, + "posZ": -33.23441, + "rotX": 359.465271, + "rotY": 269.459351, + "rotZ": 9.029153, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "717c42" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.6381521, + "posY": 1.53795457, + "posZ": 66.5653152, + "rotX": 0.02065301, + "rotY": 270.030853, + "rotZ": 0.01686186, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whippoorwill", + "Description": "Creature.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312616, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "582874" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.6993036, + "posY": 1.49622345, + "posZ": 67.3393555, + "rotX": 0.0255488418, + "rotY": 270.0217, + "rotZ": 359.961548, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Marked for Death", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312620, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d21848" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.812706, + "posY": 1.72420788, + "posZ": -39.9615822, + "rotX": 359.9189, + "rotY": 269.9785, + "rotZ": 0.0168172251, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispers in the Dark", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231817, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "aa8c0e" + }, + { + "Name": "Card", + "Transform": { + "posX": 114.314957, + "posY": 1.54512763, + "posZ": 0.6048646, + "rotX": 359.989929, + "rotY": 270.0, + "rotZ": 359.98764, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Obscuring Fog", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12122, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "03a265" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.764946, + "posY": 1.49348664, + "posZ": 66.5689, + "rotX": 0.0188208539, + "rotY": 270.023376, + "rotZ": 0.0156058017, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whippoorwill", + "Description": "Creature.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312616, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "582874" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.3842, + "posY": 2.1039958, + "posZ": -34.9055138, + "rotX": 359.182831, + "rotY": 270.902466, + "rotZ": 355.1978, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4f41b0" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.7743082, + "posY": 1.49132657, + "posZ": 66.9497757, + "rotX": 0.0142956963, + "rotY": 270.002075, + "rotZ": 359.971527, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Death Approaches", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312619, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a81e3d" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.7430582, + "posY": 1.50304949, + "posZ": 66.25444, + "rotX": 0.0196000263, + "rotY": 270.01767, + "rotZ": 0.01730376, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whippoorwill", + "Description": "Creature.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312616, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "582874" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.5189228, + "posY": 1.92383051, + "posZ": -29.7425785, + "rotX": 359.8803, + "rotY": 269.977753, + "rotZ": 0.07589612, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Realm of Torment", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231820, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e49187" + }, + { + "Name": "Card", + "Transform": { + "posX": 115.309677, + "posY": 1.40331125, + "posZ": 1.5845021, + "rotX": 359.987427, + "rotY": 270.0, + "rotZ": 359.984558, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e0f4c0" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.55829, + "posY": 1.50713491, + "posZ": 66.40654, + "rotX": 0.0186886359, + "rotY": 270.019684, + "rotZ": 0.0154543091, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Psychopomp's Song", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312618, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "292724" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.8214874, + "posY": 1.73793507, + "posZ": -39.8119354, + "rotX": 359.9189, + "rotY": 269.9784, + "rotZ": 0.0163416639, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Nether Mist.", + "Description": "Monster. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231815, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d32fa0" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.7001686, + "posY": 1.50878441, + "posZ": 66.88676, + "rotX": 0.0180376209, + "rotY": 270.022552, + "rotZ": 0.015583, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Eager for Death", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312617, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1f2790" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.6192122, + "posY": 1.47448981, + "posZ": 66.46063, + "rotX": 0.0176389478, + "rotY": 270.019257, + "rotZ": 0.0141896484, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Spectral Raven", + "Description": "Creature. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312615, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0f6a54" + }, + { + "Name": "Card", + "Transform": { + "posX": 114.522324, + "posY": 1.55249166, + "posZ": 0.8631874, + "rotX": 359.9873, + "rotY": 270.023346, + "rotZ": 359.9829, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Crypt Chill", + "Description": "Hazard.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12121, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fb311c" + }, + { + "Name": "Card", + "Transform": { + "posX": 114.991905, + "posY": 1.59937644, + "posZ": 1.31244183, + "rotX": 1.97711754, + "rotY": 270.070251, + "rotZ": 359.990356, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "61e841" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6618786, + "posY": 2.18380141, + "posZ": -35.4214439, + "rotX": 359.156219, + "rotY": 270.890381, + "rotZ": 355.0201, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1a350a" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.974844, + "posY": 1.58076048, + "posZ": -29.1853924, + "rotX": 359.916321, + "rotY": 269.977448, + "rotZ": 0.01572173, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Shapes in the Mist", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231821, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "47147f" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.7586489, + "posY": 1.4931128, + "posZ": 67.25514, + "rotX": 0.014992889, + "rotY": 270.0251, + "rotZ": -0.0006061943, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Marked for Death", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312620, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d21848" + } + ], + "GUID": "308386" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.99709988, + "posY": 1.58263516, + "posZ": -15.0596037, + "rotX": 359.919739, + "rotY": 270.000549, + "rotZ": 0.0168370251, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "Union and Disillusion", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'For the Greater Good'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3fe126" + }, + { + "Name": "Bag", + "Transform": { + "posX": -12.041398, + "posY": 1.41624629, + "posZ": 10.1505013, + "rotX": 359.9826, + "rotY": 359.625458, + "rotZ": 359.920135, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Valentino Rivas", + "Description": "Check your campaign log to see which assets are used for this scenario", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.149620354, + "g": 0.433797479, + "b": 0.112605818 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 10.1851606, + "posY": 3.3869102, + "posZ": 62.9403229, + "rotX": 0.170986146, + "rotY": 269.985718, + "rotZ": 356.4469, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Valentino Rivas", + "Description": "Took You Long Enough", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312514, + "SidewaysCard": false, + "CustomDeck": { + "3125": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "726d1d" + }, + { + "Name": "Card", + "Transform": { + "posX": 10.5905542, + "posY": 3.4228456, + "posZ": 62.9285431, + "rotX": 359.715485, + "rotY": 269.9952, + "rotZ": 359.283234, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Valentino Rivas", + "Description": "Ripped Asunder", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312422, + "SidewaysCard": false, + "CustomDeck": { + "3124": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "723cb3" + } + ], + "GUID": "4d8a79" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -33.7179, + "posY": 1.628535, + "posZ": 0.05899978, + "rotX": 359.9201, + "rotY": 269.99353, + "rotZ": 0.0169086326, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7234af", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Deck", + "Transform": { + "posX": -12.0816994, + "posY": 1.67493558, + "posZ": 13.617, + "rotX": 359.9201, + "rotY": 270.019257, + "rotZ": 0.0168498326, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unvisited Isle", + "Description": "Shuffle and draw two random cards and put them into play. Set the remaining locations aside.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 312915, + 312917, + 312920, + 312918, + 312919, + 312916 + ], + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 6.32896566, + "posY": 1.59139073, + "posZ": 52.1738, + "rotX": 0.00671885163, + "rotY": 270.0194, + "rotZ": 359.819183, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unvisited Isle", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312915, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b6bad1" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.326119, + "posY": 1.38597572, + "posZ": 51.5215569, + "rotX": 0.0243220236, + "rotY": 269.999329, + "rotZ": 359.895142, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unvisited Isle", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312917, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "763808" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.12983, + "posY": 1.78647959, + "posZ": 51.7469177, + "rotX": 0.000309893163, + "rotY": 269.998474, + "rotZ": 359.853333, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unvisited Isle", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312920, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d3d507" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.1658144, + "posY": 1.53217626, + "posZ": 51.3674545, + "rotX": 0.008162117, + "rotY": 270.015137, + "rotZ": 359.852234, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unvisited Isle", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312918, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0e7c75" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.269921, + "posY": 1.64109087, + "posZ": 51.53916, + "rotX": 0.01828617, + "rotY": 269.993164, + "rotZ": 359.8429, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unvisited Isle", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312919, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7b8b0d" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.4932623, + "posY": 1.82444286, + "posZ": 13.5781155, + "rotX": 359.938, + "rotY": 270.003754, + "rotZ": 0.01362878, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Unvisited Isle", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312916, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0b9471" + } + ], + "GUID": "7cd1b4" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.95580029, + "posY": 1.65564787, + "posZ": -10.4412012, + "rotX": 359.919739, + "rotY": 269.999817, + "rotZ": 0.0168412179, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "Union and Disillusion", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312408, + "SidewaysCard": false, + "CustomDeck": { + "3124": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "976ab3" + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 1.69590068, + "posY": 1.55831766, + "posZ": 14.2787018, + "rotX": 359.955139, + "rotY": 224.997986, + "rotZ": 0.06867291, + "scaleX": 2.0, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "Nickname": "Set-aside", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.02148666, + "g": 0.00100758043, + "b": 0.02148666 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", + "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 1, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Deck", + "Transform": { + "posX": 26.0301323, + "posY": 3.40631747, + "posZ": 59.986618, + "rotX": 0.00703197345, + "rotY": 269.99115, + "rotZ": 359.1912, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Anette’s Coven", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231806, + 231805, + 231805, + 231805 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -25.8414345, + "posY": 1.57860494, + "posZ": -36.132618, + "rotX": 359.919647, + "rotY": 269.974, + "rotZ": 0.0165877342, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Priestess of the Coven", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231806, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "326f11" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.6442871, + "posY": 1.72278082, + "posZ": -36.0347443, + "rotX": 359.911224, + "rotY": 269.974, + "rotZ": 0.0136959022, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Coven Initiate", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231805, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c35966" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.7267475, + "posY": 1.74028778, + "posZ": -36.1106224, + "rotX": 359.918823, + "rotY": 269.9739, + "rotZ": 0.0168967526, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Coven Initiate", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231805, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6f2c2e" + }, + { + "Name": "Card", + "Transform": { + "posX": -26.0635834, + "posY": 1.72707784, + "posZ": -35.83386, + "rotX": 359.920868, + "rotY": 269.973969, + "rotZ": 0.0147350542, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Coven Initiate", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231805, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "367d03" + } + ], + "GUID": "bd372e" + }, + { + "Name": "Deck", + "Transform": { + "posX": 26.1715622, + "posY": 3.4023025, + "posZ": 63.1447678, + "rotX": 0.0208224747, + "rotY": 269.980743, + "rotZ": 0.0167681612, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Silver Twilight Lodge", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231812, + 231812, + 231810, + 231810, + 231810, + 231811 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -18.7109814, + "posY": 1.56981552, + "posZ": -32.18543, + "rotX": 359.91922, + "rotY": 269.979279, + "rotZ": 0.0165627878, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysteries of the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231812, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0eb939" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.6118813, + "posY": 1.71404207, + "posZ": -32.3841057, + "rotX": 359.91098, + "rotY": 269.979034, + "rotZ": 0.0195768736, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysteries of the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231812, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7870f6" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.5851078, + "posY": 1.73144269, + "posZ": -32.35143, + "rotX": 359.919037, + "rotY": 269.979156, + "rotZ": 0.01716643, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Neophyte", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231810, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "408a82" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.3490829, + "posY": 1.71755159, + "posZ": -31.918066, + "rotX": 359.918579, + "rotY": 269.9797, + "rotZ": 0.0158215724, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Neophyte", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231810, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "525275" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.6574612, + "posY": 1.71596491, + "posZ": -31.9956455, + "rotX": 359.918976, + "rotY": 269.979736, + "rotZ": 0.0163928568, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Neophyte", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231810, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8dac94" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.7752514, + "posY": 1.71879411, + "posZ": -32.00056, + "rotX": 359.919342, + "rotY": 269.979553, + "rotZ": 0.0157596618, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Keeper of Secrets", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231811, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3761ce" + } + ], + "GUID": "747a12" + }, + { + "Name": "Deck", + "Transform": { + "posX": 26.355526, + "posY": 3.41626024, + "posZ": 56.5081444, + "rotX": 359.664368, + "rotY": 269.9748, + "rotZ": 0.0141816773, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Watcher", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231802, + 231802, + 231801 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -27.8545532, + "posY": 1.58170176, + "posZ": -34.8676262, + "rotX": 359.915649, + "rotY": 269.974121, + "rotZ": 0.01525554, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Watcher's Grasp", + "Description": "Power. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231802, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f798c8" + }, + { + "Name": "Card", + "Transform": { + "posX": -27.9526443, + "posY": 1.72608125, + "posZ": -34.6397629, + "rotX": 359.9233, + "rotY": 269.9745, + "rotZ": 0.00772151956, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Watcher's Grasp", + "Description": "Power. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231802, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f92f1e" + }, + { + "Name": "Card", + "Transform": { + "posX": -27.4475632, + "posY": 1.74305177, + "posZ": -34.8419075, + "rotX": 359.9185, + "rotY": 269.974243, + "rotZ": 0.0167756584, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Spectral Watcher", + "Description": "You Are Its Prey", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231801, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a1eb9b" + } + ], + "GUID": "28374b" + }, + { + "Name": "Card", + "Transform": { + "posX": 24.7874584, + "posY": 3.41788054, + "posZ": 57.00284, + "rotX": 0.0208195858, + "rotY": 270.01297, + "rotZ": 0.0167733133, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Watcher's Gaze", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312621, + "SidewaysCard": false, + "CustomDeck": { + "3126": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "940982" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.42768, + "posY": 3.41823053, + "posZ": 57.0940857, + "rotX": 0.0207847822, + "rotY": 270.0282, + "rotZ": 0.016788546, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Josef Meiger", + "Description": "Lodge Host", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231921, + "SidewaysCard": false, + "CustomDeck": { + "2319": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ffedcd" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.5652676, + "posY": 3.40047717, + "posZ": 60.1692467, + "rotX": 0.0208106264, + "rotY": 269.99408, + "rotZ": 0.0167708788, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Anette Mason", + "Description": "The High Priestess", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231800, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "845563" + }, + { + "Name": "Card", + "Transform": { + "posX": 16.3543873, + "posY": 2.99721336, + "posZ": -25.0456238, + "rotX": 359.920135, + "rotY": 270.000153, + "rotZ": 0.0168761238, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Geist-Trap", + "Description": "Woods. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312921, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bcd556" + } + ], + "PhysicsMaterial": { + "StaticFriction": 0.6, + "DynamicFriction": 0.6, + "Bounciness": 0.0, + "FrictionCombine": 0, + "BounceCombine": 0 + }, + "Rigidbody": { + "Mass": 1.375, + "Drag": 5.0, + "AngularDrag": 5.0, + "UseGravity": true + }, + "GUID": "a45247" + }, + { + "Name": "Bag", + "Transform": { + "posX": -12.276598, + "posY": 1.41155243, + "posZ": -6.902501, + "rotX": 359.982635, + "rotY": 359.647064, + "rotZ": 359.920135, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Gavriella Mizrah", + "Description": "Check your campaign log to see which assets are used for this scenario", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.09311653, + "g": 0.0185841657, + "b": 0.8205576 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 13.76362, + "posY": 3.382562, + "posZ": 61.98181, + "rotX": 359.6189, + "rotY": 269.970642, + "rotZ": 3.68352914, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Gavriella Mizrah", + "Description": "Not Going Down That Easily", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312511, + "SidewaysCard": false, + "CustomDeck": { + "3125": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "2237f4" + }, + { + "Name": "Card", + "Transform": { + "posX": 13.7222319, + "posY": 3.42867041, + "posZ": 62.23854, + "rotX": 359.938263, + "rotY": 269.987762, + "rotZ": 0.606381536, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Gavriella Mizrah", + "Description": "You're Next", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312419, + "SidewaysCard": false, + "CustomDeck": { + "3124": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "367d1d" + } + ], + "GUID": "a92959" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2243, + "posY": 1.69535077, + "posZ": -0.03000033, + "rotX": 359.9201, + "rotY": 270.011658, + "rotZ": 0.0168599971, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Forbidding Shore", + "Description": "Woods.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 312914, + "SidewaysCard": false, + "CustomDeck": { + "3129": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c9aba5" + }, + { + "Name": "Notecard", + "Transform": { + "posX": -5.952036, + "posY": 1.61604857, + "posZ": -4.94174147, + "rotX": 359.6874, + "rotY": 89.96019, + "rotZ": 1.09442353, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "Choose the appropiate Act deck", + "Description": "Deck 1: Investigators sided with the Lodge\nDeck 2: Investigators sided with the Coven, decveived the Lodge AND were inducted into the Circle\nDeck 3: If the above is NOT true, investigators sided with the Coven and at least TWO of the following are true: deceiving the Lodge, hiding knowledge of the Coven, hid mementos\nDeck 4: None of the above is true, sided with Coven", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": false, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "de8bb6" + }, + { + "Name": "Bag", + "Transform": { + "posX": -12.0605984, + "posY": 1.415331, + "posZ": 6.94610262, + "rotX": 359.982574, + "rotY": 359.6063, + "rotZ": 359.920135, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Penny White", + "Description": "Check your campaign log to see which assets are used for this scenario", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.5487805, + "g": 0.05449549, + "b": 0.05449549 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 9.043777, + "posY": 3.4052, + "posZ": 59.8786736, + "rotX": 0.194419473, + "rotY": 270.02478, + "rotZ": 2.24903536, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Penny White", + "Description": "The Nightmare is Over", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312513, + "SidewaysCard": false, + "CustomDeck": { + "3125": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/", + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "73bccf" + }, + { + "Name": "Card", + "Transform": { + "posX": 9.474563, + "posY": 3.424348, + "posZ": 59.85384, + "rotX": 359.617157, + "rotY": 270.02243, + "rotZ": 0.496872425, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Penny White", + "Description": "Tragic Loss", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312421, + "SidewaysCard": false, + "CustomDeck": { + "3124": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "31bd61" + } + ], + "GUID": "df4773" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.2243, + "posY": 1.62478256, + "posZ": 3.86000061, + "rotX": 0.0168653019, + "rotY": 180.004608, + "rotZ": 0.0799400955, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e94e6a", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.72459984, + "posY": 1.66397727, + "posZ": 0.373300523, + "rotX": 0.0168352332, + "rotY": 179.999878, + "rotZ": 0.0802578256, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agenda deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 312310, + 312309 + ], + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 44.3959923, + "posY": 1.36092937, + "posZ": 79.4062958, + "rotX": 0.0140304007, + "rotY": 179.994614, + "rotZ": 359.979431, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Crossroads of Fate", + "Description": "Agenda 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312310, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "abace6" + }, + { + "Name": "Card", + "Transform": { + "posX": 43.9007072, + "posY": 1.5056318, + "posZ": 79.3353958, + "rotX": 0.00339584588, + "rotY": 180.0137, + "rotZ": 359.959167, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "THE LOVERS · VI", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 312309, + "SidewaysCard": true, + "CustomDeck": { + "3123": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "90788e" + } + ], + "GUID": "f919fb" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.2243, + "posY": 1.62251818, + "posZ": -3.83000016, + "rotX": 0.0168652274, + "rotY": 180.004684, + "rotZ": 0.07994083, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ff9ef7", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + } + ], + "GUID": "20f70a", + "AttachedDecals": [ + { + "Transform": { + "posX": -0.0021877822, + "posY": -0.08963572, + "posZ": -0.00288731651, + "rotX": 270.0, + "rotY": 359.869568, + "rotZ": 0.0, + "scaleX": 2.00000215, + "scaleY": 2.00000238, + "scaleZ": 2.00000262 + }, + "CustomDecal": { + "Name": "dunwich_back", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", + "Size": 7.4 + } + } + ] + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 12.2500172, + "posY": 1.458641, + "posZ": -20.0137978, + "rotX": 359.920135, + "rotY": 270.022766, + "rotZ": 0.01683106, + "scaleX": 2.21, + "scaleY": 0.46, + "scaleZ": 2.42 + }, + "Nickname": "7: In the Clutches of Chaos", + "Description": "The Circle Undone", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/784110538847461760/43BADDB501C7E037F3FAADABFDCD34E3C9D47B89/", + "NormalURL": "", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CustomShader": { + "SpecularColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "SpecularIntensity": 0.0, + "SpecularSharpness": 2.0, + "FresnelStrength": 0.0 + }, + "CastShadows": true + }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", + "LuaScriptState": "{\"ml\":{\"12965b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9985,\"z\":0.0799}},\"1594ed\":{\"lock\":false,\"pos\":{\"x\":-27.2924,\"y\":1.6354,\"z\":-5.2924},\"rot\":{\"x\":359.0475,\"y\":44.9546,\"z\":359.9339}},\"15fccc\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6145,\"z\":-0.03},\"rot\":{\"x\":0.0165,\"y\":180.2871,\"z\":0.08}},\"1a0ad2\":{\"lock\":false,\"pos\":{\"x\":-38.221,\"y\":1.6963,\"z\":-0.0155},\"rot\":{\"x\":359.9213,\"y\":270.0476,\"z\":0.0163}},\"3d2a8a\":{\"lock\":false,\"pos\":{\"x\":-36.773,\"y\":1.6464,\"z\":-0.0302},\"rot\":{\"x\":359.9202,\"y\":270.0082,\"z\":0.0165}},\"441006\":{\"lock\":false,\"pos\":{\"x\":-31.6738,\"y\":1.6894,\"z\":7.557},\"rot\":{\"x\":359.9214,\"y\":270.0229,\"z\":0.0163}},\"6e8e5f\":{\"lock\":false,\"pos\":{\"x\":-27.3701,\"y\":1.6375,\"z\":2.2378},\"rot\":{\"x\":359.0628,\"y\":44.8408,\"z\":359.9382}},\"6ed2ae\":{\"lock\":false,\"pos\":{\"x\":-31.8615,\"y\":1.6626,\"z\":-7.6341},\"rot\":{\"x\":0.8564,\"y\":269.9691,\"z\":0.0022}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.4917,\"y\":1.6504,\"z\":-0.0794},\"rot\":{\"x\":1.1829,\"y\":270.0301,\"z\":0.0595}},\"863a02\":{\"lock\":false,\"pos\":{\"x\":-3.9557,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"90d5ec\":{\"lock\":false,\"pos\":{\"x\":-27.3204,\"y\":1.6379,\"z\":5.6251},\"rot\":{\"x\":359.1144,\"y\":135.0013,\"z\":0.043}},\"92c6fc\":{\"lock\":false,\"pos\":{\"x\":1.6714,\"y\":1.3937,\"z\":-1.2871},\"rot\":{\"x\":0.0803,\"y\":89.9989,\"z\":359.9831}},\"92ee68\":{\"lock\":false,\"pos\":{\"x\":-25.3841,\"y\":1.6537,\"z\":-3.8504},\"rot\":{\"x\":0.8271,\"y\":270.3684,\"z\":0.0198}},\"9484e9\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6395,\"z\":7.5699},\"rot\":{\"x\":359.9202,\"y\":270.0047,\"z\":0.0165}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6961,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":224.9937,\"z\":0.0687}},\"b568b8\":{\"lock\":false,\"pos\":{\"x\":-25.4768,\"y\":1.6545,\"z\":3.8643},\"rot\":{\"x\":0.7685,\"y\":270.09,\"z\":0.0177}},\"bed0da\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6294,\"z\":3.8606},\"rot\":{\"x\":359.9215,\"y\":270.0091,\"z\":0.0198}},\"c0fa29\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9989,\"z\":0.0799}},\"c898a0\":{\"lock\":false,\"pos\":{\"x\":-30.2226,\"y\":1.6373,\"z\":-0.0309},\"rot\":{\"x\":359.9209,\"y\":270.0033,\"z\":0.0187}},\"cbaad5\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.627,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":179.9987,\"z\":0.0799}},\"cfb2b2\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9986,\"z\":0.0799}},\"d14543\":{\"lock\":false,\"pos\":{\"x\":1.6333,\"y\":1.3946,\"z\":1.5694},\"rot\":{\"x\":0.0803,\"y\":89.9989,\"z\":359.9831}},\"db4b20\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.627,\"z\":-3.83},\"rot\":{\"x\":359.9206,\"y\":270.0726,\"z\":0.0183}},\"df634c\":{\"lock\":false,\"pos\":{\"x\":-27.3372,\"y\":1.636,\"z\":-2.4198},\"rot\":{\"x\":359.0911,\"y\":134.9588,\"z\":0.0446}},\"e0709b\":{\"lock\":false,\"pos\":{\"x\":-3.4161,\"y\":1.5819,\"z\":-14.8962},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}},\"e7f5fa\":{\"lock\":false,\"pos\":{\"x\":-31.7587,\"y\":1.6663,\"z\":-0.1192},\"rot\":{\"x\":0.9274,\"y\":270.067,\"z\":0.019}},\"fc9d97\":{\"lock\":false,\"pos\":{\"x\":-30.2435,\"y\":1.635,\"z\":-7.6975},\"rot\":{\"x\":359.9207,\"y\":269.9934,\"z\":0.0176}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 1.69610214, + "posY": 1.5583179, + "posZ": 14.278903, + "rotX": 359.955139, + "rotY": 224.993668, + "rotZ": 0.06867591, + "scaleX": 2.0, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "Nickname": "Set-aside", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.02148666, + "g": 0.00100758043, + "b": 0.02148666 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", + "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 1, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 18.18973, + "posY": 3.40622544, + "posZ": 78.5509338, + "rotX": 0.0211115722, + "rotY": 269.980316, + "rotZ": 0.0167772435, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Piper of Azatoth", + "Description": "Monster. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231803, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "092d86" + } + ], + "PhysicsMaterial": { + "StaticFriction": 0.6, + "DynamicFriction": 0.6, + "Bounciness": 0.0, + "FrictionCombine": 0, + "BounceCombine": 0 + }, + "Rigidbody": { + "Mass": 1.375, + "Drag": 5.0, + "AngularDrag": 5.0, + "UseGravity": true + }, + "GUID": "a45247" + }, + { + "Name": "Bag", + "Transform": { + "posX": 1.63330114, + "posY": 1.3946017, + "posZ": 1.56939924, + "rotX": 0.08034355, + "rotY": 89.9989, + "rotZ": 359.983124, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Anette Mason is posessed by evil", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.0, + "g": 0.0, + "b": 0.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", + "LuaScriptState": "{\"ml\":{\"09377b\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9995,\"z\":0.0803}},\"17e686\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6909,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"6c34a5\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7984,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"a21c5b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6998,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"b12183\":{\"lock\":false,\"pos\":{\"x\":-2.7054,\"y\":1.6571,\"z\":0.3752},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Deck", + "Transform": { + "posX": -2.6886, + "posY": 1.66233361, + "posZ": -5.04850054, + "rotX": 0.016835602, + "rotY": 179.999527, + "rotZ": 0.0802577958, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 368826, + 368825 + ], + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -12.5684261, + "posY": 1.33864832, + "posZ": 74.34744, + "rotX": 0.0179951712, + "rotY": 179.999481, + "rotZ": 359.970367, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Beyond the Grave", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368826, + "SidewaysCard": true, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e39a9a" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.486001, + "posY": 1.48346519, + "posZ": 73.9795761, + "rotX": 0.0421500057, + "rotY": 179.999329, + "rotZ": 359.974457, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dark Knowledge (v.I)", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368825, + "SidewaysCard": true, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7f6167" + } + ], + "GUID": "09377b" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2244, + "posY": 1.69086051, + "posZ": -15.2800007, + "rotX": 359.9201, + "rotY": 269.999939, + "rotZ": 0.0168764852, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Silver Twilight Lodge", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369835, + "SidewaysCard": false, + "CustomDeck": { + "3698": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "17e686" + }, + { + "Name": "Deck", + "Transform": { + "posX": -3.92770028, + "posY": 1.79835737, + "posZ": 5.75720072, + "rotX": 359.919739, + "rotY": 269.999969, + "rotZ": 180.016815, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231808, + 231804, + 3626, + 3627, + 369127, + 231805, + 231806, + 231804, + 231814, + 369122, + 369122, + 3626, + 369128, + 3627, + 369126, + 369128, + 369122, + 369127, + 231807, + 369126, + 231813, + 231814, + 231805, + 231807, + 231809, + 369125, + 369128, + 231813, + 369125, + 231805, + 231808, + 231809, + 231814, + 231807, + 231804 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -17.71135, + "posY": 1.56800044, + "posZ": -33.49924, + "rotX": 359.9177, + "rotY": 269.978638, + "rotZ": 0.0161360279, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wracked", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231808, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4949ea" + }, + { + "Name": "Card", + "Transform": { + "posX": 14.9480782, + "posY": 1.4942292, + "posZ": 74.93108, + "rotX": 0.02213699, + "rotY": 269.980438, + "rotZ": 0.0018852806, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Daemonic Piping", + "Description": "Power. Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231804, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f84e0e" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.70005, + "posY": 1.5523262, + "posZ": 13.9823551, + "rotX": 359.987244, + "rotY": 269.999542, + "rotZ": 359.9839, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hunting Nightgaunt", + "Description": "Monster. Nightgaunt.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3626, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b124ef" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.36151, + "posY": 1.40362072, + "posZ": 13.422389, + "rotX": 359.987427, + "rotY": 270.0, + "rotZ": 359.984558, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "On Wings of Darkness", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3627, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "dd287a" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.141344, + "posY": 1.49498117, + "posZ": 82.66116, + "rotX": 0.01744227, + "rotY": 269.9856, + "rotZ": 0.0347701423, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Primordial Gateway", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369127, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a47dba" + }, + { + "Name": "Card", + "Transform": { + "posX": -26.0635834, + "posY": 1.72707784, + "posZ": -35.83386, + "rotX": 359.920868, + "rotY": 269.973969, + "rotZ": 0.0147350542, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Coven Initiate", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231805, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "367d03" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.8414345, + "posY": 1.57860494, + "posZ": -36.132618, + "rotX": 359.919647, + "rotY": 269.974, + "rotZ": 0.0165877342, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Priestess of the Coven", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231806, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "326f11" + }, + { + "Name": "Card", + "Transform": { + "posX": 15.1468468, + "posY": 1.34905994, + "posZ": 75.26861, + "rotX": 0.0217909943, + "rotY": 269.979736, + "rotZ": 0.01311177, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Daemonic Piping", + "Description": "Power. Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231804, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f79968" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.7263336, + "posY": 1.754926, + "posZ": -33.80658, + "rotX": 0.0413828529, + "rotY": 269.9769, + "rotZ": 0.3666429, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9cb625" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.1404233, + "posY": 1.50271082, + "posZ": 82.59327, + "rotX": 0.0194760654, + "rotY": 269.983032, + "rotZ": 0.0101950867, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror Unleashed", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369122, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d50053" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.72482347, + "posY": 1.52477443, + "posZ": 82.89518, + "rotX": 0.0210533645, + "rotY": 269.9688, + "rotZ": 0.01641221, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror Unleashed", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369122, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a71412" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.47138, + "posY": 1.56615245, + "posZ": 13.5548248, + "rotX": 359.9876, + "rotY": 270.0174, + "rotZ": 359.984955, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hunting Nightgaunt", + "Description": "Monster. Nightgaunt.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3626, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "476433" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.198229, + "posY": 1.51081049, + "posZ": 82.86387, + "rotX": 0.0176542532, + "rotY": 269.983124, + "rotZ": 0.009990074, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Chaos Manifest", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369128, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a7dd13" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.46953, + "posY": 1.54276168, + "posZ": 13.6987543, + "rotX": 359.9927, + "rotY": 270.0251, + "rotZ": 359.991547, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "On Wings of Darkness", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3627, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b06ff1" + }, + { + "Name": "Card", + "Transform": { + "posX": 7.780057, + "posY": 1.49331641, + "posZ": 81.00739, + "rotX": 0.018568987, + "rotY": 269.9933, + "rotZ": 359.989349, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Toil and Trouble", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369126, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d8b37a" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.47260237, + "posY": 1.347969, + "posZ": 82.624176, + "rotX": 0.0209928546, + "rotY": 269.9671, + "rotZ": 0.0178020764, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Chaos Manifest", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369128, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a7dd13" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.12781048, + "posY": 1.49762809, + "posZ": 82.52125, + "rotX": 0.0189197622, + "rotY": 269.9839, + "rotZ": 0.0179458261, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror Unleashed", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369122, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a71412" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.228713, + "posY": 1.49763262, + "posZ": 82.86434, + "rotX": 0.0173947681, + "rotY": 269.983215, + "rotZ": 0.007203724, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Primordial Gateway", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369127, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a47dba" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.055851, + "posY": 1.72234285, + "posZ": -33.4770279, + "rotX": 359.9191, + "rotY": 269.978851, + "rotZ": 0.0164938, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Diabolic Voices", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231807, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0fa642" + }, + { + "Name": "Card", + "Transform": { + "posX": 7.81153345, + "posY": 1.34815073, + "posZ": 81.02847, + "rotX": 0.020960357, + "rotY": 270.005981, + "rotZ": 0.0131634977, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Toil and Trouble", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369126, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a36f2f" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.7343235, + "posY": 1.86165559, + "posZ": -33.3503036, + "rotX": 359.785339, + "rotY": 269.9796, + "rotZ": 0.07815084, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Evil Past", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231813, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "976fd8" + }, + { + "Name": "Card", + "Transform": { + "posX": -13.0553141, + "posY": 1.49102473, + "posZ": 83.19125, + "rotX": 0.0151776178, + "rotY": 269.999542, + "rotZ": 180.007492, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0a13d0" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.6442871, + "posY": 1.72278082, + "posZ": -36.0347443, + "rotX": 359.911224, + "rotY": 269.974, + "rotZ": 0.0136959022, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Coven Initiate", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231805, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c35966" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.0510273, + "posY": 1.71469259, + "posZ": -33.44395, + "rotX": 359.919128, + "rotY": 269.978668, + "rotZ": 0.0163030848, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Diabolic Voices", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231807, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "407e66" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.6637516, + "posY": 1.7296617, + "posZ": -33.73086, + "rotX": 359.9201, + "rotY": 269.978882, + "rotZ": 0.0205486864, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Bedeviled", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231809, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a558b5" + }, + { + "Name": "Card", + "Transform": { + "posX": 7.667698, + "posY": 1.5107013, + "posZ": 80.7900543, + "rotX": 0.0206622779, + "rotY": 269.992828, + "rotZ": -0.001846674, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Witness of Chaos", + "Description": "Humanoid. Witch", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369125, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6582d7" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.403446, + "posY": 1.49307215, + "posZ": 82.67308, + "rotX": 0.005214898, + "rotY": 269.993042, + "rotZ": 0.03216257, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Chaos Manifest", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369128, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ccd9f0" + }, + { + "Name": "Card", + "Transform": { + "posX": -20.8834572, + "posY": 1.89827907, + "posZ": -33.5683937, + "rotX": 0.110509835, + "rotY": 269.976044, + "rotZ": 0.334469885, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Evil Past", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231813, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ab69b8" + }, + { + "Name": "Card", + "Transform": { + "posX": 7.70334435, + "posY": 1.4970336, + "posZ": 81.39029, + "rotX": 0.0202364512, + "rotY": 269.997528, + "rotZ": 0.009942474, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Witness of Chaos", + "Description": "Humanoid. Witch", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369125, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6582d7" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.7267475, + "posY": 1.74028778, + "posZ": -36.1106224, + "rotX": 359.918823, + "rotY": 269.9739, + "rotZ": 0.0168967526, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Coven Initiate", + "Description": "Humanoid. Witch.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231805, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6f2c2e" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.80855, + "posY": 1.71239948, + "posZ": -33.79921, + "rotX": 359.910339, + "rotY": 269.97876, + "rotZ": 0.03349457, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wracked", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231808, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c8092b" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.1656151, + "posY": 1.716761, + "posZ": -33.74088, + "rotX": 359.918976, + "rotY": 269.9787, + "rotZ": 0.018134892, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Bedeviled", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231809, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f7c676" + }, + { + "Name": "Card", + "Transform": { + "posX": -21.0152721, + "posY": 1.57281208, + "posZ": -32.7783356, + "rotX": 359.9176, + "rotY": 269.977783, + "rotZ": 0.01638736, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Centuries of Secrets", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231814, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "81dc7a" + }, + { + "Name": "Card", + "Transform": { + "posX": -17.73656, + "posY": 1.71689022, + "posZ": -33.5350227, + "rotX": 359.918945, + "rotY": 269.979126, + "rotZ": 0.0171701312, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Diabolic Voices", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231807, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "64341a" + }, + { + "Name": "Card", + "Transform": { + "posX": 14.9602261, + "posY": 1.52727246, + "posZ": 75.3926544, + "rotX": 0.0217449367, + "rotY": 269.97583, + "rotZ": 0.0155824684, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Daemonic Piping", + "Description": "Power. Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231804, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "397fce" + } + ], + "GUID": "6c34a5" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2243, + "posY": 1.69983244, + "posZ": 15.1900005, + "rotX": 359.9201, + "rotY": 269.999969, + "rotZ": 0.0168766063, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hangman's Hill", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369634, + "SidewaysCard": false, + "CustomDeck": { + "3696": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a21c5b" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.7054, + "posY": 1.65707481, + "posZ": 0.3752003, + "rotX": 0.0168349613, + "rotY": 180.000092, + "rotZ": 0.0802575, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "THE CHARIOT · VII", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368824, + "SidewaysCard": true, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b12183" + } + ], + "GUID": "d14543" + }, + { + "Name": "Bag", + "Transform": { + "posX": 1.671401, + "posY": 1.393709, + "posZ": -1.28710139, + "rotX": 0.0803429857, + "rotY": 89.99894, + "rotZ": 359.983124, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Carl Sanford possesses the secrets of the universe", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", + "LuaScriptState": "{\"ml\":{\"5f4d8a\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6998,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"69a12e\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0052,\"z\":0.0803}},\"79a987\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6909,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"7d1536\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.809,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"cb41b0\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -30.2242012, + "posY": 1.69983232, + "posZ": 15.19, + "rotX": 359.9201, + "rotY": 269.999817, + "rotZ": 0.0168773364, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hangman's Hill", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369736, + "SidewaysCard": false, + "CustomDeck": { + "3697": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5f4d8a" + }, + { + "Name": "Card", + "Transform": { + "posX": -2.7248, + "posY": 1.65710139, + "posZ": 0.373300433, + "rotX": 0.0168278553, + "rotY": 180.0052, + "rotZ": 0.0802592, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "THE CHARIOT · VII", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368824, + "SidewaysCard": true, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "69a12e" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2244, + "posY": 1.69086051, + "posZ": -15.2800007, + "rotX": 359.9201, + "rotY": 269.999725, + "rotZ": 0.01687673, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Silver Twilight Lodge", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369937, + "SidewaysCard": false, + "CustomDeck": { + "3699": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "79a987" + }, + { + "Name": "Deck", + "Transform": { + "posX": -3.9274, + "posY": 1.80901563, + "posZ": 5.757101, + "rotX": 359.919739, + "rotY": 270.000031, + "rotZ": 180.016815, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 231810, + 369122, + 369124, + 231812, + 369127, + 3626, + 12119, + 369122, + 3605, + 231811, + 12117, + 3604, + 369123, + 3604, + 369128, + 369124, + 231804, + 12119, + 369127, + 12117, + 369122, + 3604, + 12118, + 12118, + 3627, + 12117, + 369123, + 231810, + 231804, + 369128, + 231804, + 3605, + 369128, + 3627, + 231812, + 3626, + 231810 + ], + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": -18.3490829, + "posY": 1.71755159, + "posZ": -31.918066, + "rotX": 359.918579, + "rotY": 269.9797, + "rotZ": 0.0158215724, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Neophyte", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231810, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "525275" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.72482347, + "posY": 1.52477443, + "posZ": 82.89518, + "rotX": 0.0210533645, + "rotY": 269.9688, + "rotZ": 0.01641221, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror Unleashed", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369122, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a71412" + }, + { + "Name": "Card", + "Transform": { + "posX": 3.80569863, + "posY": 1.49195409, + "posZ": 81.89541, + "rotX": 0.0132571086, + "rotY": 269.99707, + "rotZ": 0.002305488, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Secrets of the Beyond", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369124, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "af86ae" + }, + { + "Name": "Card", + "Transform": { + "posX": -8.533302, + "posY": 1.49134493, + "posZ": 65.68225, + "rotX": 0.0187280849, + "rotY": 269.9965, + "rotZ": 180.163269, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysteries of the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231812, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "0eb939" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.228713, + "posY": 1.49763262, + "posZ": 82.86434, + "rotX": 0.0173947681, + "rotY": 269.983215, + "rotZ": 0.007203724, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Primordial Gateway", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369127, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a47dba" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.70005, + "posY": 1.5523262, + "posZ": 13.9823551, + "rotX": 359.987244, + "rotY": 269.999542, + "rotZ": 359.9839, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hunting Nightgaunt", + "Description": "Monster. Nightgaunt.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3626, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b124ef" + }, + { + "Name": "Card", + "Transform": { + "posX": 116.206024, + "posY": 1.54851818, + "posZ": 1.69081855, + "rotX": 0.453712761, + "rotY": 270.0, + "rotZ": 0.605071843, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dissonant Voices", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12119, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "260768" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.12781048, + "posY": 1.49762809, + "posZ": 82.52125, + "rotX": 0.0189197622, + "rotY": 269.9839, + "rotZ": 0.0179458261, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror Unleashed", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369122, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a71412" + }, + { + "Name": "Card", + "Transform": { + "posX": 33.8191452, + "posY": 1.66368461, + "posZ": 74.8914261, + "rotX": 0.02363379, + "rotY": 269.998962, + "rotZ": 0.25173533, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "False Lead", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3605, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "de1cd2" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.7752514, + "posY": 1.71879411, + "posZ": -32.00056, + "rotX": 359.919342, + "rotY": 269.979553, + "rotZ": 0.0157596618, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Keeper of Secrets", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231811, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3761ce" + }, + { + "Name": "Card", + "Transform": { + "posX": 116.843185, + "posY": 1.54545975, + "posZ": 1.48686087, + "rotX": 359.989929, + "rotY": 270.0, + "rotZ": 359.98764, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Rotting Remains", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12117, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "aa3d47" + }, + { + "Name": "Card", + "Transform": { + "posX": 33.34565, + "posY": 1.53916109, + "posZ": 74.98459, + "rotX": 0.2795983, + "rotY": 269.982117, + "rotZ": 0.2330421, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hunting Shadow", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3604, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "46af71" + }, + { + "Name": "Card", + "Transform": { + "posX": 4.019021, + "posY": 1.4959923, + "posZ": 82.18874, + "rotX": 0.0184443258, + "rotY": 269.999634, + "rotZ": 0.0118184, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Enforcer", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369123, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "be9d6c" + }, + { + "Name": "Card", + "Transform": { + "posX": 33.3559, + "posY": 1.39295888, + "posZ": 75.464, + "rotX": 0.179927453, + "rotY": 269.9928, + "rotZ": 0.191170692, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hunting Shadow", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3604, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e98498" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.47260237, + "posY": 1.347969, + "posZ": 82.624176, + "rotX": 0.0209928546, + "rotY": 269.9671, + "rotZ": 0.0178020764, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Chaos Manifest", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369128, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a7dd13" + }, + { + "Name": "Card", + "Transform": { + "posX": 3.84631872, + "posY": 1.34687316, + "posZ": 81.70437, + "rotX": 0.0211930815, + "rotY": 270.002472, + "rotZ": 0.0133430995, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Secrets of the Beyond", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369124, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3c1b20" + }, + { + "Name": "Card", + "Transform": { + "posX": 15.1468468, + "posY": 1.34905994, + "posZ": 75.26861, + "rotX": 0.0217909943, + "rotY": 269.979736, + "rotZ": 0.01311177, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Daemonic Piping", + "Description": "Power. Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231804, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f79968" + }, + { + "Name": "Card", + "Transform": { + "posX": 116.318008, + "posY": 1.40297079, + "posZ": 2.02551055, + "rotX": 359.987427, + "rotY": 270.046936, + "rotZ": 359.984528, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dissonant Voices", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12119, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f1a34d" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.141344, + "posY": 1.49498117, + "posZ": 82.66116, + "rotX": 0.01744227, + "rotY": 269.9856, + "rotZ": 0.0347701423, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Primordial Gateway", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369127, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a47dba" + }, + { + "Name": "Card", + "Transform": { + "posX": 116.950279, + "posY": 1.5376091, + "posZ": 1.28928447, + "rotX": 358.786469, + "rotY": 270.025024, + "rotZ": 2.07151151, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Rotting Remains", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12117, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "da8001" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.1404233, + "posY": 1.50271082, + "posZ": 82.59327, + "rotX": 0.0194760654, + "rotY": 269.983032, + "rotZ": 0.0101950867, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror Unleashed", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369122, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d50053" + }, + { + "Name": "Card", + "Transform": { + "posX": 33.17109, + "posY": 1.50134242, + "posZ": 71.44922, + "rotX": 0.0258894432, + "rotY": 269.999176, + "rotZ": 0.0177205615, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hunting Shadow", + "Description": "Curse.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3604, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "caabe8" + }, + { + "Name": "Card", + "Transform": { + "posX": 116.363129, + "posY": 1.55607748, + "posZ": 1.91277838, + "rotX": 359.809937, + "rotY": 270.046265, + "rotZ": 0.250917822, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Frozen in Fear", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12118, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c40f57" + }, + { + "Name": "Card", + "Transform": { + "posX": 116.299973, + "posY": 1.569287, + "posZ": 1.46156657, + "rotX": 359.989929, + "rotY": 270.000061, + "rotZ": 359.987671, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Frozen in Fear", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12118, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "27c05d" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.46953, + "posY": 1.54276168, + "posZ": 13.6987543, + "rotX": 359.9927, + "rotY": 270.0251, + "rotZ": 359.991547, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "On Wings of Darkness", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3627, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b06ff1" + }, + { + "Name": "Card", + "Transform": { + "posX": 117.053131, + "posY": 1.56189775, + "posZ": 1.68414187, + "rotX": 359.987427, + "rotY": 270.047, + "rotZ": 359.984528, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Rotting Remains", + "Description": "Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12117, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "18e09c" + }, + { + "Name": "Card", + "Transform": { + "posX": 4.061287, + "posY": 1.50965226, + "posZ": 82.3038254, + "rotX": 0.0210610852, + "rotY": 269.998535, + "rotZ": 0.0123841716, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Enforcer", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369123, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "be9d6c" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.5851078, + "posY": 1.73144269, + "posZ": -32.35143, + "rotX": 359.919037, + "rotY": 269.979156, + "rotZ": 0.01716643, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Neophyte", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231810, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "408a82" + }, + { + "Name": "Card", + "Transform": { + "posX": 14.9602261, + "posY": 1.52727246, + "posZ": 75.3926544, + "rotX": 0.0217449367, + "rotY": 269.97583, + "rotZ": 0.0155824684, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Daemonic Piping", + "Description": "Power. Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231804, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "397fce" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.403446, + "posY": 1.49307215, + "posZ": 82.67308, + "rotX": 0.005214898, + "rotY": 269.993042, + "rotZ": 0.03216257, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Chaos Manifest", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369128, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ccd9f0" + }, + { + "Name": "Card", + "Transform": { + "posX": 14.9480782, + "posY": 1.4942292, + "posZ": 74.93108, + "rotX": 0.02213699, + "rotY": 269.980438, + "rotZ": 0.0018852806, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Daemonic Piping", + "Description": "Power. Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231804, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f84e0e" + }, + { + "Name": "Card", + "Transform": { + "posX": 33.1424751, + "posY": 1.68199444, + "posZ": 75.44426, + "rotX": 0.365903, + "rotY": 269.976563, + "rotZ": 0.08653687, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "False Lead", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3605, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b6793f" + }, + { + "Name": "Card", + "Transform": { + "posX": 6.198229, + "posY": 1.51081049, + "posZ": 82.86387, + "rotX": 0.0176542532, + "rotY": 269.983124, + "rotZ": 0.009990074, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Chaos Manifest", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369128, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a7dd13" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.36151, + "posY": 1.40362072, + "posZ": 13.422389, + "rotX": 359.987427, + "rotY": 270.0, + "rotZ": 359.984558, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "On Wings of Darkness", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3627, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "dd287a" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.6118813, + "posY": 1.71404207, + "posZ": -32.3841057, + "rotX": 359.91098, + "rotY": 269.979034, + "rotZ": 0.0195768736, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysteries of the Lodge", + "Description": "Scheme.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231812, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7870f6" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.47138, + "posY": 1.56615245, + "posZ": 13.5548248, + "rotX": 359.9876, + "rotY": 270.0174, + "rotZ": 359.984955, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Hunting Nightgaunt", + "Description": "Monster. Nightgaunt.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3626, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "476433" + }, + { + "Name": "Card", + "Transform": { + "posX": -18.6574612, + "posY": 1.71596491, + "posZ": -31.9956455, + "rotX": 359.918976, + "rotY": 269.979736, + "rotZ": 0.0163928568, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Lodge Neophyte", + "Description": "Humanoid. Cultist. Silver Twilight.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231810, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8dac94" + } + ], + "GUID": "7d1536" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.6884, + "posY": 1.66233325, + "posZ": -5.0485, + "rotX": 0.0168352909, + "rotY": 179.9999, + "rotZ": 0.08025805, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 368828, + 368827 + ], + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 14.0107994, + "posY": 1.49662864, + "posZ": 85.26572, + "rotX": 0.008819537, + "rotY": 180.000031, + "rotZ": 359.9708, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "New World Order", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368828, + "SidewaysCard": true, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "66378c" + }, + { + "Name": "Card", + "Transform": { + "posX": 14.1259813, + "posY": 1.3516506, + "posZ": 85.37142, + "rotX": 0.0173827875, + "rotY": 179.999954, + "rotZ": 359.9757, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Dark Knowledge (v.II)", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368827, + "SidewaysCard": true, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3a0ad6" + } + ], + "GUID": "cb41b0" + } + ], + "GUID": "92c6fc" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.95571756, + "posY": 1.59753907, + "posZ": -10.4412, + "rotX": 359.919739, + "rotY": 269.9999, + "rotZ": 0.0168373939, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "In the Clutches of Chaos", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 368723, + "SidewaysCard": false, + "CustomDeck": { + "3687": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "863a02" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.4161005, + "posY": 1.58186936, + "posZ": -14.8962021, + "rotX": 359.919739, + "rotY": 270.000244, + "rotZ": 0.0168374181, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "In the Clutches of Chaos", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'For the Greater Good'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e0709b" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -23.6764488, + "posY": 1.6145066, + "posZ": -0.029984409, + "rotX": 0.016471114, + "rotY": 180.287079, + "rotZ": 0.0800182745, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": false, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "15fccc", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -23.67642, + "posY": 1.62935293, + "posZ": 3.86060762, + "rotX": 359.921539, + "rotY": 270.0091, + "rotZ": 0.0198468566, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Merchant District", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369532, + "SidewaysCard": false, + "CustomDeck": { + "3695": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bed0da" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.4768448, + "posY": 1.65445983, + "posZ": 3.86431313, + "rotX": 0.768548131, + "rotY": 270.090027, + "rotZ": 0.0176931676, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Merchant District", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369533, + "SidewaysCard": false, + "CustomDeck": { + "3695": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b568b8" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -27.37011, + "posY": 1.63748622, + "posZ": 2.23775315, + "rotX": 359.062836, + "rotY": 44.8408241, + "rotZ": 359.9382, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6e8e5f", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -27.3203659, + "posY": 1.63789666, + "posZ": 5.6250906, + "rotX": 359.11438, + "rotY": 135.001328, + "rotZ": 0.0429928526, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "90d5ec", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.2243, + "posY": 1.62478268, + "posZ": 3.86000085, + "rotX": 0.0168737266, + "rotY": 179.998642, + "rotZ": 0.07993921, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "cfb2b2", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -30.22261, + "posY": 1.63729692, + "posZ": -0.0309105851, + "rotX": 359.920929, + "rotY": 270.0033, + "rotZ": 0.0186982341, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Southside", + "Description": "Arkham. Central.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369527, + "SidewaysCard": false, + "CustomDeck": { + "3695": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c898a0" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.7587166, + "posY": 1.66631508, + "posZ": -0.11918214, + "rotX": 0.9274243, + "rotY": 270.066956, + "rotZ": 0.0189824067, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Southside", + "Description": "Arkham. Central.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369526, + "SidewaysCard": false, + "CustomDeck": { + "3695": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e7f5fa" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.22426, + "posY": 1.62251806, + "posZ": -3.82999444, + "rotX": 0.0168741234, + "rotY": 179.998459, + "rotZ": 0.07994894, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "12965b", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -27.33723, + "posY": 1.6359657, + "posZ": -2.41977072, + "rotX": 359.091064, + "rotY": 134.958771, + "rotZ": 0.0445786826, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "df634c", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -27.2923679, + "posY": 1.635409, + "posZ": -5.292364, + "rotX": 359.0475, + "rotY": 44.9546432, + "rotZ": 359.933868, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1594ed", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6765079, + "posY": 1.627037, + "posZ": -3.83000088, + "rotX": 359.920624, + "rotY": 270.0726, + "rotZ": 0.0182904918, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Rivertown", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369525, + "SidewaysCard": false, + "CustomDeck": { + "3695": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "db4b20" + }, + { + "Name": "Card", + "Transform": { + "posX": -25.3841133, + "posY": 1.65367353, + "posZ": -3.85036635, + "rotX": 0.8271421, + "rotY": 270.3684, + "rotZ": 0.0197545923, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Rivertown", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369524, + "SidewaysCard": false, + "CustomDeck": { + "3695": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "92ee68" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.24352, + "posY": 1.63503969, + "posZ": -7.697496, + "rotX": 359.920654, + "rotY": 269.9934, + "rotZ": 0.0176247023, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "French Hill", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369522, + "SidewaysCard": false, + "CustomDeck": { + "3695": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fc9d97" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.86155, + "posY": 1.66258526, + "posZ": -7.634138, + "rotX": 0.856404543, + "rotY": 269.969116, + "rotZ": 0.00224989164, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "French Hill", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369523, + "SidewaysCard": false, + "CustomDeck": { + "3695": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6ed2ae" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.2242, + "posY": 1.62025666, + "posZ": -11.5100012, + "rotX": 0.0168733317, + "rotY": 179.998917, + "rotZ": 0.07993954, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c0fa29", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -33.4916954, + "posY": 1.6504246, + "posZ": -0.07937416, + "rotX": 1.18287051, + "rotY": 270.030121, + "rotZ": 0.0594917275, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7234af", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + }, + { + "Name": "Card", + "Transform": { + "posX": -36.7730141, + "posY": 1.646368, + "posZ": -0.030204583, + "rotX": 359.920166, + "rotY": 270.008179, + "rotZ": 0.01648824, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "South Church", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369531, + "SidewaysCard": false, + "CustomDeck": { + "3695": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3d2a8a" + }, + { + "Name": "Card", + "Transform": { + "posX": -38.2210426, + "posY": 1.69634044, + "posZ": -0.0155119058, + "rotX": 359.921326, + "rotY": 270.047577, + "rotZ": 0.0162536521, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "South Church", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369530, + "SidewaysCard": false, + "CustomDeck": { + "3695": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1a0ad2" + }, + { + "Name": "Card", + "Transform": { + "posX": -30.2242641, + "posY": 1.639474, + "posZ": 7.56990242, + "rotX": 359.920166, + "rotY": 270.0047, + "rotZ": 0.0164822415, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Uptown", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369529, + "SidewaysCard": false, + "CustomDeck": { + "3695": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "9484e9" + }, + { + "Name": "Card", + "Transform": { + "posX": -31.6737652, + "posY": 1.6894238, + "posZ": 7.5570035, + "rotX": 359.921356, + "rotY": 270.0229, + "rotZ": 0.0162872709, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Uptown", + "Description": "Arkham.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369528, + "SidewaysCard": false, + "CustomDeck": { + "3695": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "441006" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -30.2242, + "posY": 1.62702048, + "posZ": 11.4600019, + "rotX": 0.0168735515, + "rotY": 179.998734, + "rotZ": 0.07993482, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/vppt2my.png", + "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "cbaad5", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -39.7933121, + "posY": 1.63758957, + "posZ": 2.038383, + "rotX": 359.9201, + "rotY": 269.9961, + "rotZ": 0.0168742146, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/HyfE8m8.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44b0c5" + }, + "3": { + "Name": "Custom_Tile", + "Transform": { + "posX": -38.8217163, + "posY": 1.99356019, + "posZ": 0.4159239, + "rotX": 359.9201, + "rotY": 272.9828, + "rotZ": 0.01687373, + "scaleX": 0.8, + "scaleY": 1.0, + "scaleZ": 0.8 + }, + "Nickname": "", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.6045295, + "g": 0.6045295, + "b": 0.6045295 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "https://i.imgur.com/dHKBLoD.png", + "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "5b38c6" + } + } + } + ], + "GUID": "1ee775", + "AttachedDecals": [ + { + "Transform": { + "posX": -0.0021877822, + "posY": -0.08963572, + "posZ": -0.00288731651, + "rotX": 270.0, + "rotY": 359.869568, + "rotZ": 0.0, + "scaleX": 2.00000215, + "scaleY": 2.00000238, + "scaleZ": 2.00000262 + }, + "CustomDecal": { + "Name": "dunwich_back", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", + "Size": 7.4 + } + } + ] + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 12.2492027, + "posY": 1.45618367, + "posZ": -28.0139046, + "rotX": 359.920135, + "rotY": 269.998138, + "rotZ": 0.0168757215, + "scaleX": 2.21, + "scaleY": 0.46, + "scaleZ": 2.42 + }, + "Nickname": "8: Before the Black Throne", + "Description": "The Circle Undone", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/784110538847462298/680FFE88F10AC7B0B77502DC95683D1FCFE653ED/", + "NormalURL": "", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 3, + "TypeIndex": 6, + "CustomShader": { + "SpecularColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "SpecularIntensity": 0.0, + "SpecularSharpness": 2.0, + "FresnelStrength": 0.0 + }, + "CastShadows": true + }, + "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", + "LuaScriptState": "{\"ml\":{\"308386\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7717,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"41010d\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"752424\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6739,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0028,\"z\":0.0169}},\"910e54\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"a14586\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6959,\"y\":1.5583,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"a8d84d\":{\"lock\":false,\"pos\":{\"x\":-3.9264,\"y\":1.666,\"z\":15.1913},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"b16392\":{\"lock\":false,\"pos\":{\"x\":-3.3993,\"y\":1.5817,\"z\":-15.3519},\"rot\":{\"x\":359.9197,\"y\":270.0007,\"z\":0.0168}},\"c23159\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":270.0524,\"z\":0.0168}},\"c2cc36\":{\"lock\":false,\"pos\":{\"x\":1.133,\"y\":1.6533,\"z\":5.8024},\"rot\":{\"x\":359.9198,\"y\":269.9668,\"z\":0.0169}}}}", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Deck", + "Transform": { + "posX": -3.92770028, + "posY": 1.77170992, + "posZ": 5.75720072, + "rotX": 359.919739, + "rotY": 270.0, + "rotZ": 180.016815, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Encounter Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 369134, + 369134, + 3623, + 369131, + 369133, + 231804, + 231823, + 3625, + 369133, + 12120, + 231804, + 3625, + 369134, + 369131, + 3623, + 231823, + 12120, + 369130, + 369132, + 231823, + 369130, + 369133, + 3624, + 12120, + 231822, + 231822, + 231804, + 3623, + 369132, + 231822 + ], + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + }, + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 27.1961613, + "posY": 1.51052463, + "posZ": 75.40924, + "rotX": 0.02553703, + "rotY": 270.00946, + "rotZ": 0.009734581, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mindless Dancer", + "Description": "Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369134, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "97fa36" + }, + { + "Name": "Card", + "Transform": { + "posX": 26.83129, + "posY": 1.35331261, + "posZ": 75.2230759, + "rotX": 0.02116842, + "rotY": 270.00946, + "rotZ": 0.0145142619, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mindless Dancer", + "Description": "Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369134, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "892799" + }, + { + "Name": "Card", + "Transform": { + "posX": 98.97962, + "posY": 1.55247211, + "posZ": 16.3414173, + "rotX": 359.99057, + "rotY": 269.9967, + "rotZ": 359.984833, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Acolyte", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3623, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c70e63" + }, + { + "Name": "Card", + "Transform": { + "posX": 26.82527, + "posY": 1.47165251, + "posZ": 75.17854, + "rotX": 0.0233987048, + "rotY": 270.022919, + "rotZ": 0.01573934, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The End is Nigh!", + "Description": "Endtimes.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369131, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f8cfe7" + }, + { + "Name": "Card", + "Transform": { + "posX": 27.0071526, + "posY": 1.50224555, + "posZ": 75.08285, + "rotX": 0.0144073488, + "rotY": 270.0216, + "rotZ": 0.0137497745, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ultimate Chaos", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369133, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "99b040" + }, + { + "Name": "Card", + "Transform": { + "posX": 32.13641, + "posY": 1.67431533, + "posZ": 67.64259, + "rotX": 0.002807944, + "rotY": 270.002472, + "rotZ": 0.0201477651, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Daemonic Piping", + "Description": "Power. Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231804, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f79968" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.6707478, + "posY": 1.76058781, + "posZ": -33.23441, + "rotX": 359.465271, + "rotY": 269.459351, + "rotZ": 9.029153, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "717c42" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.2046661, + "posY": 1.54923761, + "posZ": 15.9180088, + "rotX": 359.989929, + "rotY": 270.0, + "rotZ": 359.98764, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysterious Chanting", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3625, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "df668b" + }, + { + "Name": "Card", + "Transform": { + "posX": 26.2738438, + "posY": 1.51910114, + "posZ": 75.7763443, + "rotX": 0.0268196836, + "rotY": 270.00943, + "rotZ": 0.00688381027, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ultimate Chaos", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369133, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "99b040" + }, + { + "Name": "Card", + "Transform": { + "posX": 115.309677, + "posY": 1.40331125, + "posZ": 1.5845021, + "rotX": 359.987427, + "rotY": 270.0, + "rotZ": 359.984558, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "e0f4c0" + }, + { + "Name": "Card", + "Transform": { + "posX": -29.3314133, + "posY": 1.583834, + "posZ": -34.59758, + "rotX": 359.916046, + "rotY": 269.966034, + "rotZ": 0.0159121323, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Daemonic Piping", + "Description": "Power. Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231804, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f84e0e" + }, + { + "Name": "Card", + "Transform": { + "posX": 98.78452, + "posY": 1.40295327, + "posZ": 16.366806, + "rotX": 359.987427, + "rotY": 269.999817, + "rotZ": 359.984558, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mysterious Chanting", + "Description": "Hex.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3625, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "6f5b7b" + }, + { + "Name": "Card", + "Transform": { + "posX": 27.1961956, + "posY": 1.524544, + "posZ": 75.40927, + "rotX": 0.0189705323, + "rotY": 270.00946, + "rotZ": 0.01297347, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Mindless Dancer", + "Description": "Monster.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369134, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "892799" + }, + { + "Name": "Card", + "Transform": { + "posX": 27.00521, + "posY": 1.49737585, + "posZ": 75.26165, + "rotX": 0.02033227, + "rotY": 270.023071, + "rotZ": 0.0153790619, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The End is Nigh!", + "Description": "Endtimes.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369131, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "f8cfe7" + }, + { + "Name": "Card", + "Transform": { + "posX": 98.93172, + "posY": 1.556378, + "posZ": 15.9665985, + "rotX": 359.989929, + "rotY": 269.999969, + "rotZ": 359.98764, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Acolyte", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3623, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c70e63" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.46502, + "posY": 2.16774321, + "posZ": -34.8072357, + "rotX": 0.232217044, + "rotY": 270.777466, + "rotZ": 353.199249, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "fbcb9f" + }, + { + "Name": "Card", + "Transform": { + "posX": 115.318665, + "posY": 1.5414474, + "posZ": 1.587292, + "rotX": 359.989929, + "rotY": 270.000031, + "rotZ": 359.9876, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1921c5" + }, + { + "Name": "Card", + "Transform": { + "posX": 26.9027119, + "posY": 1.49093223, + "posZ": 74.82743, + "rotX": 0.0201691929, + "rotY": 269.983276, + "rotZ": 0.0146726873, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "A World in Darkness", + "Description": "Endtimes.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369130, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a7dd13" + }, + { + "Name": "Card", + "Transform": { + "posX": 26.1838646, + "posY": 1.5230999, + "posZ": 75.33933, + "rotX": 0.0202491973, + "rotY": 270.003174, + "rotZ": 0.0142255416, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispered Bargain", + "Description": "Pact.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369132, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bec23e" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.7152367, + "posY": 1.91512489, + "posZ": -32.59262, + "rotX": 359.910583, + "rotY": 269.364441, + "rotZ": 341.912537, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Fate of All Fools", + "Description": "Omen. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231823, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "ef132d" + }, + { + "Name": "Card", + "Transform": { + "posX": 26.9910221, + "posY": 1.49399364, + "posZ": 74.62291, + "rotX": 0.0125041958, + "rotY": 270.003937, + "rotZ": 0.0224464256, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "A World in Darkness", + "Description": "Endtimes.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369130, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a7dd13" + }, + { + "Name": "Card", + "Transform": { + "posX": 26.3793659, + "posY": 1.521326, + "posZ": 75.6197739, + "rotX": 0.0247275848, + "rotY": 270.00943, + "rotZ": 0.0109192254, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ultimate Chaos", + "Description": "Power.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369133, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "99b040" + }, + { + "Name": "Card", + "Transform": { + "posX": 98.45666, + "posY": 1.55439174, + "posZ": 16.9464512, + "rotX": 1.20685, + "rotY": 269.9761, + "rotZ": 357.846649, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Wizard of the Order", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3624, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "159f90" + }, + { + "Name": "Card", + "Transform": { + "posX": 114.991905, + "posY": 1.59937644, + "posZ": 1.31244183, + "rotX": 1.97711754, + "rotY": 270.070251, + "rotZ": 359.990356, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Ancient Evils", + "Description": "Omen.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 12120, + "SidewaysCard": false, + "CustomDeck": { + "121": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "61e841" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6618786, + "posY": 2.18380141, + "posZ": -35.4214439, + "rotX": 359.156219, + "rotY": 270.890381, + "rotZ": 355.0201, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1a350a" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.27985, + "posY": 1.99979043, + "posZ": -34.2781525, + "rotX": 359.187378, + "rotY": 270.910339, + "rotZ": 355.236023, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "43ba03" + }, + { + "Name": "Card", + "Transform": { + "posX": -29.403286, + "posY": 1.77933121, + "posZ": -35.6114159, + "rotX": 359.909668, + "rotY": 269.9743, + "rotZ": 0.0608307645, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Daemonic Piping", + "Description": "Power. Terror.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231804, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "397fce" + }, + { + "Name": "Card", + "Transform": { + "posX": 99.0756, + "posY": 1.55269325, + "posZ": 16.03813, + "rotX": 359.989929, + "rotY": 270.0, + "rotZ": 359.9876, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Acolyte", + "Description": "Humanoid. Cultist.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 3623, + "SidewaysCard": false, + "CustomDeck": { + "36": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4072d7" + }, + { + "Name": "Card", + "Transform": { + "posX": 27.1292152, + "posY": 1.5078367, + "posZ": 74.87716, + "rotX": 0.01768027, + "rotY": 270.0032, + "rotZ": 0.0175336991, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Whispered Bargain", + "Description": "Pact.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369132, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "bec23e" + }, + { + "Name": "Card", + "Transform": { + "posX": -24.3842, + "posY": 2.1039958, + "posZ": -34.9055138, + "rotX": 359.182831, + "rotY": 270.902466, + "rotZ": 355.1978, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Terror in the Night", + "Description": "Terror. Spectral.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231822, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4f41b0" + } + ], + "GUID": "308386" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.7248, + "posY": 1.65664124, + "posZ": 0.3733003, + "rotX": 0.0168353245, + "rotY": 179.999908, + "rotZ": 0.0802577, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Agenda Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 368832, + 368831, + 368830 + ], + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 29.6161041, + "posY": 1.52157807, + "posZ": 81.59478, + "rotX": 0.0170167852, + "rotY": 180.000381, + "rotZ": 179.97052, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Final Countdown", + "Description": "Agenda 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368832, + "SidewaysCard": true, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a7d884" + }, + { + "Name": "Card", + "Transform": { + "posX": 27.12275, + "posY": 1.49183035, + "posZ": 73.28463, + "rotX": 0.0107065951, + "rotY": 180.021, + "rotZ": 359.9565, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "It Awaits", + "Description": "Agenda 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368831, + "SidewaysCard": true, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "d14e41" + }, + { + "Name": "Card", + "Transform": { + "posX": 32.4442558, + "posY": 1.51944351, + "posZ": 81.19754, + "rotX": 0.02509384, + "rotY": 180.0, + "rotZ": 359.9623, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "WHEEL OF FORTUNE · X", + "Description": "Agenda 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368830, + "SidewaysCard": true, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "aac284" + } + ], + "GUID": "41010d" + }, + { + "Name": "Deck", + "Transform": { + "posX": -17.1201, + "posY": 1.673901, + "posZ": -7.700001, + "rotX": 359.9201, + "rotY": 270.0028, + "rotZ": 0.0168730933, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Cosmos", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "SidewaysCard": false, + "DeckIDs": [ + 369446, + 369443, + 369446, + 369442, + 369440, + 369442, + 369443, + 369442, + 369443, + 369441, + 369440, + 369440 + ], + "CustomDeck": { + "3694": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 25.7866783, + "posY": 1.50211155, + "posZ": 80.19073, + "rotX": 0.0416825265, + "rotY": 269.934662, + "rotZ": 180.046219, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369446, + "SidewaysCard": false, + "CustomDeck": { + "3693": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "1a0ad2" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.8718376, + "posY": 1.765196, + "posZ": 81.15501, + "rotX": 0.0277312379, + "rotY": 269.9878, + "rotZ": 179.152924, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369443, + "SidewaysCard": false, + "CustomDeck": { + "3693": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3cb235" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.6602125, + "posY": 1.82060313, + "posZ": 7.400929, + "rotX": 359.939331, + "rotY": 270.003479, + "rotZ": 0.0173203982, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369446, + "SidewaysCard": false, + "CustomDeck": { + "3694": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4e8ae3" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.8633728, + "posY": 1.75881338, + "posZ": 80.81227, + "rotX": 359.965759, + "rotY": 270.0135, + "rotZ": 183.539963, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369442, + "SidewaysCard": false, + "CustomDeck": { + "3693": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "af7186" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.80183, + "posY": 1.56914055, + "posZ": 81.8392639, + "rotX": 0.0901726261, + "rotY": 269.989746, + "rotZ": 174.203156, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369440, + "SidewaysCard": false, + "CustomDeck": { + "3693": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "30fc53" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.8266087, + "posY": 1.64924, + "posZ": 81.20057, + "rotX": 0.0271498263, + "rotY": 270.009827, + "rotZ": 180.019913, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369442, + "SidewaysCard": false, + "CustomDeck": { + "3693": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "2ec90f" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.7772255, + "posY": 1.67048526, + "posZ": 81.4754639, + "rotX": 0.0305660572, + "rotY": 269.986816, + "rotZ": 177.442657, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369443, + "SidewaysCard": false, + "CustomDeck": { + "3693": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3cb235" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.8354111, + "posY": 1.59674382, + "posZ": 80.58062, + "rotX": 359.941284, + "rotY": 269.976563, + "rotZ": 183.790771, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369442, + "SidewaysCard": false, + "CustomDeck": { + "3693": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "4a7eac" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.8071117, + "posY": 1.58692122, + "posZ": 81.6339645, + "rotX": 0.110584244, + "rotY": 269.9804, + "rotZ": 174.4053, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369443, + "SidewaysCard": false, + "CustomDeck": { + "3693": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "3cb235" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.7674541, + "posY": 1.50622034, + "posZ": 85.7123, + "rotX": 0.0207059048, + "rotY": 269.998566, + "rotZ": 180.017822, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369441, + "SidewaysCard": false, + "CustomDeck": { + "3694": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "435152" + }, + { + "Name": "Card", + "Transform": { + "posX": 25.68824, + "posY": 1.5909071, + "posZ": 81.73422, + "rotX": 0.08713126, + "rotY": 269.992065, + "rotZ": 174.381149, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369440, + "SidewaysCard": false, + "CustomDeck": { + "3693": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "8f3e16" + }, + { + "Name": "Card", + "Transform": { + "posX": -12.476862, + "posY": 1.82039285, + "posZ": 7.371406, + "rotX": 359.93866, + "rotY": 270.000671, + "rotZ": 0.01858811, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369440, + "SidewaysCard": false, + "CustomDeck": { + "3694": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a89dbf" + } + ], + "GUID": "752424" + }, + { + "Name": "Card", + "Transform": { + "posX": -23.6762981, + "posY": 1.688458, + "posZ": 7.569999, + "rotX": 359.9201, + "rotY": 269.999817, + "rotZ": 0.0168760028, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmic Ingress", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 369438, + "SidewaysCard": false, + "CustomDeck": { + "3694": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "910e54" + }, + { + "Name": "Deck", + "Transform": { + "posX": -2.6886, + "posY": 1.65499747, + "posZ": -5.0485, + "rotX": 0.0168352127, + "rotY": 179.999939, + "rotZ": 0.08025744, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Act Deck", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": false, + "SidewaysCard": true, + "DeckIDs": [ + 368835, + 368834, + 368833 + ], + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 33.4550858, + "posY": 1.53751588, + "posZ": 77.87682, + "rotX": 0.0165670067, + "rotY": 180.000061, + "rotZ": 179.979721, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "What Must Be Done", + "Description": "Act 3", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368835, + "SidewaysCard": true, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "44760d" + }, + { + "Name": "Card", + "Transform": { + "posX": 32.9625854, + "posY": 1.50385928, + "posZ": 77.5973053, + "rotX": 0.02732806, + "rotY": 180.002045, + "rotZ": 179.9804, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "In Azathoth's Domain", + "Description": "Act 2", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368834, + "SidewaysCard": true, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "263ac1" + }, + { + "Name": "Card", + "Transform": { + "posX": 33.2288971, + "posY": 1.3590883, + "posZ": 77.75054, + "rotX": 0.0151657, + "rotY": 179.986511, + "rotZ": 179.989563, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "The Cosmos Beckons", + "Description": "Act 1", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 368833, + "SidewaysCard": true, + "CustomDeck": { + "3688": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c5cae9" + } + ], + "GUID": "a14586" + }, + { + "Name": "Custom_Model_Bag", + "Transform": { + "posX": 1.6959008, + "posY": 1.55831766, + "posZ": 14.2786026, + "rotX": 359.955139, + "rotY": 224.998016, + "rotZ": 0.06867308, + "scaleX": 2.0, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "Nickname": "Set-aside", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.02148666, + "g": 0.00100758043, + "b": 0.02148666 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "MaterialIndex": -1, + "MeshIndex": -1, + "CustomMesh": { + "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", + "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", + "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", + "ColliderURL": "", + "Convex": true, + "MaterialIndex": 1, + "TypeIndex": 6, + "CastShadows": true + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "ContainedObjects": [ + { + "Name": "Card", + "Transform": { + "posX": 35.2725334, + "posY": 3.410345, + "posZ": 71.10349, + "rotX": 0.0197880846, + "rotY": 269.9805, + "rotZ": 0.0158734079, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Piper of Azatoth", + "Description": "Monster. Elite.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 231803, + "SidewaysCard": false, + "CustomDeck": { + "2318": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "092d86" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.69648683, + "posY": 3.71621919, + "posZ": 14.2788115, + "rotX": 359.9606, + "rotY": 224.998, + "rotZ": 180.055725, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369445, + "SidewaysCard": false, + "CustomDeck": { + "3694": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "7a3ece" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.6964196, + "posY": 3.73114252, + "posZ": 14.2788334, + "rotX": 359.948059, + "rotY": 224.998062, + "rotZ": 180.058319, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369444, + "SidewaysCard": false, + "CustomDeck": { + "3694": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "311eb1" + } + ], + "PhysicsMaterial": { + "StaticFriction": 0.6, + "DynamicFriction": 0.6, + "Bounciness": 0.0, + "FrictionCombine": 0, + "BounceCombine": 0 + }, + "Rigidbody": { + "Mass": 1.375, + "Drag": 5.0, + "AngularDrag": 5.0, + "UseGravity": true + }, + "GUID": "a45247" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.92640018, + "posY": 1.66596162, + "posZ": 15.1913033, + "rotX": 359.919739, + "rotY": 270.0, + "rotZ": 180.01683, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Cosmos", + "Description": "Otherworld.", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369439, + "SidewaysCard": false, + "CustomDeck": { + "3694": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "a8d84d" + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -3.39930058, + "posY": 1.58171177, + "posZ": -15.351903, + "rotX": 359.919739, + "rotY": 270.000732, + "rotZ": 0.0168368518, + "scaleX": 2.2, + "scaleY": 1.0, + "scaleZ": 2.2 + }, + "Nickname": "Before the Black Throne", + "Description": "click to set chaos token difficulty", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", + "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 3, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "name = 'For the Greater Good'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "b16392" + }, + { + "Name": "Card", + "Transform": { + "posX": -3.9559, + "posY": 1.655648, + "posZ": -10.4413013, + "rotX": 359.919739, + "rotY": 270.052429, + "rotZ": 0.0167676732, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Scenario", + "Description": "Before the Black Throne", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": true, + "CardID": 368729, + "SidewaysCard": false, + "CustomDeck": { + "3687": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/", + "BackURL": "http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": true, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c23159" + }, + { + "Name": "Card", + "Transform": { + "posX": 1.13300025, + "posY": 1.65329313, + "posZ": 5.80240059, + "rotX": 359.919769, + "rotY": 269.9668, + "rotZ": 0.0168874338, + "scaleX": 1.0, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "Nickname": "Azathoth", + "Description": "The Primal Chaos", + "GMNotes": "", + "ColorDiffuse": { + "r": 0.713235259, + "g": 0.713235259, + "b": 0.713235259 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": true, + "Hands": true, + "CardID": 369129, + "SidewaysCard": false, + "CustomDeck": { + "3691": { + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/", + "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", + "NumWidth": 10, + "NumHeight": 7, + "BackIsHidden": true, + "UniqueBack": false, + "Type": 0 + } + }, + "LuaScript": "", + "LuaScriptState": "", + "XmlUI": "", + "GUID": "c2cc36" + } + ], + "GUID": "0fad66", + "AttachedDecals": [ + { + "Transform": { + "posX": -0.0021877822, + "posY": -0.08963572, + "posZ": -0.00288731651, + "rotX": 270.0, + "rotY": 359.869568, + "rotZ": 0.0, + "scaleX": 2.00000215, + "scaleY": 2.00000238, + "scaleZ": 2.00000262 + }, + "CustomDecal": { + "Name": "dunwich_back", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", + "Size": 7.4 + } + } + ] + }, + { + "Name": "Custom_Tile", + "Transform": { + "posX": -1.44019675, + "posY": 1.47555482, + "posZ": -27.0401039, + "rotX": 359.920135, + "rotY": 270.000519, + "rotZ": 0.0168709084, + "scaleX": 6.5, + "scaleY": 1.0, + "scaleZ": 6.5 + }, + "Nickname": "The Circle Undone Campaign Log 1", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/786356000880323787/F4D94402AF1C8265D7EED669076D554116A90DEC/", + "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/786356000880295670/8FF05F1C905042FF3C3BBD6D369D1DD0E03463D6/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 0, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {0.902,0.886,0.788}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n {\r\n pos = {-0.7,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one counter 2\r\n {\r\n pos = {-0.50,0.1,-0.45},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot one xp 1\r\n {\r\n pos = {-0.517,0.1,-0.55},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 1\r\n {\r\n pos = {-0.274,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two counter 2\r\n {\r\n pos = {-0.06,0.1,-0.445},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot two xp 1\r\n {\r\n pos = {-0.061,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 1\r\n {\r\n pos = {0.153,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three counter 2\r\n {\r\n pos = {0.379,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot three xp 1\r\n {\r\n pos = {0.38,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 1\r\n {\r\n pos = {0.614,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four counter 2\r\n {\r\n pos = {0.82,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Slot four xp 1\r\n {\r\n pos = {0.827,0.1,-0.54},\r\n size = 300,\r\n value = 0,\r\n hideBG = true\r\n },\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --Slot one player\r\n {\r\n pos = {-0.637,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one investigator\r\n {\r\n pos = {-0.637,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot one story\r\n {\r\n pos = {-0.637,0.1,-0.27},\r\n rows = 10,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two player\r\n {\r\n pos = {-0.2,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two investigator\r\n {\r\n pos = {-0.2,0.1,-0.625},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot two story\r\n {\r\n pos = {-0.2,0.1,-0.27},\r\n rows = 10,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three player\r\n {\r\n pos = {0.241,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three investigator\r\n {\r\n pos = {0.237,0.1,-0.62},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot three story\r\n {\r\n pos = {0.24,0.1,-0.268},\r\n rows = 10,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four player\r\n {\r\n pos = {0.671,0.1,-0.70},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four investigator\r\n {\r\n pos = {0.671,0.1,-0.62},\r\n rows = 1,\r\n width = 2000,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Slot four story\r\n {\r\n pos = {0.671,0.1,-0.265},\r\n rows = 10,\r\n width = 2000,\r\n font_size = 100,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes\r\n {\r\n pos = {-0.464,0.1,0.507},\r\n rows =16,\r\n width = 3200,\r\n font_size = 200,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign NOtes 2\r\n {\r\n pos = {0.344,0.1,0.187},\r\n rows = 10,\r\n width = 3500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Mementos\r\n {\r\n pos = {0.351,0.1,0.744},\r\n rows = 12,\r\n width = 3500,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend", + "LuaScriptState": "{\"checkbox\":[],\"counter\":[{\"hideBG\":true,\"pos\":[-0.7,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.5,0.1,-0.45],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.517,0.1,-0.55],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[-0.274,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.06,0.1,-0.445],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[-0.061,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.153,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.379,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.38,0.1,-0.54],\"size\":300,\"value\":0},{\"hideBG\":true,\"pos\":[0.614,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.82,0.1,-0.44],\"size\":400,\"value\":0},{\"hideBG\":true,\"pos\":[0.827,0.1,-0.54],\"size\":300,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[-0.637,0.1,-0.27],\"rows\":10,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.625],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[-0.2,0.1,-0.27],\"rows\":10,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.241,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.237,0.1,-0.62],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[0.24,0.1,-0.268],\"rows\":10,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.7],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.62],\"rows\":1,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":100,\"label\":\"Click to type\",\"pos\":[0.671,0.1,-0.265],\"rows\":10,\"value\":\"\",\"width\":2000},{\"alignment\":2,\"font_size\":200,\"label\":\"Click to type\",\"pos\":[-0.464,0.1,0.507],\"rows\":16,\"value\":\"\",\"width\":3200},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.344,0.1,0.187],\"rows\":10,\"value\":\"\",\"width\":3500},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.351,0.1,0.744],\"rows\":12,\"value\":\"\",\"width\":3500}]}", + "XmlUI": "", + "GUID": "44a05a", + "States": { + "2": { + "Name": "Custom_Tile", + "Transform": { + "posX": -1.440166, + "posY": 1.47563934, + "posZ": -26.7525749, + "rotX": 359.920135, + "rotY": 270.0003, + "rotZ": 0.0168714, + "scaleX": 6.5, + "scaleY": 1.0, + "scaleZ": 6.5 + }, + "Nickname": "The Circle Undone Campaign Log 2", + "Description": "", + "GMNotes": "", + "ColorDiffuse": { + "r": 1.0, + "g": 1.0, + "b": 1.0 + }, + "Locked": false, + "Grid": true, + "Snap": true, + "IgnoreFoW": false, + "MeasureMovement": false, + "DragSelectable": true, + "Autoraise": true, + "Sticky": true, + "Tooltip": true, + "GridProjection": false, + "HideWhenFaceDown": false, + "Hands": false, + "CustomImage": { + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/786356000880325037/481B73FE2FF5AAA5E6CA26C28AD1D75EE24B362C/", + "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/786356000880295670/8FF05F1C905042FF3C3BBD6D369D1DD0E03463D6/", + "ImageScalar": 1.0, + "WidthScale": 0.0, + "CustomTile": { + "Type": 0, + "Thickness": 0.1, + "Stackable": false, + "Stretch": true + } + }, + "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {0.902,0.886,0.788}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --1 checkbox\r\n {\r\n pos = {-0.829,0.1,-0.848},\r\n size = 250,\r\n state = false\r\n },\r\n --2 checkbox\r\n {\r\n pos = {-0.827,0.1,-0.776},\r\n size = 250,\r\n state = false\r\n },\r\n --3 checkbox\r\n {\r\n pos = {-0.824,0.1,-0.665},\r\n size = 250,\r\n state = false\r\n },\r\n --4 checkbox\r\n {\r\n pos = {-0.819,0.1,-0.574},\r\n size = 250,\r\n state = false\r\n },\r\n --5 checkbox\r\n {\r\n pos = {-0.819,0.1,-0.489},\r\n size = 250,\r\n state = false\r\n },\r\n --6 checkbox\r\n {\r\n pos = {-0.821,0.1,-0.352},\r\n size = 250,\r\n state = false\r\n },\r\n --7 checkbox\r\n {\r\n pos = {-0.817,0.1,-0.26},\r\n size = 250,\r\n state = false\r\n },\r\n --8 checkbox\r\n {\r\n pos = {-0.816,0.1,-0.168},\r\n size = 250,\r\n state = false\r\n },\r\n --9 checkbox\r\n {\r\n pos = {-0.814,0.1,-0.074},\r\n size = 250,\r\n state = false\r\n },\r\n --10 checkbox\r\n {\r\n pos = {-0.816,0.1,0.02},\r\n size = 250,\r\n state = false\r\n },\r\n --11 checkbox\r\n {\r\n pos = {-0.817,0.1,0.115},\r\n size = 250,\r\n state = false\r\n },\r\n --12 checkbox\r\n {\r\n pos = {-0.821,0.1,0.19},\r\n size = 250,\r\n state = false\r\n },\r\n --13 checkbox\r\n {\r\n pos = {-0.816,0.1,0.278},\r\n size = 250,\r\n state = false\r\n },\r\n --14 checkbox\r\n {\r\n pos = {-0.818,0.1,0.37},\r\n size = 250,\r\n state = false\r\n },\r\n --15 checkbox\r\n {\r\n pos = {-0.819,0.1,0.448},\r\n size = 250,\r\n state = false\r\n },\r\n --Gavriella Mizrah\r\n {\r\n pos = {0.738,0.1,0.176},\r\n size = 500,\r\n state = false\r\n },\r\n --Jerome Davids\r\n {\r\n pos = {0.083,0.1,0.432},\r\n size = 500,\r\n state = false\r\n },\r\n --Penny White\r\n {\r\n pos = {0.686,0.1,0.652},\r\n size = 500,\r\n state = false\r\n },\r\n --Valentino Rivas\r\n {\r\n pos = {0.07,0.1,0.878},\r\n size = 500,\r\n state = false\r\n },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --Slot one counter 1\r\n\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n\r\n --Text 1\r\n {\r\n pos = {0.4,0.1,0.184},\r\n rows =5,\r\n width = 2400,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Text 2\r\n {\r\n pos = {0.404,0.1,0.427},\r\n rows =5,\r\n width = 2400,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Text 3\r\n {\r\n pos = {0.364,0.1,0.655},\r\n rows =5,\r\n width = 2400,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Text 4\r\n {\r\n pos = {0.38,0.1,0.885},\r\n rows =5,\r\n width = 2400,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Killed and Insane\r\n {\r\n pos = {-0.55,0.1,0.80},\r\n rows =8,\r\n width = 3800,\r\n font_size = 150,\r\n label = \"Click to type\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", + "LuaScriptState": "{\"checkbox\":[{\"pos\":[-0.829,0.1,-0.848],\"size\":250,\"state\":false},{\"pos\":[-0.827,0.1,-0.776],\"size\":250,\"state\":false},{\"pos\":[-0.824,0.1,-0.665],\"size\":250,\"state\":false},{\"pos\":[-0.819,0.1,-0.574],\"size\":250,\"state\":false},{\"pos\":[-0.819,0.1,-0.489],\"size\":250,\"state\":false},{\"pos\":[-0.821,0.1,-0.352],\"size\":250,\"state\":false},{\"pos\":[-0.817,0.1,-0.26],\"size\":250,\"state\":false},{\"pos\":[-0.816,0.1,-0.168],\"size\":250,\"state\":false},{\"pos\":[-0.814,0.1,-0.074],\"size\":250,\"state\":false},{\"pos\":[-0.816,0.1,0.02],\"size\":250,\"state\":false},{\"pos\":[-0.817,0.1,0.115],\"size\":250,\"state\":false},{\"pos\":[-0.821,0.1,0.19],\"size\":250,\"state\":false},{\"pos\":[-0.816,0.1,0.278],\"size\":250,\"state\":false},{\"pos\":[-0.818,0.1,0.37],\"size\":250,\"state\":false},{\"pos\":[-0.819,0.1,0.448],\"size\":250,\"state\":false},{\"pos\":[0.738,0.1,0.176],\"size\":500,\"state\":false},{\"pos\":[0.083,0.1,0.432],\"size\":500,\"state\":false},{\"pos\":[0.686,0.1,0.652],\"size\":500,\"state\":false},{\"pos\":[0.07,0.1,0.878],\"size\":500,\"state\":false}],\"counter\":[],\"textbox\":[{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.4,0.1,0.184],\"rows\":5,\"value\":\"\",\"width\":2400},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.404,0.1,0.427],\"rows\":5,\"value\":\"\",\"width\":2400},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.364,0.1,0.655],\"rows\":5,\"value\":\"\",\"width\":2400},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[0.38,0.1,0.885],\"rows\":5,\"value\":\"\",\"width\":2400},{\"alignment\":2,\"font_size\":150,\"label\":\"Click to type\",\"pos\":[-0.55,0.1,0.8],\"rows\":8,\"value\":\"\",\"width\":3800}]}", + "XmlUI": "", + "GUID": "184a7c" + } + } + } + ], + "GUID": "48d634" + } + ], + "LuaScript": "--[[ Lua code. See documentation: http://berserk-games.com/knowledgebase/scripting/ --]]\n-- Card size used for autodealing --\n\n-- global position constants\nENCOUNTER_DECK_POS = {-3.8, 1, 5.7}\nENCOUNTER_DECK_SPAWN_POS = {-3.8, 3, 5.7}\nENCOUNTER_DECK_DISCARD_POSITION = {-3.8, 0.5, 10.5}\ng_cardWith=2.30;\ng_cardHeigth=3.40;\n\ncontainerId = 'fea079'\ntokenDataId = '708279'\n\n\nCACHE = {\n object = {},\n data = {}\n}\n\n--[[ The OnLoad function. This is called after everything in the game save finishes loading.\nMost of your script code goes here. --]]\nfunction onload()\n Player.White.changeColor('Yellow')\n tokenplayerone = {\n damageone = \"https://i.imgur.com/XIJHw3J.png\",\n damagethree = \"https://i.imgur.com/eqRC712.png\",\n horrorone = \"https://i.imgur.com/Bh0BO47.png\",\n horrorthree = \"https://i.imgur.com/pZvTKA7.png\",\n resource = \"https://i.imgur.com/j5v5E3j.png\",\n resourcethree = \"https://i.imgur.com/1GZsDTt.png\",\n doom = \"https://i.imgur.com/EoL7yaZ.png\",\n clue = \"https://i.imgur.com/wfCaVU0.png\"\n }\n\n TOKEN_DATA = {\n clue = {image = tokenplayerone.clue, scale = {0.15, 0.15, 0.15}},\n resource = {image = tokenplayerone.resource, scale = {0.17, 0.17, 0.17}},\n doom = {image = tokenplayerone.doom, scale = {0.17, 0.17, 0.17}}\n }\n\ngetObjectFromGUID(\"6161b4\").interactable=false\ngetObjectFromGUID(\"721ba2\").interactable=false\ngetObjectFromGUID(\"9f334f\").interactable=false\ngetObjectFromGUID(\"23a43c\").interactable=false\ngetObjectFromGUID(\"5450cc\").interactable=false\ngetObjectFromGUID(\"463022\").interactable=false\ngetObjectFromGUID(\"9487a4\").interactable=false\ngetObjectFromGUID(\"91dd9b\").interactable=false\ngetObjectFromGUID(\"f182ee\").interactable=false\nend\n\n-- Remove comments to enable autorotate cards on hands.\n-- function onObjectEnterScriptingZone(zone, object)\n-- Autorotate cards with right side up when entering hand.\n-- if zone.getGUID() == \"c506bf\" or -- yellow\n-- zone.getGUID() == \"cbc751\" then -- orange\n-- object.setRotationSmooth({0,270,0})\n-- elseif zone.getGUID() == \"67ce9a\" then -- green\n-- object.setRotationSmooth({0,0,0})\n-- elseif zone.getGUID() == \"57c22c\" then -- red\n-- object.setRotationSmooth({0,180,0})\n--end\n--end\n\nfunction findInRadiusBy(pos, radius, filter, debug)\n local radius = (radius or 1)\n local objList = Physics.cast({\n origin = pos,\n direction = {0,1,0},\n type = 2,\n size = {radius, radius, radius},\n max_distance = 0,\n debug = (debug or false)\n })\n\n local filteredList = {}\n for _, obj in ipairs(objList) do\n if filter == nil then\n table.insert(filteredList, obj.hit_object)\n elseif filter and filter(obj.hit_object) then\n table.insert(filteredList, obj.hit_object)\n end\n end\n return filteredList\nend\n\nfunction dealCardsInRows(paramlist)\n \tlocal currPosition={};\n local numRow=1;\n\tlocal numCard=0;\n\tlocal invMultiplier=1;\n\tlocal allCardsDealed=0;\n\t\tif paramlist.inverse then\n\t\tinvMultiplier=-1;\n\tend\n\t\tif paramlist.maxCardsDealed==nil then\n\n\t\tallCardsDealed=0;\n\t\tparamlist.maxCardsDealed=paramlist.cardDeck.getQuantity()\n\n\telseif paramlist.maxCardsDealed>=paramlist.cardDeck.getQuantity() or paramlist.maxCardsDealed<=0 then\n\n\t\tallCardsDealed=0;\n\t\tparamlist.maxCardsDealed=paramlist.cardDeck.getQuantity()\n\n\telse\n\n\t\tallCardsDealed=1;\n\n\tend\n\n\tif paramlist.mode==\"x\" then\n\t\tcurrPosition={paramlist.iniPosition[1]+(2*g_cardWith*invMultiplier*allCardsDealed),paramlist.iniPosition[2],paramlist.iniPosition[3]};\n\n\telse\n\t\tcurrPosition={paramlist.iniPosition[1],paramlist.iniPosition[2],paramlist.iniPosition[3]+(2*g_cardWith*invMultiplier*allCardsDealed)};\n\n\tend\n\n\tfor i = 1,paramlist.maxCardsDealed,1 do\n\n paramlist.cardDeck.takeObject\n ({\n position= currPosition,\n smooth= true\n });\n\n\t\tnumCard=numCard+1;\n\t\tif numCard>=paramlist.maxCardRow then\n\n\t\t\tif paramlist.mode==\"x\" then\n\t\t\t\tcurrPosition={paramlist.iniPosition[1]+(2*g_cardWith*invMultiplier*allCardsDealed),paramlist.iniPosition[2],paramlist.iniPosition[3]};\n\t\t\t\tcurrPosition[3]=currPosition[3]-(numRow*g_cardHeigth*invMultiplier);\n\t\t\telse\n\t\t\t\tcurrPosition={paramlist.iniPosition[1],paramlist.iniPosition[2],paramlist.iniPosition[3]+(2*g_cardWith*invMultiplier*allCardsDealed)};\n\t\t\t\tcurrPosition[1]=currPosition[1]+(numRow*g_cardHeigth*invMultiplier);\n\t\t\tend\n\t\t\tnumCard=0;\n\t\t\tnumRow=numRow+1;\n\n\t\telse\n\t\t\tif paramlist.mode==\"x\" then\n\t\t\t\tcurrPosition[1]=currPosition[1]+(g_cardWith*invMultiplier);\n\t\t\telse\n\t\t\t\tcurrPosition[3]=currPosition[3]+(g_cardWith*invMultiplier);\n\t\t\tend\n\t\tend\n end\nend\n\nfunction isDeck(x)\n return x.tag == 'Deck'\nend\n\nfunction isCardOrDeck(x)\n return x.tag == 'Card' or isDeck(x)\nend\n\nfunction drawEncountercard(params) --[[ Parameter Table Position, Table Rotation]]\n local position = params[1]\n local rotation = params[2]\n local isFaceUp = params[3]\n local faceUpRotation\n if (isFaceUp) then\n faceUpRotation = 0\n else\n faceUpRotation = 180\n end\n local items = findInRadiusBy(ENCOUNTER_DECK_POS, 4, isCardOrDeck)\n if #items > 0 then\n for i, v in ipairs(items) do\n if v.tag == 'Deck' then\n v.takeObject({index = 0, position = position, rotation = {0,rotation.y,faceUpRotation}})\n return\n end\n end\n-- we didn't find the deck so just pull the first thing we did find\n items[1].setPositionSmooth(position, false, false)\n items[1].setRotationSmooth({0,rotation.y,faceUpRotation}, false, false)\n return\n end\n-- nothing here, time to reshuffle\n reshuffleEncounterDeck(position, {0,rotation.y,faceUpRotation})\nend\n\nIS_RESHUFFLING = false\nfunction reshuffleEncounterDeck(position, rotation)\n -- finishes moving the deck back and draws a card\n local function move(deck)\n deck.setPositionSmooth(ENCOUNTER_DECK_SPAWN_POS, true, false)\n deck.takeObject({index = 0, position = position, rotation = rotation, flip = false})\n Wait.time(function() IS_RESHUFFLING = false end, 1)\n end\n -- bail out if we're mid reshuffle\n if IS_RESHUFFLING then\n return\n end\n local discarded = findInRadiusBy(ENCOUNTER_DECK_DISCARD_POSITION, 4, isDeck)\n if #discarded > 0 then\n IS_RESHUFFLING = true\n local deck = discarded[1]\n if not deck.is_face_down then\n deck.flip()\n end\n deck.shuffle()\n Wait.time(|| move(deck), 0.3)\n else\n printToAll(\"couldn't find encounter discard pile to reshuffle\", {1, 0, 0})\n end\nend\n\nCHAOS_TOKENS = {}\nCHAOS_TOKENS_LAST_MAT = nil\nfunction putBackChaosTokens()\n local chaosbagposition = chaosbag.getPosition()\n for k, token in pairs(CHAOS_TOKENS) do\n if token != nil then\n chaosbag.putObject(token)\n token.setPosition({chaosbagposition[1],chaosbagposition[2]+0.5,chaosbagposition[3]})\n end\n end\n CHAOS_TOKENS = {}\n end\n\nfunction drawChaostoken(params)\n local mat = params[1]\n local tokenOffset = params[2]\n local isRightClick = params[3]\n local isSameMat = (CHAOS_TOKENS_LAST_MAT == nil or CHAOS_TOKENS_LAST_MAT == mat)\n if not isSameMat then\n putBackChaosTokens()\n end\n CHAOS_TOKENS_LAST_MAT = mat\n -- if we have left clicked and have no tokens OR if we have right clicked\n if isRightClick or #CHAOS_TOKENS == 0 then\n local items = getObjectFromGUID(\"83ef06\").getObjects()\n for i,v in ipairs(items) do\n if items[i].getDescription() == \"Chaos Bag\" then\n chaosbag = getObjectFromGUID(items[i].getGUID())\n break\n end\n end\n -- bail out if we have no tokens\n if #chaosbag.getObjects() == 0 then\n return\n end\n chaosbag.shuffle()\n -- add the token to the list, compute new position based on list length\n tokenOffset[1] = tokenOffset[1] + (0.17 * #CHAOS_TOKENS)\n local toPosition = mat.positionToWorld(tokenOffset)\n local token = chaosbag.takeObject({\n index = 0,\n position = toPosition,\n rotation = mat.getRotation()\n })\n CHAOS_TOKENS[#CHAOS_TOKENS + 1] = token\n return\n else\n putBackChaosTokens()\n end\nend\n\nfunction spawnToken(params)\n -- Position to spawn,\n -- rotation vector to apply\n -- translation vector to apply\n -- token type\n local position = params[1]\n local tokenType = params[2]\n local tokenData = TOKEN_DATA[tokenType]\n if tokenData == nil then\n error(\"no token data found for '\" .. tokenType .. \"'\")\n end\n\n local token = spawnObject({\n type = 'Custom_Token',\n position = position,\n })\n token.setCustomObject({\n image = tokenData['image'],\n thickness = 0.1,\n merge_distance = 5.0,\n stackable = false,\n })\n token.use_snap_points=false\n token.scale(tokenData['scale'])\n return token\nend\n\nfunction round(params) -- Parameter (int number, int numberDecimalPlaces)\n return tonumber(string.format(\"%.\" .. (params[2] or 0) .. \"f\", params[1]))\nend\n\nfunction roundposition(params) -- Parameter (Table position)\n return {round({params[1], 2}),round({params[2], 2}),round({params[3], 2})}\nend\n\nfunction isEqual(params) --Parameter (Table table1, Table table2) returns true if the tables are equal\n if params[1][1] == params[2][1] and params[1][2] == params[2][2] and params[1][3] == params[2][3] then\n return true\n else\n return false\n end\nend\n\nfunction isFaceup(params) --Object object\n if params.getRotation()[3] > -5 and params.getRotation()[3] < 5 then\n return true\n else\n return false\n end\nend\n\n--Difficulty selector script\n\nfunction createSetupButtons(args)\n local data = getDataValue('modeData', args.key)\n if data ~= nil then\n local z = -0.15\n if data.easy ~= nil then\n args.object.createButton({\n label = 'Easy',\n click_function = 'easyClick',\n function_owner = args.object,\n position = {0, 0.1, z},\n rotation = {0, 0, 0},\n scale = {0.47, 1, 0.47},\n height = 200,\n width = 1150,\n font_size = 100,\n color = {0.87, 0.8, 0.70},\n font_color = {0, 0, 0}\n })\n z = z + 0.20\n end\n if data.normal ~= nil then\n args.object.createButton({\n label = 'Standard',\n click_function = 'normalClick',\n function_owner = args.object,\n position = {0, 0.1, z},\n rotation = {0, 0, 0},\n scale = {0.47, 1, 0.47},\n height = 200,\n width = 1150,\n font_size = 100,\n color = {0.87, 0.8, 0.70},\n font_color = {0, 0, 0}\n })\n z = z + 0.20\n end\n if data.hard ~= nil then\n args.object.createButton({\n label = 'Hard',\n click_function = 'hardClick',\n function_owner = args.object,\n position = {0, 0.1, z},\n rotation = {0, 0, 0},\n scale = {0.47, 1, 0.47},\n height = 200,\n width = 1150,\n font_size = 100,\n color = {0.87, 0.8, 0.70},\n font_color = {0, 0, 0}\n })\n z = z + 0.20\n end\n if data.expert ~= nil then\n args.object.createButton({\n label = 'Expert',\n click_function = 'expertClick',\n function_owner = args.object,\n position = {0, 0.1, z},\n rotation = {0, 0, 0},\n scale = {0.47, 1, 0.47},\n height = 200,\n width = 1150,\n font_size = 100,\n color = {0.87, 0.8, 0.70},\n font_color = {0, 0, 0}\n })\n z = z + 0.20\n end\n z = z + 0.10\n if data.standalone ~= nil then\n args.object.createButton({\n label = 'Standalone',\n click_function = 'standaloneClick',\n function_owner = args.object,\n position = {0, 0.1, z},\n rotation = {0, 0, 0},\n scale = {0.47, 1, 0.47},\n height = 200,\n width = 1150,\n font_size = 100,\n color = {0.87, 0.8, 0.70},\n font_color = {0, 0, 0}\n })\n end\n end\nend\n\nfunction fillContainer(args)\n local container = getObjectCache(containerId)\n\n if container ~= nil then\n local data = getDataValue('modeData', args.key)\n if data == nil then return end\n\n local value = data[args.mode]\n if value == nil or value.token == nil then return end\n\n local pos = container.getPosition()\n if args.object ~= nil then\n pos = args.object.getPosition()\n end\n\n cleanContainer(container)\n\n for _, token in ipairs(value.token) do\n local obj = spawnToken_2(token, pos)\n if obj ~= nil then\n container.putObject(obj)\n end\n end\n\n if value.append ~= nil then\n for _, token in ipairs(value.append) do\n local obj = spawnToken_2(token, pos)\n if obj ~= nil then\n container.putObject(obj)\n end\n end\n end\n\n if value.random then\n local n = #value.random\n if n > 0 then\n for _, token in ipairs(value.random[getRandomCount(n)]) do\n local obj = spawnToken_2(token, pos)\n if obj ~= nil then\n container.putObject(obj)\n end\n end\n end\n end\n\n if value.message then\n broadcastToAll(value.message)\n end\n if value.warning then\n broadcastToAll(value.warning, { 1, 0.5, 0.5 })\n end\n end\nend\n\nfunction spawnToken_2(id, pos)\n local url = getImageUrl(id)\n if url ~= '' then\n local obj = spawnObject({\n type = 'Custom_Tile',\n position = {pos.x, pos.y + 3, pos.z},\n rotation = {x = 0, y = 260, z = 0}\n })\n obj.setCustomObject({\n type = 2,\n image = url,\n thickness = 0.10,\n })\n obj.scale {0.81, 1, 0.81}\n return obj\n end\nend\n\nfunction getImageUrl(id)\n if id == 'p1' then return 'https://i.imgur.com/uIx8jbY.png' end\n if id == '0' then return 'https://i.imgur.com/btEtVfd.png' end\n if id == 'm1' then return 'https://i.imgur.com/w3XbrCC.png' end\n if id == 'm2' then return 'https://i.imgur.com/bfTg2hb.png' end\n if id == 'm3' then return 'https://i.imgur.com/yfs8gHq.png' end\n if id == 'm4' then return 'https://i.imgur.com/qrgGQRD.png' end\n if id == 'm5' then return 'https://i.imgur.com/3Ym1IeG.png' end\n if id == 'm6' then return 'https://i.imgur.com/c9qdSzS.png' end\n if id == 'm7' then return 'https://i.imgur.com/4WRD42n.png' end\n if id == 'm8' then return 'https://i.imgur.com/9t3rPTQ.png' end\n if id == 'skull' then return 'https://i.imgur.com/stbBxtx.png' end\n if id == 'cultist' then return 'https://i.imgur.com/VzhJJaH.png' end\n if id == 'tablet' then return 'https://i.imgur.com/1plY463.png' end\n if id == 'elder' then return 'https://i.imgur.com/ttnspKt.png' end\n if id == 'red' then return 'https://i.imgur.com/lns4fhz.png' end\n if id == 'blue' then return 'https://i.imgur.com/nEmqjmj.png' end\n return ''\nend\n\nfunction cleanContainer(container)\n for _, item in ipairs(container.getObjects()) do\n destroyObject(container.takeObject({}))\n end\nend\n\nfunction getObjectsInZone(zoneId)\n local zoneObject = getObjectCache(zoneId)\n\n if zoneObject == nil then\n return\n end\n\n local objectsInZone = zoneObject.getObjects()\n local objectsFound = {}\n\n for i = 1, #objectsInZone do\n local object = objectsInZone[i]\n if object.tag == 'Bag' then\n table.insert(objectsFound, object.guid)\n end\n end\n\n if #objectsFound > 0 then\n return objectsFound\n end\nend\n\nfunction getObjectCache(id)\n if CACHE.object[id] == nil then\n CACHE.object[id] = getObjectFromGUID(id)\n end\n return CACHE.object[id]\nend\n\nfunction getDataTable(storage)\n if CACHE.data[storage] == nil then\n local obj = getObjectCache(tokenDataId)\n if obj ~= nil then\n CACHE.data[storage] = obj.getTable(storage)\n end\n end\n return CACHE.data[storage]\nend\n\nfunction getDataValue(storage, key)\n local data = getDataTable(storage)\n if data ~= nil then\n local value = data[key]\n if value ~= nil then\n local res = {}\n for m, v in pairs(value) do\n res[m] = v\n if res[m].parent ~= nil then\n local parentData = getDataValue(storage, res[m].parent)\n if parentData ~= nil and parentData[m] ~= nil and parentData[m].token ~= nil then\n res[m].token = parentData[m].token\n end\n res[m].parent = nil\n end\n end\n return res\n end\n end\nend\n\nfunction getRandomCount(to)\n updateRandomSeed()\n return math.random(1, to)\nend\n\nfunction updateRandomSeed()\n local chance = math.random(1,10)\n if chance == 1 then\n math.randomseed(os.time())\n end\nend", + "LuaScriptState": "", + "XmlUI": "", + "Decals": [ + { + "Transform": { + "posX": 19.712471, + "posY": 1.45593762, + "posZ": -27.474596, + "rotX": 89.92599, + "rotY": 119.6785, + "rotZ": 0.0, + "scaleX": 4.5454545, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "CustomDecal": { + "Name": "coreback", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/762723517668191286/060F6D064234DEF36A1D03D7F1948C5AD0048210/", + "Size": 1.0 + } + }, + { + "Transform": { + "posX": 18.1265659, + "posY": 1.45798874, + "posZ": -28.0173264, + "rotX": 89.92867, + "rotY": 119.678604, + "rotZ": 0.0, + "scaleX": 3.37662339, + "scaleY": 1.0, + "scaleZ": 1.0 + }, + "CustomDecal": { + "Name": "coreback", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/762723517668188427/E36A08E64A32CBF0E49CE9FF4E736DFD15E1ED44/", + "Size": 1.0 + } + }, + { + "Transform": { + "posX": 20.0233021, + "posY": 1.45641136, + "posZ": -24.394371, + "rotX": 89.92867, + "rotY": 119.678604, + "rotZ": 0.0, + "scaleX": 2.78571415, + "scaleY": 1.5, + "scaleZ": 1.5 + }, + "CustomDecal": { + "Name": "arrow", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/762723517668195080/B2A3C1CD2F5103D2116FFFAC88FAEAAC92A12CEF/", + "Size": 1.5 + } + }, + { + "Transform": { + "posX": 61.2332726, + "posY": 1.30891752, + "posZ": 91.5914, + "rotX": 89.98022, + "rotY": 89.81581, + "rotZ": 0.0, + "scaleX": 4.11320734, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "CustomDecal": { + "Name": "Skills", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662313324/9E134E04126C4F4B046B4B9F32BB3076D2A6BA99/", + "Size": 2.0 + } + }, + { + "Transform": { + "posX": 27.11481, + "posY": 1.29655087, + "posZ": 91.67478, + "rotX": 89.98022, + "rotY": 89.81581, + "rotZ": 0.0, + "scaleX": 4.11320734, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "CustomDecal": { + "Name": "Skills", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662313324/9E134E04126C4F4B046B4B9F32BB3076D2A6BA99/", + "Size": 2.0 + } + }, + { + "Transform": { + "posX": 21.7725372, + "posY": 1.29454148, + "posZ": 91.43833, + "rotX": 89.98022, + "rotY": 89.81581, + "rotZ": 0.0, + "scaleX": 4.11320734, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "CustomDecal": { + "Name": "Events", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662323727/04AAC3AAF324B6EFA5FCBAB7517E9F60779A4A97/", + "Size": 2.0 + } + }, + { + "Transform": { + "posX": 55.82646, + "posY": 1.30688775, + "posZ": 91.3655548, + "rotX": 89.98022, + "rotY": 89.81581, + "rotZ": 0.0, + "scaleX": 4.11320734, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "CustomDecal": { + "Name": "Events", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662323727/04AAC3AAF324B6EFA5FCBAB7517E9F60779A4A97/", + "Size": 2.0 + } + }, + { + "Transform": { + "posX": 46.9817848, + "posY": 1.303688, + "posZ": 91.40827, + "rotX": 89.98022, + "rotY": 89.81581, + "rotZ": 0.0, + "scaleX": 4.11320734, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "CustomDecal": { + "Name": "Assets", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662326825/7BDC0073B6F32D95681FC913F1B74367603C3A74/", + "Size": 2.0 + } + }, + { + "Transform": { + "posX": 13.0595322, + "posY": 1.29134977, + "posZ": 91.34483, + "rotX": 89.98022, + "rotY": 89.81581, + "rotZ": 0.0, + "scaleX": 4.11320734, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "CustomDecal": { + "Name": "Assets", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662326825/7BDC0073B6F32D95681FC913F1B74367603C3A74/", + "Size": 2.0 + } + }, + { + "Transform": { + "posX": 66.42334, + "posY": 1.31007206, + "posZ": 89.09634, + "rotX": 90.0, + "rotY": 89.6493454, + "rotZ": 0.0, + "scaleX": 8.856089, + "scaleY": 6.0, + "scaleZ": 6.0 + }, + "CustomDecal": { + "Name": "byd1", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662365362/5E32F79A20CE08645685B9E21C968B5529F6211B/", + "Size": 6.0 + } + }, + { + "Transform": { + "posX": 32.6523666, + "posY": 1.29778242, + "posZ": 89.0116653, + "rotX": 90.0, + "rotY": 89.6492844, + "rotZ": 0.0, + "scaleX": 8.856089, + "scaleY": 6.0, + "scaleZ": 6.0 + }, + "CustomDecal": { + "Name": "byd1", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662368853/0E71DE1DA56E2C70B71CA2933F79B6AB8C205633/", + "Size": 6.0 + } + }, + { + "Transform": { + "posX": -2.04820824, + "posY": 1.31497526, + "posZ": -68.77239, + "rotX": 90.0, + "rotY": 90.1486, + "rotZ": 0.0, + "scaleX": 28.95939, + "scaleY": 5.0, + "scaleZ": 5.0 + }, + "CustomDecal": { + "Name": "investigator", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662721586/01BBDCC9C7329160F609CBD25416D94BCB3B3624/", + "Size": 5.0 + } + }, + { + "Transform": { + "posX": 60.9872475, + "posY": 1.30847371, + "posZ": -48.24206, + "rotX": 90.0, + "rotY": 89.98215, + "rotZ": 0.0, + "scaleX": 4.11320734, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "CustomDecal": { + "Name": "Skills", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662313324/9E134E04126C4F4B046B4B9F32BB3076D2A6BA99/", + "Size": 2.0 + } + }, + { + "Transform": { + "posX": 55.54042, + "posY": 1.306443, + "posZ": -48.4215431, + "rotX": 90.0, + "rotY": 89.98215, + "rotZ": 0.0, + "scaleX": 4.11320734, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "CustomDecal": { + "Name": "Events", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662323727/04AAC3AAF324B6EFA5FCBAB7517E9F60779A4A97/", + "Size": 2.0 + } + }, + { + "Transform": { + "posX": 21.897892, + "posY": 1.29423475, + "posZ": -48.3876762, + "rotX": 90.0, + "rotY": 89.98215, + "rotZ": 0.0, + "scaleX": 4.11320734, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "CustomDecal": { + "Name": "Events", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662323727/04AAC3AAF324B6EFA5FCBAB7517E9F60779A4A97/", + "Size": 2.0 + } + }, + { + "Transform": { + "posX": 13.1350346, + "posY": 1.32644534, + "posZ": -48.4255066, + "rotX": 90.0, + "rotY": 89.98215, + "rotZ": 0.0, + "scaleX": 4.11320734, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "CustomDecal": { + "Name": "Assets", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662326825/7BDC0073B6F32D95681FC913F1B74367603C3A74/", + "Size": 2.0 + } + }, + { + "Transform": { + "posX": 46.7216225, + "posY": 1.30324411, + "posZ": -48.40832, + "rotX": 90.0, + "rotY": 89.98215, + "rotZ": 0.0, + "scaleX": 4.11320734, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "CustomDecal": { + "Name": "Assets", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662326825/7BDC0073B6F32D95681FC913F1B74367603C3A74/", + "Size": 2.0 + } + }, + { + "Transform": { + "posX": 66.00776, + "posY": 1.30955052, + "posZ": -50.79205, + "rotX": 90.0, + "rotY": 89.98215, + "rotZ": 0.0, + "scaleX": 8.856089, + "scaleY": 6.0, + "scaleZ": 6.0 + }, + "CustomDecal": { + "Name": "byd1", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662963046/942C2A8A331A0CE8799146E267EECFDDAC120462/", + "Size": 6.0 + } + }, + { + "Transform": { + "posX": 32.4619, + "posY": 1.29737866, + "posZ": -50.7540169, + "rotX": 90.0, + "rotY": 89.98215, + "rotZ": 0.0, + "scaleX": 8.856089, + "scaleY": 6.0, + "scaleZ": 6.0 + }, + "CustomDecal": { + "Name": "byd1", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662964851/5585B168A6CC0DF9A1C99F87D09FFDBA48CE7836/", + "Size": 6.0 + } + }, + { + "Transform": { + "posX": 27.0429382, + "posY": 1.296181, + "posZ": -48.1225853, + "rotX": 89.98022, + "rotY": 89.81553, + "rotZ": 0.0, + "scaleX": 4.11320734, + "scaleY": 2.0, + "scaleZ": 2.0 + }, + "CustomDecal": { + "Name": "Skills", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662313324/9E134E04126C4F4B046B4B9F32BB3076D2A6BA99/", + "Size": 2.0 + } + }, + { + "Transform": { + "posX": 73.72363, + "posY": 1.30945539, + "posZ": -60.69058, + "rotX": 90.0, + "rotY": 90.00583, + "rotZ": 0.0, + "scaleX": 29.3161755, + "scaleY": 3.0, + "scaleZ": 3.0 + }, + "CustomDecal": { + "Name": "title1", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489663165750/12560E74C12348D568F2AC783038FD0B03B174CB/", + "Size": 3.0 + } + }, + { + "Transform": { + "posX": 74.08891, + "posY": 1.31138253, + "posZ": 84.06255, + "rotX": 90.0, + "rotY": 90.31553, + "rotZ": 0.0, + "scaleX": 19.1489372, + "scaleY": 2.5, + "scaleZ": 2.5 + }, + "CustomDecal": { + "Name": "investigator", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489666540963/2174C8AE6D35379EB36C6D2BFFAF46BFE1034356/", + "Size": 2.5 + } + }, + { + "Transform": { + "posX": 32.2491035, + "posY": 1.45076382, + "posZ": 14.3083544, + "rotX": 89.92599, + "rotY": 269.944366, + "rotZ": 0.0, + "scaleX": 10.0, + "scaleY": 10.0, + "scaleZ": 10.0 + }, + "CustomDecal": { + "Name": "coming soon", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/1016065907887960215/D7D7C85CE6A43DCECC195C08A479C2AB08364DBE/", + "Size": 10.0 + } } ], "SnapPoints": [ @@ -1083052,7 +1146704,7 @@ "Rotation": { "x": 359.9201, "y": 269.981476, - "z": 0.0169176031 + "z": 0.01691762 } }, { @@ -1086968,509 +1150620,5 @@ } } ], - "DecalPallet": [], - "Decals": [ - { - "Transform": { - "posX": 19.712471, - "posY": 1.45593762, - "posZ": -27.474596, - "rotX": 89.92599, - "rotY": 119.6785, - "rotZ": 0.0, - "scaleX": 4.5454545, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "CustomDecal": { - "Name": "coreback", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/762723517668191286/060F6D064234DEF36A1D03D7F1948C5AD0048210/", - "Size": 1.0 - } - }, - { - "Transform": { - "posX": 18.1265659, - "posY": 1.45798874, - "posZ": -28.0173264, - "rotX": 89.92867, - "rotY": 119.678604, - "rotZ": 0.0, - "scaleX": 3.37662339, - "scaleY": 1.0, - "scaleZ": 1.0 - }, - "CustomDecal": { - "Name": "coreback", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/762723517668188427/E36A08E64A32CBF0E49CE9FF4E736DFD15E1ED44/", - "Size": 1.0 - } - }, - { - "Transform": { - "posX": 20.0233021, - "posY": 1.45641136, - "posZ": -24.394371, - "rotX": 89.92867, - "rotY": 119.678604, - "rotZ": 0.0, - "scaleX": 2.78571415, - "scaleY": 1.5, - "scaleZ": 1.5 - }, - "CustomDecal": { - "Name": "arrow", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/762723517668195080/B2A3C1CD2F5103D2116FFFAC88FAEAAC92A12CEF/", - "Size": 1.5 - } - }, - { - "Transform": { - "posX": 61.2332726, - "posY": 1.30891752, - "posZ": 91.5914, - "rotX": 89.98022, - "rotY": 89.81581, - "rotZ": 0.0, - "scaleX": 4.11320734, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "CustomDecal": { - "Name": "Skills", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662313324/9E134E04126C4F4B046B4B9F32BB3076D2A6BA99/", - "Size": 2.0 - } - }, - { - "Transform": { - "posX": 27.11481, - "posY": 1.29655087, - "posZ": 91.67478, - "rotX": 89.98022, - "rotY": 89.81581, - "rotZ": 0.0, - "scaleX": 4.11320734, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "CustomDecal": { - "Name": "Skills", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662313324/9E134E04126C4F4B046B4B9F32BB3076D2A6BA99/", - "Size": 2.0 - } - }, - { - "Transform": { - "posX": 21.7725372, - "posY": 1.29454148, - "posZ": 91.43833, - "rotX": 89.98022, - "rotY": 89.81581, - "rotZ": 0.0, - "scaleX": 4.11320734, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "CustomDecal": { - "Name": "Events", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662323727/04AAC3AAF324B6EFA5FCBAB7517E9F60779A4A97/", - "Size": 2.0 - } - }, - { - "Transform": { - "posX": 55.82646, - "posY": 1.30688775, - "posZ": 91.3655548, - "rotX": 89.98022, - "rotY": 89.81581, - "rotZ": 0.0, - "scaleX": 4.11320734, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "CustomDecal": { - "Name": "Events", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662323727/04AAC3AAF324B6EFA5FCBAB7517E9F60779A4A97/", - "Size": 2.0 - } - }, - { - "Transform": { - "posX": 46.9817848, - "posY": 1.303688, - "posZ": 91.40827, - "rotX": 89.98022, - "rotY": 89.81581, - "rotZ": 0.0, - "scaleX": 4.11320734, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "CustomDecal": { - "Name": "Assets", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662326825/7BDC0073B6F32D95681FC913F1B74367603C3A74/", - "Size": 2.0 - } - }, - { - "Transform": { - "posX": 13.0595322, - "posY": 1.29134977, - "posZ": 91.34483, - "rotX": 89.98022, - "rotY": 89.81581, - "rotZ": 0.0, - "scaleX": 4.11320734, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "CustomDecal": { - "Name": "Assets", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662326825/7BDC0073B6F32D95681FC913F1B74367603C3A74/", - "Size": 2.0 - } - }, - { - "Transform": { - "posX": 66.42334, - "posY": 1.31007206, - "posZ": 89.09634, - "rotX": 90.0, - "rotY": 89.6493454, - "rotZ": 0.0, - "scaleX": 8.856089, - "scaleY": 6.0, - "scaleZ": 6.0 - }, - "CustomDecal": { - "Name": "byd1", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662365362/5E32F79A20CE08645685B9E21C968B5529F6211B/", - "Size": 6.0 - } - }, - { - "Transform": { - "posX": 32.6523666, - "posY": 1.29778242, - "posZ": 89.0116653, - "rotX": 90.0, - "rotY": 89.6492844, - "rotZ": 0.0, - "scaleX": 8.856089, - "scaleY": 6.0, - "scaleZ": 6.0 - }, - "CustomDecal": { - "Name": "byd1", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662368853/0E71DE1DA56E2C70B71CA2933F79B6AB8C205633/", - "Size": 6.0 - } - }, - { - "Transform": { - "posX": -2.04820824, - "posY": 1.31497526, - "posZ": -68.77239, - "rotX": 90.0, - "rotY": 90.1486, - "rotZ": 0.0, - "scaleX": 28.95939, - "scaleY": 5.0, - "scaleZ": 5.0 - }, - "CustomDecal": { - "Name": "investigator", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662721586/01BBDCC9C7329160F609CBD25416D94BCB3B3624/", - "Size": 5.0 - } - }, - { - "Transform": { - "posX": 60.9872475, - "posY": 1.30847371, - "posZ": -48.24206, - "rotX": 90.0, - "rotY": 89.98215, - "rotZ": 0.0, - "scaleX": 4.11320734, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "CustomDecal": { - "Name": "Skills", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662313324/9E134E04126C4F4B046B4B9F32BB3076D2A6BA99/", - "Size": 2.0 - } - }, - { - "Transform": { - "posX": 55.54042, - "posY": 1.306443, - "posZ": -48.4215431, - "rotX": 90.0, - "rotY": 89.98215, - "rotZ": 0.0, - "scaleX": 4.11320734, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "CustomDecal": { - "Name": "Events", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662323727/04AAC3AAF324B6EFA5FCBAB7517E9F60779A4A97/", - "Size": 2.0 - } - }, - { - "Transform": { - "posX": 21.897892, - "posY": 1.29423475, - "posZ": -48.3876762, - "rotX": 90.0, - "rotY": 89.98215, - "rotZ": 0.0, - "scaleX": 4.11320734, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "CustomDecal": { - "Name": "Events", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662323727/04AAC3AAF324B6EFA5FCBAB7517E9F60779A4A97/", - "Size": 2.0 - } - }, - { - "Transform": { - "posX": 13.1350346, - "posY": 1.32644534, - "posZ": -48.4255066, - "rotX": 90.0, - "rotY": 89.98215, - "rotZ": 0.0, - "scaleX": 4.11320734, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "CustomDecal": { - "Name": "Assets", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662326825/7BDC0073B6F32D95681FC913F1B74367603C3A74/", - "Size": 2.0 - } - }, - { - "Transform": { - "posX": 46.7216225, - "posY": 1.30324411, - "posZ": -48.40832, - "rotX": 90.0, - "rotY": 89.98215, - "rotZ": 0.0, - "scaleX": 4.11320734, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "CustomDecal": { - "Name": "Assets", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662326825/7BDC0073B6F32D95681FC913F1B74367603C3A74/", - "Size": 2.0 - } - }, - { - "Transform": { - "posX": 66.00776, - "posY": 1.30955052, - "posZ": -50.79205, - "rotX": 90.0, - "rotY": 89.98215, - "rotZ": 0.0, - "scaleX": 8.856089, - "scaleY": 6.0, - "scaleZ": 6.0 - }, - "CustomDecal": { - "Name": "byd1", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662963046/942C2A8A331A0CE8799146E267EECFDDAC120462/", - "Size": 6.0 - } - }, - { - "Transform": { - "posX": 32.4619, - "posY": 1.29737866, - "posZ": -50.7540169, - "rotX": 90.0, - "rotY": 89.98215, - "rotZ": 0.0, - "scaleX": 8.856089, - "scaleY": 6.0, - "scaleZ": 6.0 - }, - "CustomDecal": { - "Name": "byd1", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662964851/5585B168A6CC0DF9A1C99F87D09FFDBA48CE7836/", - "Size": 6.0 - } - }, - { - "Transform": { - "posX": 27.0429382, - "posY": 1.296181, - "posZ": -48.1225853, - "rotX": 89.98022, - "rotY": 89.81553, - "rotZ": 0.0, - "scaleX": 4.11320734, - "scaleY": 2.0, - "scaleZ": 2.0 - }, - "CustomDecal": { - "Name": "Skills", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489662313324/9E134E04126C4F4B046B4B9F32BB3076D2A6BA99/", - "Size": 2.0 - } - }, - { - "Transform": { - "posX": 73.72363, - "posY": 1.30945539, - "posZ": -60.69058, - "rotX": 90.0, - "rotY": 90.00583, - "rotZ": 0.0, - "scaleX": 29.3161755, - "scaleY": 3.0, - "scaleZ": 3.0 - }, - "CustomDecal": { - "Name": "title1", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489663165750/12560E74C12348D568F2AC783038FD0B03B174CB/", - "Size": 3.0 - } - }, - { - "Transform": { - "posX": 74.08891, - "posY": 1.31138253, - "posZ": 84.06255, - "rotX": 90.0, - "rotY": 90.31553, - "rotZ": 0.0, - "scaleX": 19.1489372, - "scaleY": 2.5, - "scaleZ": 2.5 - }, - "CustomDecal": { - "Name": "investigator", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493489666540963/2174C8AE6D35379EB36C6D2BFFAF46BFE1034356/", - "Size": 2.5 - } - }, - { - "Transform": { - "posX": 32.2491035, - "posY": 1.45076382, - "posZ": 14.3083544, - "rotX": 89.92599, - "rotY": 269.944366, - "rotZ": 0.0, - "scaleX": 10.0, - "scaleY": 10.0, - "scaleZ": 10.0 - }, - "CustomDecal": { - "Name": "coming soon", - "ImageURL": "http://cloud-3.steamusercontent.com/ugc/1016065907887960215/D7D7C85CE6A43DCECC195C08A479C2AB08364DBE/", - "Size": 10.0 - } - } - ], - "TabStates": { - "0": { - "title": "Rules", - "body": "Welcome to Arkham Horror LCG - Super Complete Edition!\r\n\r\nBelow you will find all the features and instructions this mod is loaded with, that will make your AH LCG experience easier.\r\n\r\nDECKBUILDING\r\n1. All current existing investigators are on the right-hand side, and within each chest you will find their investigator-specific assets and weaknesses. Also included is a basic starter deck which only requires you to add a basic random weakness to get going.\r\n\r\n2. On the left-hand side you will find both the weakness decks as well as lvl 0 cards sorted by class. To reveal the cards, click on each corresponding token to deal the cards onto the table. Cards are sorted by order of Skill, event and Asset cards top-down and increasing resource cost, left to right. \r\n\r\n3. On the upper side you have the upgrade cards. Similarly, click each token to deal the cards out onto the table. Cards are arranged both in increasing xp cost and resource cost, left to right. Typically, these are the cards you will be spending XP on between scenarios to purchase and improve your deck.\r\n4. On the right-hand side underneath the Investigators, you will find the automated ArkhamDB Deckbuilder (coded and maintained by Grabben). Click the load cards button to activate the Deckbuilder, check ArkhamDB for your chosen deck’s URL and insert its number code following the instructions on the deckbuilder, and it will build the deck automatically for you.\r\n\r\nSCENARIOS & SETUP\r\n1. \tArkham Horror LCG comes with a core campaign (Night of the Zealot) and several expansions (The Dunwich Legacy, The Path to Carcosa & The Forgotten Age). Within each box you will find the volumes that contain all the cards required for each scenario setup, as well as a tablet linking to the official campaign guide PDF. Also included are chaos token cards and a Campaign Log.\r\n\r\n2. \tEach scenario is setup differently, and while some of the work has been prepared beforehand (such as building encounter decks), you will have to refer to the Campaign Guide for specific instructions on how to set up each scenario.\r\n\r\n3. \tThe chaos bag is always placed on the scenario setup mat in the upper right-hand corner onto a snap point that tilts it at a 45-degree angle. Each scenario volume will contain a difficulty card, where you will have the choice of four difficulties. Press the button on the card according to the difficulty of your choosing and the chaos bag will automatically be configured with the tokens specific to that difficulty. In campaign play it is recommended to save your decks and chaos bag at the end of your scenario to carry over onto the next, as often tokens are added or removed from the chaos bag depending on actions or decisions made during the game. These additional tokens can be drawn from the token reserve book resting next to the newspaper in the middle of the main table – right click it and search for the token you need.\n\r\n4. \tWhen placing location cards, always place them face down on the main play area (the dark map of Arkham, Massachusetts) with the number of clues per location unrevealed. The mod is scripted so that when you flip said location cards (usually when entering the location with an investigator), if it contains clues, the number of clues specific to that location will automatically spawn. Note, that the mod only spawns tokens in relation to the number of players currently set on the playmat player settings. To set the number of players, left-click on the \"Investigators Playing\" number to increase, or right-click to decrease.\r\n\n5. To make location mapping easier, you can draw location connector tokens from the arrow-shaped container below the main play area. Each token has three states (one way, two way and four way) to use them accordingly to better visualize how your locations connect.\n\r\n6. \tIf you require additional doom or clue tokens, these are located on the scenario playmat in their corresponding containers. A handy Doom counter has been also been added to track the doom on the agenda – left-click to add to add, and right-click to deduct. Keep in mind that any doom spawned on enemies, locations or assets needs to be mentally added to the doom in play on the agenda to account for total doom.\r\n\r\nINVESTIGATOR PLAYMAT AND GAMEPLAY\r\n1. \tInvestigator mats are scripted to automate most of the gameplay for you. \n\r\n2. \tEach mat has slots for inventory, where if you play an asset (for example you put a gun that has 4 ammo into your right-hand slot), the mod will automatically spawn the 4 resource tokens onto your equipped card.\n\r\n3.\tThe draw encounter button on the left-hand side will draw the topmost card from the encounter deck and put it in your threat area. When you draw a weakness, or engage an enemy, it is recommended you put it in your threat area, and once you defeat the enemy or treachery, you can send it to the encounter discard pile by clicking the discard button. If you defeat an enemy with a victory point, make sure not to discard to the discard pile, but pick the card up and drop it at the victory display.\n\r\n4. \tThe Click for Chaos button does just that, draw a random chaos token from your chaos bag. Clicking a second time, sends your chaos token back into the bag, which is then shuffled. If one player clicks to draw a token and doesn’t click a second time to send it back, the click from another player on his personal mat will send the token back first, and the next click will draw the token. Additionally, right-clicking the button will continue drawing tokens and line them up next to each other, which is useful for specific draw conditions the game may require from you. Left-clicking again will send all drawn tokens back to the bag.\n\n5. In the bottom right-hand corner of your player mat you have buttons that when clicked once spawn a 1-value token (damage, horror and resource). and when clicked again replace it with a 3-value token. A third click despawns it. Use these to track damage, horror and resources on your investigators. For allies and enemies, track damage / horror using the tokens from the damage and horror containers. These tokens have 10 states in increasing value, so you may adjust accordingly. Finally, you may also draw additional resource tokens to track your resources. These tokens come in state-values of 1, 3 and 5, so if you exceed 15 resources of value use these to track additional resource on your investigator.\n\nADDITIONAL FEATURES:\n1. Over 20 Fan-made scenarios created by the thriving community of Arkham Horror LCG have been included. Some of these are one-scenario missions, others are long involved campaigns spanning multiple scenarios. These are all contained in \"The Side Missions\". This boxset also includes the official FFG-created sidemissions Curse of the Rougarou, Carnevale of Horrors, Labrynths of Lunacy and The Eternal Slumber. Read the rulebook on including a side-mission into an ongoing campaign, or play it as a one-off adventure! Setup instructions are included in each volume.\n\n2. If you are not a fan of the dark themed Arkham map for the playmat, you can change the image on it to any you like. At the top left hand side of the playmat is an image icon, which when clicked will reveal a image swap panel. Input the URL for the image you want to repalce the playmat with, and the panel will apply the image for you. Keep in mind this will not change the existing snap points on the current playmat.\n\r\nAs a final comment, please be sure to let me know on the mod page in steam workshop if you find any bugs, issues or have any suggestions for improvement!\r\n\r\n\r\n \r\n\r\n", - "color": "Grey", - "visibleColor": { - "r": 0.5, - "g": 0.5, - "b": 0.5 - }, - "id": 0 - }, - "3": { - "title": "Red", - "body": "", - "color": "Red", - "visibleColor": { - "r": 0.856, - "g": 0.1, - "b": 0.094 - }, - "id": 3 - }, - "4": { - "title": "Orange", - "body": "", - "color": "Orange", - "visibleColor": { - "r": 0.956, - "g": 0.392, - "b": 0.113 - }, - "id": 4 - }, - "5": { - "title": "Yellow", - "body": "", - "color": "Yellow", - "visibleColor": { - "r": 0.905, - "g": 0.898, - "b": 0.172 - }, - "id": 5 - }, - "6": { - "title": "Green", - "body": "", - "color": "Green", - "visibleColor": { - "r": 0.192, - "g": 0.701, - "b": 0.168 - }, - "id": 6 - } - }, - "CameraStates": [ - null, - { - "Position": { - "x": -6.36408234, - "y": -2.5, - "z": -9.483223E-07 - }, - "Rotation": { - "x": 64.99999, - "y": 89.99999, - "z": 0.0 - }, - "Distance": 97.85165, - "Zoomed": false, - "AbsolutePosition": { - "x": -47.7179832, - "y": 86.18371, - "z": -6.780735E-06 - } - }, - null, - null, - null, - null, - null, - null, - null, - null - ], - "VersionNumber": "v12.3.5" + "VersionNumber": "v12.4.3" } \ No newline at end of file